import { cva } from "class-variance-authority" import styles from "./levels.module.css" const config = { variants: { color: { burgundy: styles.burgundy, pale: styles.pale, red: styles.red, }, }, defaultVariants: { color: "burgundy", }, } as const export const levelVariants = cva(styles.level, config)