17 lines
314 B
TypeScript
17 lines
314 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./card.module.css"
|
|
|
|
export const cardVariants = cva(styles.container, {
|
|
variants: {
|
|
theme: {
|
|
one: styles.themeOne,
|
|
two: styles.themeTwo,
|
|
three: styles.themeThree,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
theme: "one",
|
|
},
|
|
})
|