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