Remove unused style

This commit is contained in:
Julia Friesel
2019-05-17 11:54:50 +02:00
parent 1d61675ef7
commit 00294ff6f6
2 changed files with 3 additions and 11 deletions
+2 -3
View File
@@ -4,7 +4,7 @@ import {
TouchableOpacity, TouchableOpacity,
View View
} from 'react-native' } from 'react-native'
import styles, { iconStyles } from '../../styles' import styles from '../../styles'
import NavigationArrow from './navigation-arrow' import NavigationArrow from './navigation-arrow'
import Icon from 'react-native-vector-icons/Entypo' import Icon from 'react-native-vector-icons/Entypo'
@@ -21,10 +21,9 @@ export default function BackButtonHeader(props) {
{props.title} {props.title}
</Text> </Text>
</View> </View>
<TouchableOpacity style={styles.hiddenIcon}> <TouchableOpacity>
<Icon <Icon
name={'chevron-thin-right'} name={'chevron-thin-right'}
{...iconStyles.hiddenIcon}
/> />
</TouchableOpacity> </TouchableOpacity>
</View> </View>
+1 -8
View File
@@ -176,7 +176,7 @@ export default StyleSheet.create({
fontFamily: textFontBold, fontFamily: textFontBold,
marginTop: 10 marginTop: 10
}, },
symptomInfoIcon: { symptomDeleteIcon: {
marginRight: 20, marginRight: 20,
marginLeft: 20 marginLeft: 20
}, },
@@ -243,9 +243,6 @@ export default StyleSheet.create({
navigationArrow: { navigationArrow: {
padding: 20 padding: 20
}, },
hiddenIcon: {
padding: 20
},
menu: { menu: {
backgroundColor: primaryColor, backgroundColor: primaryColor,
alignItems: 'center', alignItems: 'center',
@@ -484,9 +481,5 @@ export const iconStyles = {
infoInHeading: { infoInHeading: {
marginRight: 5, marginRight: 5,
color: 'black' color: 'black'
},
hiddenIcon: {
size: 20,
display: 'none'
} }
} }