import classNames from 'classnames'; import * as React from 'react'; type widthUnit = number | string; export interface SkeletonParagraphProps { prefixCls?: string; className?: string; style?: React.CSSProperties; width?: widthUnit | Array; rows?: number; } const Paragraph: React.FC = props => { const getWidth = (index: number) => { const { width, rows = 2 } = props; if (Array.isArray(width)) { return width[index]; } // last paragraph if (rows - 1 === index) { return width; } return undefined; }; const { prefixCls, className, style, rows } = props; const rowList = [...Array(rows)].map((_, index) => ( // eslint-disable-next-line react/no-array-index-key
  • )); return (
      {rowList}
    ); }; export default Paragraph;