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