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