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