import type { PropsWithChildren } from 'react'; import { CurrentTimeDisplay, DurationDisplay, FullscreenButton, MediaContainer, MuteButton, PlayButton, Popover, PreviewTimeDisplay, TimeSlider, Tooltip, VolumeSlider } from '@videojs/react'; import { FullscreenEnterAltIcon, FullscreenExitAltIcon, PauseIcon, PlayIcon, VolumeHighIcon, VolumeLowIcon, VolumeOffIcon, } from '@videojs/react/icons'; import './minimal.css'; type SkinProps = PropsWithChildren<{ className?: string; }>; export default function MinimalSkin({ children, className = '' }: SkinProps): JSX.Element { return ( {children}
Play Pause
/
Enter Fullscreen Exit Fullscreen
); }