Skip to content

Commit

Permalink
Add missing specific medium 32 text style
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarX committed Jul 23, 2024
1 parent 113fe0e commit e6b5be4
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,13 @@ private val specificMedium22 = TextStyle(
lineHeight = 28.sp,
)

private val specificMedium32 = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Medium,
fontSize = 32.sp,
lineHeight = 42.sp,
)

private val specificLight22 = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Light,
Expand All @@ -110,6 +117,7 @@ val Typography = CustomTypography(
bodySmallRegular = bodySmallRegular,
labelMedium = labelMedium,
labelRegular = labelRegular,
specificMedium32 = specificMedium32,
specificMedium22 = specificMedium22,
specificLight22 = specificLight22,
specificLight18 = specificLight18,
Expand All @@ -125,6 +133,7 @@ data class CustomTypography(
val bodySmallRegular: TextStyle,
val labelMedium: TextStyle,
val labelRegular: TextStyle,
val specificMedium32: TextStyle,
val specificMedium22: TextStyle,
val specificLight22: TextStyle,
val specificLight18: TextStyle
Expand Down

0 comments on commit e6b5be4

Please sign in to comment.