UNPKG

@kbss-cvut/s-forms

Version:

Semantic forms generator and processor

12 lines (11 loc) 457 B
export default MediaAssetViewer; /** * Orchestrates the rendering of media assets based on their type and manages fullscreen state. * Defaults to an iframe viewer for unsupported types. */ declare function MediaAssetViewer({ src, annotations, allowFullScreen, showAnnotations, }: { src: any; annotations?: any[] | undefined; allowFullScreen: any; showAnnotations?: boolean | undefined; }): import("react/jsx-runtime").JSX.Element | null;