DescriptionList.js 736 Bytes
Newer Older
1 2 3 4 5
import React from 'react';
import classNames from 'classnames';
import { Row } from 'antd';
import styles from './index.less';

jim's avatar
jim committed
6 7 8 9 10 11 12 13 14 15
export default ({
  className,
  title,
  col = 3,
  layout = 'horizontal',
  gutter = 32,
  children,
  size,
  ...restProps
}) => {
16
  const clsString = classNames(styles.descriptionList, styles[layout], className, {
17 18
    [styles.small]: size === 'small',
    [styles.large]: size === 'large',
19
  });
20 21 22 23 24 25 26 27 28 29
  const column = col > 4 ? 4 : col;
  return (
    <div className={clsString} {...restProps}>
      {title ? <div className={styles.title}>{title}</div> : null}
      <Row gutter={gutter}>
        {React.Children.map(children, child => React.cloneElement(child, { column }))}
      </Row>
    </div>
  );
};