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