15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./loyaltyCard.module.css"
|
|
|
|
export const loyaltyCardVariants = cva(styles.container, {
|
|
variants: {
|
|
theme: {
|
|
white: styles.white,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
theme: "white",
|
|
},
|
|
})
|