Sha256: 62ffea56a7ac4794b1cd0e236247ab78a5b0b84871138ba4160e32a50e841b78

Contents?: true

Size: 247 Bytes

Versions: 11

Compression:

Stored size: 247 Bytes

Contents

const Button = ({ children, disabled, onClick }) => {

  const className = classNames({
    'btn': true
  });

  return(
    <button type="button" disabled={disabled} className={className} onClick={onClick}>
      {children}
    </button>
  )

};

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
disco_app-0.9.0 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.1 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.2 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.3 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.4 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.5 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.6 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.7 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.8 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.9 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx
disco_app-0.9.10 app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx