UNPKG

@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.

11 lines (10 loc) 293 B
import React from "react"; interface VideoActionButtonProps { text: string; onClick: () => void; icon?: React.ReactNode; disabled?: boolean; position?: "left" | "right"; } declare const VideoActionButton: React.FC<VideoActionButtonProps>; export default VideoActionButton;