import * as React from 'react'; export interface MapPin32Props extends React.SVGProps { ariaLabel?: string } export default function MapPin32({ ariaLabel, ...props }: MapPin32Props) { return ( ); }