16 lines
297 B
TypeScript
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",
|
|
},
|
|
})
|