UNPKG

@pdfme/ui

Version:

TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!

11 lines (10 loc) 321 B
import React from 'react'; import { Size } from '@pdfme/common'; type Props = { size: Size; unitCursor: number; unitNum: number; setUnitCursor: (page: number) => void; }; declare const UnitPager: ({ size, unitCursor, unitNum, setUnitCursor }: Props) => React.JSX.Element | null; export default UnitPager;