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