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