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