Skip to content

Commit

Permalink
Replace Spacing by Space
Browse files Browse the repository at this point in the history
  • Loading branch information
paulinea committed Oct 24, 2024
1 parent efcf23f commit 10194f1
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,25 +181,25 @@ private fun GridIllustrations() {
Image(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = OudsSpacingFixedKeyToken.Medium.value)
.padding(horizontal = OudsSpaceFixedKeyToken.Medium.value)
.background(OudsColorKeyToken.OnSurface.value), //TODO use BgEmphasizedPrimary token when available
painter = painterResource(id = R.drawable.il_tokens_grid_column_margin),
contentDescription = null
)
Image(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = OudsSpacingFixedKeyToken.Medium.value)
.padding(top = OudsSpacingFixedKeyToken.Medium.value)
.padding(horizontal = OudsSpaceFixedKeyToken.Medium.value)
.padding(top = OudsSpaceFixedKeyToken.Medium.value)
.background(OudsColorKeyToken.OnSurface.value), //TODO use BgEmphasizedPrimary token when available
painter = painterResource(id = R.drawable.il_tokens_grid_min_width),
contentDescription = null
)
Image(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = OudsSpacingFixedKeyToken.Medium.value)
.padding(top = OudsSpacingFixedKeyToken.Medium.value)
.padding(horizontal = OudsSpaceFixedKeyToken.Medium.value)
.padding(top = OudsSpaceFixedKeyToken.Medium.value)
.background(OudsColorKeyToken.OnSurface.value), //TODO use BgEmphasizedPrimary token when available
painter = painterResource(id = R.drawable.il_tokens_grid_max_width),
contentDescription = null
Expand Down

0 comments on commit 10194f1

Please sign in to comment.