AppIcon fix

This commit is contained in:
mashazyu
2020-03-24 16:09:44 +01:00
committed by Sofiya Tepikin
parent cec8dbaf38
commit 1077f878ae
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ const MenuItem = ({ item, last, navigate }) => {
<AppText style={styles.title}>{item.name}</AppText>
{item.text.length > 0 && <AppText>{item.text}</AppText>}
</View>
<AppIcon name={'chevron-right'} color={Colors.orange}/>
<AppIcon name='chevron-right' color={Colors.orange}/>
</TouchableOpacity>
</Segment>
)