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