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