import type { SVGProps } from "react"; export interface LocationIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function LocationIcon({ className = "", size = 24, color = "currentColor", ...props }: LocationIconProps) { return ( ); }