16 lines
277 B
TypeScript
16 lines
277 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./hero.module.css"
|
|
|
|
export const heroVariants = cva(styles.hero, {
|
|
variants: {
|
|
color: {
|
|
burgundy: styles.burgundy,
|
|
red: styles.red,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
color: "red",
|
|
},
|
|
})
|