bug fixes...

This commit is contained in:
ammarahm-ed
2020-08-16 18:59:07 +05:00
parent 4a67b3fe42
commit 69813816ee
15 changed files with 238 additions and 230 deletions

View File

@@ -0,0 +1,21 @@
import React from 'react';
import {TouchableOpacity} from 'react-native';
import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
import {SIZE} from '../../common/common';
export const ActionIcon = ({onPress, name, color,customStyle}) => {
return (
<TouchableOpacity
onPress={onPress}
style={[{
width: 60,
height: 50,
justifyContent: 'center',
alignItems: 'flex-end',
paddingRight: 12,
zIndex: 800,
},customStyle]}>
<Icon name={name} color={color} size={SIZE.xxxl} />
</TouchableOpacity>
);
};