Files
web/components/Blocks/DynamicContent/Overview/Friend/Hero/heroVariants.ts
2024-09-24 09:47:31 +02:00

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",
},
})