Files
web/components/TempDesignSystem/Form/Label/variants.ts
2024-06-19 14:51:00 +02:00

16 lines
284 B
TypeScript

import { cva } from "class-variance-authority"
import styles from "./label.module.css"
export const labelVariants = cva(styles.label, {
variants: {
size: {
small: styles.small,
regular: styles.regular,
},
},
defaultVariants: {
size: "regular",
},
})