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