Files
web/apps/partner-sas/components/LanguageSwitcher/variants.ts
Hrishikesh Vaipurkar 566dd54087 Merged in feat/SW-3520-update-footer-ui-and-footer-link (pull request #2910)
feat(SW-3520): Updated the footer

* feat(SW-3520): Updated links to route to scandic web

* feat(SW-3520): Updated the footer with language switcher

* feat(SW-3520): Updated the Contact-us link and removed double slash


Approved-by: Anton Gunnarsson
2025-10-09 06:44:58 +00:00

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