Created
December 18, 2022 20:12
-
-
Save renanboni/89a2865a3926970e8c2c948232858228 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class Spacing( | |
val default: Dp = 0.dp, | |
val extraSmall: Dp = 4.dp, | |
val small: Dp = 8.dp, | |
val medium: Dp = 16.dp, | |
val large: Dp = 32.dp, | |
val extraLarge: Dp = 64.dp | |
) | |
data class Elevation( | |
val default: Dp = 0.dp, | |
val small: Dp = 2.dp, | |
val medium: Dp = 4.dp, | |
val large: Dp = 8.dp, | |
) | |
data class QuivonShape( | |
val default: Shape = RoundedCornerShape(0.dp), | |
val extraSmall: Shape = RoundedCornerShape(4.dp), | |
val small: Shape = RoundedCornerShape(8.dp), | |
val medium: Shape = RoundedCornerShape(16.dp), | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment