The PaperButton component is a div at the moment. This is not an ideal a solution cause you lost the feature to accessing the button by tab clicks. I would propose a change in the Paper component so that it will support the setting of the element type like this:
var Root = React.createFactory(this.props.elementType || 'div');
return (
<Root className={classes} onClick={this._onClick} onMouseDown={this._onMouseDown} onMouseUp={this._onMouseUp}>
<div className={insideClasses}>
{this.props.children}
</div>
</Root>
);
The
PaperButtoncomponent is adivat the moment. This is not an ideal a solution cause you lost the feature to accessing the button by tab clicks. I would propose a change in thePapercomponent so that it will support the setting of the element type like this: