~ Tuist adjustments

This commit is contained in:
David Bureš 2024-07-28 18:27:14 +02:00
parent 8804846d60
commit f90f474b0e
1 changed files with 9 additions and 5 deletions

View File

@ -20,12 +20,16 @@
// swiftlint:disable identifier_name line_length nesting type_body_length type_name
public enum CorkAsset {
public enum Assets {
public static let accentColor = CorkColors(name: "AccentColor")
public static let customPinFillQuestionmark = CorkImages(name: "custom.pin.fill.questionmark")
public static let customSquareStackBadgePause = CorkImages(name: "custom.square.stack.badge.pause")
public static let customSquareStackBadgePlay = CorkImages(name: "custom.square.stack.badge.play")
public static let customSquareStackBadgeQuestionmark = CorkImages(name: "custom.square.stack.badge.questionmark")
public static let customSquareStackTrianglebadgeExclamationmark = CorkImages(name: "custom.square.stack.trianglebadge.exclamationmark")
public static let customPinFillQuestionmark = CorkImages(name: "custom.pin.fill.questionmark")
public static let customSquareStackBadgePause = CorkImages(name: "custom.square.stack.badge.pause")
public static let customSquareStackBadgePlay = CorkImages(name: "custom.square.stack.badge.play")
public static let customSquareStackBadgeQuestionmark = CorkImages(name: "custom.square.stack.badge.questionmark")
public static let customSquareStackTrianglebadgeExclamationmark = CorkImages(name: "custom.square.stack.trianglebadge.exclamationmark")
}
public enum PreviewAssets {
}
}
// swiftlint:enable identifier_name line_length nesting type_body_length type_name