UNPKG

react-pdf-html-flabs-2

Version:

Html component for react-pdf with CSS support optimized

14 lines (13 loc) 409 B
import React from 'react'; import { HtmlRenderers } from './render'; import { HtmlStyle, HtmlStyles } from './styles'; 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;