feat(WEB-250): overview hero final ui
This commit is contained in:
18
components/Levels/variants.ts
Normal file
18
components/Levels/variants.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user