feat: add baseText style

This commit is contained in:
Fredrik Thorsson
2024-06-28 14:29:46 +02:00
parent 5b30d8cb0d
commit d2b6e9e358
6 changed files with 65 additions and 4 deletions

View File

@@ -9,6 +9,7 @@ export const buttonVariants = cva(styles.btn, {
primary: styles.primary,
secondary: styles.secondary,
tertiary: styles.tertiary,
text: styles.text,
},
size: {
small: styles.small,
@@ -128,5 +129,10 @@ export const buttonVariants = cva(styles.btn, {
intent: "secondary",
theme: "tertiaryLight",
},
{
className: styles.baseText,
intent: "text",
theme: "base",
},
],
})