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