UNPKG

react-pdf-builder

Version:
14 lines (13 loc) 765 B
import React from 'react'; import { SwatchColor } from '../../themes/ColorScheme'; import { DivProps } from '../basics/Div'; export interface BlockquoteProps 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; /** Optional. Opacity value for the swatch color, from `0` to `1`. */ swatchOpacity?: number; } /** * Read the [full documentation for Blockquote](https://justinmahar.github.io/react-pdf-builder/?path=/docs/documentation-components-blockquote--docs) */ export declare const Blockquote: ({ children, className, style, ...props }: BlockquoteProps) => React.JSX.Element;