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