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
+2 -2
View File
@@ -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