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