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