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!

10 lines (9 loc) 285 B
import React, { ReactNode } from 'react'; import { Size } from '@pdfme/common'; type Props = { size: Size; scale: number; children: ReactNode; }; declare const _default: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>; export default _default;