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