Skip to content
This repository was archived by the owner on Jun 20, 2022. It is now read-only.

Commit 753eecd

Browse files
committed
feat(system): add textTransform
1 parent d311640 commit 753eecd

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

β€Ždocs/basics/System.mdxβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ Available typography utilities:
122122
- `textAlign`
123123
- `letterSpacing`
124124
- `color`
125+
- `textTransform`
125126

126127
### Flexboxes
127128

β€Žpackages/system/src/styles/typography.jsβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ export const color = style({
3636
themeKey: 'colors',
3737
})
3838

39+
export const textTransform = style({
40+
prop: 'textTransform',
41+
})
42+
3943
export const typography = compose(
4044
fontFamily,
4145
fontSize,
@@ -44,4 +48,5 @@ export const typography = compose(
4448
textAlign,
4549
letterSpacing,
4650
color,
51+
textTransform,
4752
)

0 commit comments

Comments
Β (0)