16 lines
288 B
TypeScript
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",
|
|
},
|
|
})
|