Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ui-component-library / src / playground / Button / renderProps.ddd
Size: Mime:
// always has default element so won't call render prop for now
// const Element = this.props.element || this.props.renderProp
// @todo sadness for heart & soul
// const Element = div(className, styles)

// ghost ghost-button-styled-rider-wrap paypal ghost

// @see jsx-a11y/click-events-have-key-events
// const elementView = (
//   <Element
//     // is handled by react
//     // onTouchMove
//     // onTouchStart={this.handleTouchStart}
//     // onTouchMove={this.handleTouchMove}
//     // onTouchEnd={this.handleTouchEnd}
//     onFocus={this.state.handleFocus}
//     onBlur={this.state.handleBlur}
//     onKeyDown={this.handleKeyDown}
//     onClick={this.handleClick}
//     {...attributes}
//     {...this.accessibleAttributes}
//   >
//     {value}
//   </Element>
// )