UNPKG

react-pdf-builder

Version:
12 lines (11 loc) 673 B
import React from 'react'; import { SwatchColor } from '../../themes/ColorScheme'; import { DivProps } from '../basics/Div'; export interface HorizontalRuleProps extends DivProps { /** Optional. One of the [swatch color names](https://justinmahar.github.io/react-pdf-builder/?path=/docs/documentation-themes--docs#swatch-colors) from the theme, as a string. */ swatch?: SwatchColor; } /** * Read the [full documentation for HorizontalRule](https://justinmahar.github.io/react-pdf-builder/?path=/docs/documentation-components-horizontalrule--docs) */ export declare const HorizontalRule: ({ className, style, ...props }: HorizontalRuleProps) => React.JSX.Element;