UNPKG

react-pdf-builder

Version:
12 lines (11 loc) 659 B
import React from 'react'; import { SwatchColor } from '../../themes/ColorScheme'; import { DivProps } from '../basics/Div'; export interface ListItemProps 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 ListItem](https://justinmahar.github.io/react-pdf-builder/?path=/docs/documentation-components-lists-listitem--docs) */ export declare const ListItem: ({ children, className, style, ...props }: ListItemProps) => React.JSX.Element;