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