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