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