feat(SW-1454): added hotel listing * feat(SW-1454): added hotel listing Approved-by: Fredrik Thorsson
17 lines
343 B
TypeScript
17 lines
343 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./backToTopButton.module.css"
|
|
|
|
export const backToTopButtonVariants = cva(styles.backToTopButton, {
|
|
variants: {
|
|
position: {
|
|
left: styles.left,
|
|
right: styles.right,
|
|
center: styles.center,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
position: "right",
|
|
},
|
|
})
|