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