summaryrefslogtreecommitdiffhomepage
path: root/app/components/styled/AppButton.js
diff options
context:
space:
mode:
authoranderklander <anderklander@gmail.com>2018-02-14 20:54:22 +0100
committeranderklander <anderklander@gmail.com>2018-02-15 16:02:02 +0100
commit039724937397ca312c0ce449833dac2cfcb5fb75 (patch)
treef0a5257f799e7bc7a82bcab45c1b24a2716e7862 /app/components/styled/AppButton.js
parent21c5d2fdfef9f49203f90b4f3b8451132e0773bc (diff)
downloadmullvadvpn-039724937397ca312c0ce449833dac2cfcb5fb75.tar.xz
mullvadvpn-039724937397ca312c0ce449833dac2cfcb5fb75.zip
Missed one color->style rename
Diffstat (limited to 'app/components/styled/AppButton.js')
-rw-r--r--app/components/styled/AppButton.js4
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>
);