Files
web/components/Forms/BookingWidget/variants.ts
2024-10-02 15:36:58 +02:00

16 lines
291 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: "default",
},
})