Sha256: e41dd09f0369d7613c8b2ef97c6143512126edec9e8d71ff1f67fbd4fad70550

Contents?: true

Size: 663 Bytes

Versions: 37

Compression:

Stored size: 663 Bytes

Contents

const UIPageActionsButtons = ({ primary, buttons }) => {

  const className = classNames({
    'ui-page-actions__primary': primary,
    'ui-page-actions__secondary': !primary
  });

  const buttonGroupClassName = classNames({
    'button-group': true,
    'button-group--right-aligned': primary
  });

  return (
    <div className={className}>
      <div className={buttonGroupClassName}>
        {buttons.map((button, index) => {
          return React.cloneElement(button, { key: index});
        })}
      </div>
    </div>
  );
};

UIPageActionsButtons.propTypes = {
  primary: React.PropTypes.bool.isRequired,
  buttons: React.PropTypes.array.isRequired
};

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
disco_app-0.16.1.pre.sidekiq.pre.6.pre.release app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.10.4 app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.10.5 app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.11.0 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.11.1 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.12.0 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.12.1 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.12.5 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.12.6 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.12.7 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.0 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.1 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.2 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.3 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.4 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.5 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.6 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.7 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.13.8 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx
disco_app-0.14.1 app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx