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", }, }, })