diff --git a/src/FlatButton/FlatButton.js b/src/FlatButton/FlatButton.js index 1805932b724fb5..6cfb927294de8f 100644 --- a/src/FlatButton/FlatButton.js +++ b/src/FlatButton/FlatButton.js @@ -46,6 +46,10 @@ class FlatButton extends Component { PropTypes.string, PropTypes.element, ]), + /** + * If true, the element's ripple effect will be disabled. + */ + disableTouchRipple: React.PropTypes.bool, /** * Disables the button if set to true. */ diff --git a/src/RaisedButton/RaisedButton.js b/src/RaisedButton/RaisedButton.js index 986f9339b44bb6..b596038a8f875d 100644 --- a/src/RaisedButton/RaisedButton.js +++ b/src/RaisedButton/RaisedButton.js @@ -144,6 +144,10 @@ class RaisedButton extends Component { PropTypes.string, PropTypes.element, ]), + /** + * If true, the element's ripple effect will be disabled. + */ + disableTouchRipple: React.PropTypes.bool, /** * If true, the button will be disabled. */