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