UNPKG

react-common-use-components

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