diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/components/styled/AppButton.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/styled/AppButton.js b/app/components/styled/AppButton.js index 4d69075042..53fe5561e7 100644 --- a/app/components/styled/AppButton.js +++ b/app/components/styled/AppButton.js @@ -75,9 +75,9 @@ const styles = { export class Label extends Component { render() { - const color = this.props.color || styles.white; + const style = this.props.style || styles.white; return ( - <Text style={[ styles.label, color ]}> + <Text style={[ styles.label, style ]}> {this.props.children} </Text> ); |
