import { hotelMarkerVariants } from "./variants" export default function HotelMarker({ className, color, ...props }: React.SVGAttributes & { color?: "burgundy" | "white" }) { const classNames = hotelMarkerVariants({ color, className }) return ( ) }