Files
web/components/Forms/BookingWidget/variants.ts
2024-10-07 10:51:52 +02:00

16 lines
288 B
TypeScript

import { cva } from "class-variance-authority"
import styles from "./form.module.css"
export const bookingWidgetVariants = cva(styles.section, {
variants: {
type: {
default: styles.default,
full: styles.full,
},
},
defaultVariants: {
type: "full",
},
})