Paragraph.d.ts 337 B

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