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