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.

10 lines (9 loc) 260 B
import React from "react"; interface TooltipProps { children: React.ReactNode; title: React.ReactNode; position?: "top" | "bottom" | "left" | "right"; className?: string; } declare const Tooltip: React.FC<TooltipProps>; export default Tooltip;