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