2022-01-28 14:13:53 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { StyleSheet, View } from 'react-native';
|
|
|
|
import { Icon } from 'react-native-elements';
|
2024-05-20 10:54:13 +01:00
|
|
|
|
2023-10-23 21:28:44 -04:00
|
|
|
import { useTheme } from '../themes';
|
2022-01-28 14:13:53 +03:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
boxIncoming: {
|
|
|
|
position: 'relative',
|
|
|
|
},
|
|
|
|
ballOutgoing: {
|
|
|
|
width: 30,
|
|
|
|
height: 30,
|
|
|
|
borderRadius: 15,
|
|
|
|
transform: [{ rotate: '225deg' }],
|
|
|
|
justifyContent: 'center',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const TransactionOutgoingIcon = props => {
|
|
|
|
const { colors } = useTheme();
|
|
|
|
const stylesBlueIconHooks = StyleSheet.create({
|
|
|
|
ballOutgoing: {
|
|
|
|
backgroundColor: colors.ballOutgoing,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View style={styles.boxIncoming}>
|
|
|
|
<View style={[styles.ballOutgoing, stylesBlueIconHooks.ballOutgoing]}>
|
|
|
|
<Icon name="arrow-down" size={16} type="font-awesome" color={colors.outgoingForegroundColor} />
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default TransactionOutgoingIcon;
|