UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

25 lines (24 loc) 684 B
/// <reference types="react" /> import { DivProps } from "../types"; export interface VideoProps extends DivProps { autoplay?: boolean; borderless?: boolean; classNames?: { video?: string; wrapper?: string; }; height?: number | string; isLoading?: boolean; loop?: boolean; minSize?: number | string; muted?: HTMLVideoElement['muted']; onload?: HTMLVideoElement['onload']; poster?: string; preload?: HTMLVideoElement['preload']; preview?: boolean; size?: number | string; src: string; width?: number | string; } declare const Video: import("react").NamedExoticComponent<VideoProps>; export default Video;