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