BlueWallet/components/icons/TransactionIncomingIcon.js
Marcos Rodriguez Velez 8641f94612
REF: Use our useTheme
2023-10-23 21:28:44 -04:00

37 lines
886 B
JavaScript

import React from 'react';
import { StyleSheet, View } from 'react-native';
import { Icon } from 'react-native-elements';
import { useTheme } from '../themes';
const styles = StyleSheet.create({
boxIncoming: {
position: 'relative',
},
ballIncoming: {
width: 30,
height: 30,
borderRadius: 15,
transform: [{ rotate: '-45deg' }],
justifyContent: 'center',
},
});
const TransactionIncomingIcon = props => {
const { colors } = useTheme();
const stylesHooks = StyleSheet.create({
ballIncoming: {
backgroundColor: colors.ballReceive,
},
});
return (
<View style={styles.boxIncoming}>
<View style={[styles.ballIncoming, stylesHooks.ballIncoming]}>
<Icon name="arrow-down" size={16} type="font-awesome" color={colors.incomingForegroundColor} />
</View>
</View>
);
};
export default TransactionIncomingIcon;