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