feat(SW-219): add ability to always stack buttons

This commit is contained in:
Chuma McPhoy
2024-09-11 15:40:41 +02:00
parent 3e08b3357b
commit 3eb7e5f653
5 changed files with 51 additions and 13 deletions
@@ -8,8 +8,13 @@ export const contentCardVariants = cva(styles.card, {
default: styles.default,
featured: styles.featured,
},
alwaysStack: {
true: styles.alwaysStack,
false: "",
},
},
defaultVariants: {
style: "default",
alwaysStack: false,
},
})