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