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