/// import { SvgIconProps } from '@mui/material/SvgIcon'; interface PinIconProps { onClick?: () => void; fontSize?: SvgIconProps['fontSize']; size?: number; } export default function PinIcon({ fontSize, onClick, size, }: PinIconProps): JSX.Element; export {};