UNPKG

rsuite

Version:

A suite of react components

12 lines (11 loc) 446 B
import { WithAsProps, RsRefForwardingComponent } from '../@types/common'; export interface PlaceholderParagraphProps extends WithAsProps { rows?: number; rowHeight?: number; rowMargin?: number; graph?: boolean | 'circle' | 'square' | 'image'; /** Placeholder status */ active?: boolean; } declare const PlaceholderParagraph: RsRefForwardingComponent<'div', PlaceholderParagraphProps>; export default PlaceholderParagraph;