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