children | any | passed as the child(ren) to the <button> element |
onClick? | (e) => void | click callback. The event will not propagate to parent elements. |
primary? | boolean | true to apply the is-primary class |
danger? | boolean | true to apply the is-danger class |
small? | boolean | true to apply the is-small class |
large? | boolean | true to apply the is-large class |
primary? | boolean | true to apply the is-primary class |
warning? | boolean | true to apply the is-warning class |
danger? | boolean | true to apply the is-danger class |
style? | object | custom style to be applied as the style={} prop to the element |
className? | string | will be appended as a custom value to the className= prop |
tooltip? | string | will be set as the title= prop on the element |
delay? | number | if supplied, onClick will not be called until after delay milliseconds have passed. A progress bar will be displayed while the button 'charges' |
progressClassName? | string | optional additional css class to apply to the progress bar |
progressStyle? | { [string]: any } | optional style properties to apply to the progress bar's style prop |
progressDirection? | "vertical" or "horizontal" | by default the value is "vertical", supply "horizontal" to grow the progress bar left-to-right instead of bottom-to-top |