UNPKG

react-ipdf-viewer-lite

Version:

A lightweight, dependency-free media viewer for PDFs and other media types with advanced controls

12 lines (11 loc) 316 B
import React from "react"; import { ViewerControls } from "../types"; interface ToolbarProps { controls: ViewerControls; allowDownload?: boolean; allowPrint?: boolean; allowRotate?: boolean; allowFullScreen?: boolean; } export declare const Toolbar: React.FC<ToolbarProps>; export {};