diff --git a/src/RaisedButton/RaisedButton.js b/src/RaisedButton/RaisedButton.js index 4b693fcf66cb28..9feac6b8c8a63e 100644 --- a/src/RaisedButton/RaisedButton.js +++ b/src/RaisedButton/RaisedButton.js @@ -6,7 +6,7 @@ import EnhancedButton from '../internal/EnhancedButton'; import Paper from '../Paper'; function validateLabel(props, propName, componentName) { - if (!props.children && !props.label && !props.icon) { + if (!props.children && (!props.label && props.label !== 0) && !props.icon) { return new Error(`Required prop label or children or icon was not specified in ${componentName}.`); } }