16 lines
330 B
TypeScript
16 lines
330 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./languageSwitcher.module.css"
|
|
|
|
export const languageSwitcherVariants = cva(styles.languageSwitcher, {
|
|
variants: {
|
|
position: {
|
|
header: styles.header,
|
|
footer: styles.footer,
|
|
},
|
|
defaultVariants: {
|
|
position: "header",
|
|
},
|
|
},
|
|
})
|