@zezosoft/react-player
Version:
A lightweight and customizable video player by Zezosoft, built for seamless streaming with advanced controls, adaptive playback, and modern UI. Perfect for web and React applications.
10 lines (9 loc) • 303 B
TypeScript
import React from "react";
import "../../VideoPlayer/components/styles/video-controls.css";
interface FullScreenToggleProps {
isFullScreen: boolean;
onClick?: () => void;
className?: string;
}
declare const FullScreenToggle: React.FC<FullScreenToggleProps>;
export default FullScreenToggle;