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