Files
icehrm/web/node_modules/antd/lib/skeleton/Paragraph.d.ts
2020-05-20 18:47:29 +02:00

12 lines
346 B
TypeScript

/// <reference types="react" />
declare type widthUnit = number | string;
export interface SkeletonParagraphProps {
prefixCls?: string;
className?: string;
style?: object;
width?: widthUnit | Array<widthUnit>;
rows?: number;
}
declare const Paragraph: (props: SkeletonParagraphProps) => JSX.Element;
export default Paragraph;