import { IconMapPinFilled } from '@tabler/icons-react' interface MarkerPinProps { color?: string active?: boolean } export default function MarkerPin({ color = '#a84a12', active = false }: MarkerPinProps) { return (
) }