summaryrefslogtreecommitdiffhomepage
path: root/app/components/Settings.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/Settings.js')
-rw-r--r--app/components/Settings.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/components/Settings.js b/app/components/Settings.js
index 8c66c4bb1f..17853fe423 100644
--- a/app/components/Settings.js
+++ b/app/components/Settings.js
@@ -2,7 +2,7 @@
import moment from 'moment';
import React from 'react';
import { Component, Text, View } from 'reactxp';
-import { Button, CellButton, AppButton } from './styled';
+import { Button, CellButton, RedButton, Label, Icon } from './styled';
import { Layout, Container } from './Layout';
import CustomScrollbars from './CustomScrollbars';
import styles from './SettingsStyles';
@@ -158,11 +158,11 @@ export default class Settings extends Component {
_renderQuitButton() {
return <View style={styles.settings__footer}>
- <AppButton style={styles.settings__footer_button}
- hoverStyle={styles.settings__footer_button_hover}
+ <RedButton
onPress={this.props.onQuit}
- testName='settings__quit'
- text='Quit app'/>
+ testName='settings__quit'>
+ <Label>Quit app</Label>
+ </RedButton>
</View>;
}
} \ No newline at end of file