Sha256: d01930e00a72f698e3dfc5908cf306133e9edaed99db00f481fafa42db3e3d8f

Contents?: true

Size: 647 Bytes

Versions: 16

Compression:

Stored size: 647 Bytes

Contents

const CardSection = ({ title, children, wrappable, borderless }) => {

  const className = classNames({
    'next-card__section': true,
    'wrappable': wrappable,
    'wrappable--half-spacing': wrappable,
    'next-card__section--no-border': borderless,
    'next-card__section--no-top-spacing': borderless
  });

  const showTitle = () => {
    if (title) {
      return <CardSectionTitle title={title}/>;
    } else {
      return null;
    }
  };

  return (
    <div className={className}>
      {showTitle()}
      {children}
    </div>
  );
};

CardSection.propTypes = {
  title: React.PropTypes.string,
  children: React.PropTypes.node
};

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
disco_app-0.9.0 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.1 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.2 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.3 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.4 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.5 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.6 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.7 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.8 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.9 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.10 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.9.11 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.10.0 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.10.1 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.10.2 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx
disco_app-0.10.3 app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx