Skip to content
Snippets Groups Projects
Commit 1077f878 authored by mashazyu's avatar mashazyu Committed by Sofiya Tepikin
Browse files

AppIcon fix

parent cec8dbaf
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ AppIcon.propTypes = {
}
AppIcon.defaultProps = {
isCTA: 'black'
color: 'black'
}
const styles = StyleSheet.create({
......
......@@ -21,7 +21,7 @@ const SideMenu = ({ shouldShowMenu, toggleMenu }) => {
<React.Fragment>
{!shouldShowMenu &&
<TouchableOpacity onPress={toggleMenu}>
<AppIcon name={'dots-three-vertical'} color={Colors.orange}/>
<AppIcon name='dots-three-vertical' color={Colors.orange}/>
</TouchableOpacity>
}
{shouldShowMenu &&
......@@ -34,7 +34,7 @@ const SideMenu = ({ shouldShowMenu, toggleMenu }) => {
<View style={styles.blackBackground}></View>
<View style={styles.menu}>
<TouchableOpacity onPress={toggleMenu} style={styles.iconContainer}>
<AppIcon name={'cross'} color={'black'}/>
<AppIcon name='cross' color='black'/>
</TouchableOpacity>
{settingsMenuItems.map(item =>
<MenuItem
......
......@@ -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>
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment