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