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