Files
web/components/LanguageSwitcher/variants.ts
2024-09-06 13:56:23 +02:00

21 lines
427 B
TypeScript

import { cva } from "class-variance-authority"
import styles from "./languageSwitcher.module.css"
export const languageSwitcherVariants = cva(styles.languageSwitcher, {
variants: {
color: {
burgundy: styles.burgundy,
pale: styles.pale,
},
position: {
header: styles.top,
footer: styles.bottom,
},
defaultVariants: {
color: "burgundy",
position: "top",
},
},
})