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, ballOutgoingWithoutRotate: { width: 30, height: 30, borderRadius: 15, } as ViewStyle, icon: { left: 0, marginTop: 6, }, }); const TransactionOffchainIcon: React.FC = () => { const { colors } = useTheme(); const stylesHooks = StyleSheet.create({ ballOutgoingWithoutRotate: { backgroundColor: colors.ballOutgoing, }, }); return ( ); }; export default TransactionOffchainIcon;