21 lines
401 B
TypeScript
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",
|
|
},
|
|
})
|