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