UNPKG

@vchatcloud/react-ui-kit

Version:

VChatCloud UI Kit for react integration

10 lines (9 loc) 332 B
import { ReactNode } from 'react'; interface PreviewerProps { readonly url: string; readonly name: string; readonly onClose: () => void; readonly children?: ReactNode; } declare const Previewer: ({ url, name, onClose, children }: PreviewerProps) => import("react/jsx-runtime").JSX.Element; export default Previewer;