diff --git a/Sources/SkeletonUI/Enumerations/ShapeType.swift b/Sources/SkeletonUI/Enumerations/ShapeType.swift index 9c9c567..1d7ffb5 100644 --- a/Sources/SkeletonUI/Enumerations/ShapeType.swift +++ b/Sources/SkeletonUI/Enumerations/ShapeType.swift @@ -1,11 +1,11 @@ import SwiftUI -public enum RoundedType: Equatable { +public enum RoundedType: Equatable, Sendable { case radius(CGFloat, style: RoundedCornerStyle = .continuous) case size(CGSize, style: RoundedCornerStyle = .continuous) } -public enum ShapeType: Equatable { +public enum ShapeType: Equatable, Sendable { case rounded(RoundedType) case rectangle case circle