1.0.1 • Published 8 years ago

ureact-button v1.0.1

Weekly downloads
2
License
ISC
Repository
-
Last release
8 years ago

ureact-button

Ureact button component

Usage

<UreactButton
  type={'default'|'primary'}
  onClick={
    /* Triggered when clicked. If this returns a promise, will
       automatically show busy cursor until Promise finishes */
  }
  label={'name of button' /* can also pass in as child */}
  disabled={true|false}
  isBusy={true|false /* to programatically show busy cursor */}>

  Label can be specified here instead

</UreactButton>