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