Files
web/components/TempDesignSystem/Divider/variants.ts
2024-06-13 10:00:16 +02:00

21 lines
401 B
TypeScript

import { cva } from "class-variance-authority"
import styles from "./divider.module.css"
export const dividerVariants = cva(styles.divider, {
variants: {
color: {
burgundy: styles.burgundy,
peach: styles.peach,
},
variant: {
default: styles.default,
dotted: styles.dotted,
},
},
defaultVariants: {
color: "burgundy",
variant: "default",
},
})