Files
web/components/Maps/Markers/HotelMarker/variants.ts
2024-11-11 09:12:44 +01:00

16 lines
297 B
TypeScript

import { cva } from "class-variance-authority"
import styles from "./hotelMarker.module.css"
export const hotelMarkerVariants = cva(styles.icon, {
variants: {
color: {
burgundy: styles.burgundy,
white: styles.white,
},
},
defaultVariants: {
color: "white",
},
})