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