We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a692d2e commit fbfa255Copy full SHA for fbfa255
src/lib/text/text.module.css
@@ -5,6 +5,10 @@
5
font-family: theme('fontFamily.sans');
6
}
7
/* textStyle */
8
+ .body-xs {
9
+ font-size: theme('fontSize.xs');
10
+ line-height: theme('lineHeight.xs');
11
+ }
12
.body-sm {
13
font-size: theme('fontSize.sm');
14
line-height: theme('lineHeight.sm');
src/lib/text/text.tsx
@@ -25,6 +25,7 @@ export const Text = forwardRef(
25
export const textCss = css(styles.text, {
26
variants: {
27
textStyle: {
28
+ 'body-xs': styles['body-xs'],
29
'body-sm': styles['body-sm'],
30
'body-md': styles['body-md'],
31
'body-lg': styles['body-lg'],
0 commit comments