How to set borderRadius for a <RaisedButton>? style doesn't apply:
<RaisedButton
fullWidth={true}
label="Action"
secondary={true}
style={{borderRadius: "5px"}} // <-- trying to set "5px"
onMouseUp={this.submitForm}>
</RaisedButton>
But nothing changes:

reference #L393
style={{container:{borderRadius: "5px"}}}
This workaround is not working anymore.
https://github.com/callemall/material-ui/pull/3263/commits/8587247caa02a3d82d1cf77f3b0b4d5ce4385abb breaks it
EnhancedButton styling is now hardcoded and is not overridable.
I think this issue is more generic. As an example, although it applies to RaisedButton but not FlatButton, it also applies to Dialog.
Any workaround for this!?
made a PR for that #5182
Most helpful comment
made a PR for that #5182