Skip to content

Commit

Permalink
fix snap
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhieddine-El-Kaissi committed Jul 8, 2024
1 parent 24a90ae commit 09187f4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ exports[`outputted iOS matches snapshot 1`] = `
import UIKit.UIColor
/// These are the colors we use at Thumbtack.
public enum Color {
public enum Color: Sendable {
/// Blue 100 – #eaf6fa
public static let blue100: UIColor = UIColor(red: 0.91764706, green: 0.9647059, blue: 0.98039216, alpha: 1.0)
/// Blue 200 – #b3ebff
Expand Down Expand Up @@ -635,11 +635,11 @@ public enum Color {
public static let white: UIColor = UIColor(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
}
public enum CornerRadius {
public enum CornerRadius: Sendable {
public static let base: CGFloat = 4
}
public enum Duration {
public enum Duration: Sendable {
public static let one: TimeInterval = 0.075
public static let two: TimeInterval = 0.15
public static let three: TimeInterval = 0.2
Expand All @@ -648,12 +648,12 @@ public enum Duration {
public static let six: TimeInterval = 0.35
}
public enum FontWeight {
public enum FontWeight: Sendable {
case normal
case bold
}
public enum Font {
public enum Font: Sendable {
public static let title1Size: CGFloat = 28
public static let title1Weight: FontWeight = .bold
public static let title1UIFontTextStyle: UIFont.TextStyle = .headline
Expand Down Expand Up @@ -690,12 +690,12 @@ public enum Font {
}
/// Values for transparent light and dark curtains that cover content.
public enum Scrim {
public enum Scrim: Sendable {
public static let light80: UIColor = UIColor(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.8)
public static let dark80: UIColor = UIColor(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.8)
}
public enum Space {
public enum Space: Sendable {
/// Space 1 – 4.0pt
public static let one: CGFloat = 4.0
/// Space 2 – 8.0pt
Expand Down

0 comments on commit 09187f4

Please sign in to comment.