UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

12 lines (11 loc) 460 B
import React from 'react'; import { BaseDialogProps } from '../../shared/BaseDialog'; import { PdfPreviewProps } from '../PdfPreview'; export interface PdfPreviewDialogProps extends BaseDialogProps { className?: string; title: string | React.ReactElement; PdfPreviewComponentProps: PdfPreviewProps; pdfUrl: string; disableInitialTransition?: boolean; } export default function PdfPreviewDialog(inProps: PdfPreviewDialogProps): JSX.Element;