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