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