react-pdf-builder
Version:
Build beautiful PDF documents in React.
17 lines (16 loc) • 755 B
TypeScript
import { ViewProps } from '@react-pdf/renderer';
import React from 'react';
import { SwatchColor } from '../../themes/ColorScheme';
import { Style } from '../Style';
export interface ListItemContainerProps extends ViewProps {
children?: any;
num?: number;
markerStyle?: Style;
markerSwatch?: SwatchColor;
bullet?: string;
numberRenderer?: (num: number) => string;
unstyled?: boolean;
/** 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;
}
export declare const ListItemContainer: ({ children, markerStyle, style, ...props }: ListItemContainerProps) => React.JSX.Element;