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