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