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