UNPKG

react-pdf-html

Version:

Html component for react-pdf with CSS support

14 lines (13 loc) 420 B
import * as React from 'react'; import { HtmlRenderers } from './render.js'; import { HtmlStyle, HtmlStyles } from './styles.js'; export type HtmlProps = { collapse?: boolean; renderers?: HtmlRenderers; style?: HtmlStyle | (HtmlStyle | undefined)[]; stylesheet?: HtmlStyles | HtmlStyles[]; resetStyles?: boolean; children: string; }; declare const Html: React.FC<HtmlProps>; export default Html;