21 lines
427 B
TypeScript
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",
|
|
},
|
|
},
|
|
})
|