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