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