import React from 'react'; import { StyleSheet, View } from 'react-native'; import { Icon } from '@rneui/themed'; import { useTheme } from '../themes'; const styles = StyleSheet.create({ boxIncoming: { position: 'relative', }, ballOutgoingWithoutRotate: { width: 30, height: 30, borderRadius: 15, }, icon: { left: 0, marginTop: 6, }, }); const TransactionOffchainIcon = props => { const { colors } = useTheme(); const stylesHooks = StyleSheet.create({ ballOutgoingWithoutRotate: { backgroundColor: colors.ballOutgoing, }, }); return ( ); }; export default TransactionOffchainIcon;