mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 22:49:45 +01:00
enable playstore billing
This commit is contained in:
@@ -1,20 +1,23 @@
|
||||
import React from 'react';
|
||||
import {TouchableOpacity} from 'react-native';
|
||||
import {Text, TouchableOpacity, View} from 'react-native';
|
||||
import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
|
||||
import {SIZE} from '../../common/common';
|
||||
|
||||
export const ActionIcon = ({onPress, name, color,customStyle}) => {
|
||||
export const ActionIcon = ({onPress, name, color, customStyle}) => {
|
||||
return (
|
||||
<TouchableOpacity
|
||||
onPress={onPress}
|
||||
style={[{
|
||||
width: 50,
|
||||
height: 40,
|
||||
justifyContent: 'center',
|
||||
alignItems: 'flex-end',
|
||||
paddingRight: 12,
|
||||
zIndex: 800,
|
||||
},customStyle]}>
|
||||
style={[
|
||||
{
|
||||
width: 50,
|
||||
height: 40,
|
||||
justifyContent: 'center',
|
||||
alignItems: 'flex-end',
|
||||
paddingRight: 12,
|
||||
zIndex: 800,
|
||||
},
|
||||
customStyle,
|
||||
]}>
|
||||
<Icon name={name} color={color} size={SIZE.xxxl} />
|
||||
</TouchableOpacity>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user