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