UNPKG

337 BTypeScriptView Raw
1import * as React from 'react';
2type widthUnit = number | string;
3export interface SkeletonParagraphProps {
4 prefixCls?: string;
5 className?: string;
6 style?: React.CSSProperties;
7 width?: widthUnit | Array<widthUnit>;
8 rows?: number;
9}
10declare const Paragraph: React.FC<SkeletonParagraphProps>;
11export default Paragraph;