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