mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 10:12:01 +01:00
37 lines
901 B
JavaScript
37 lines
901 B
JavaScript
|
import React from 'react';
|
||
|
import { StyleSheet, View } from 'react-native';
|
||
|
import { Icon } from 'react-native-elements';
|
||
|
import { useTheme } from '@react-navigation/native';
|
||
|
|
||
|
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;
|