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', }, 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 ( ); }; export default TransactionOutgoingIcon;