import React from 'react'; import { StyleSheet, View, ViewStyle } from 'react-native'; import { Icon } from '@rneui/themed'; import { useTheme } from '../themes'; const styles = StyleSheet.create({ boxIncoming: { position: 'relative', } as ViewStyle, ballIncoming: { width: 30, height: 30, borderRadius: 15, transform: [{ rotate: '-45deg' }], justifyContent: 'center', } as ViewStyle, icon: { left: 0, top: 0, transform: [{ rotate: '-45deg' }], }, }); const TransactionOnchainIcon: React.FC = () => { const { colors } = useTheme(); const stylesBlueIconHooks = StyleSheet.create({ ballIncoming: { backgroundColor: colors.ballReceive, }, }); return ( ); }; export default TransactionOnchainIcon;