UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

12 lines (11 loc) 359 B
import * as React from 'react'; declare type widthUnit = number | string; export interface SkeletonParagraphProps { prefixCls?: string; className?: string; style?: React.CSSProperties; width?: widthUnit | Array<widthUnit>; rows?: number; } declare const Paragraph: (props: SkeletonParagraphProps) => JSX.Element; export default Paragraph;