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