febo-ui
Version:
Acelere seu Desenvolvimento com Nossa Biblioteca de Componentes para React, Febo UI
14 lines • 413 B
TypeScript
/// <reference types="react" />
interface VideoProps {
src: string;
width: string;
height: string;
autoPlay?: boolean;
muted?: boolean;
thumbnail?: string;
controls: boolean;
loop?: boolean;
}
declare function Video({ src, autoPlay, muted, width, height, controls, loop, thumbnail, }: VideoProps): JSX.Element;
export default Video;
//# sourceMappingURL=index.d.ts.map