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