UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

15 lines (14 loc) 438 B
import * as React from 'react'; declare type widthUnit = number | string; export interface SkeletonParagraphProps { prefixCls?: string; className?: string; style?: object; width?: widthUnit | Array<widthUnit>; rows?: number; } declare class Paragraph extends React.Component<SkeletonParagraphProps, {}> { getWidth(index: number): string | number | undefined; render(): JSX.Element; } export default Paragraph;