UNPKG

react-common-use-components

Version:
12 lines (11 loc) 456 B
import React, { CSSProperties, ReactNode } from 'react'; interface PreviewVideoProps { url: string; videoStyle?: CSSProperties | undefined; children?: ReactNode | undefined; playIcon?: string | undefined; autoPlay?: boolean | undefined; className?: string | undefined; } declare const PreviewVideo: ({ url, videoStyle, children, playIcon, autoPlay, className }: PreviewVideoProps) => React.JSX.Element; export default PreviewVideo;