import { PDFViewer, PdfFocusProvider } from "@llamaindex/pdf-viewer"; import { Button } from "../../button"; import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerHeader, DrawerTitle, DrawerTrigger, } from "../../drawer"; export interface PdfDialogProps { documentId: string; path: string; url: string; trigger: React.ReactNode; } export default function PdfDialog(props: PdfDialogProps) { return ( {props.trigger}
PDF Content File path:{" "} {props.path}
); }