AppIcon props update

This commit is contained in:
mashazyu
2020-03-24 13:27:59 +01:00
committed by Sofiya Tepikin
parent f0caffacdd
commit b9d85042ef
3 changed files with 9 additions and 14 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'} isCTA/>
<AppIcon name={'chevron-right'} color={Colors.orange}/>
</TouchableOpacity>
</Segment>
)