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