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