import BigNumber from 'bignumber.js' import * as React from 'react' import { StyleProp, TextStyle } from 'react-native' import TokenDisplay from 'src/components/TokenDisplay' import { useTokenInfoByAddress, useTokenInfoWithAddressBySymbol } from 'src/tokens/hooks' import { LocalAmount } from 'src/transactions/types' import { Currency } from 'src/utils/currencies' interface Props { amount: BigNumber.Value tokenAddress?: string | null currency?: Currency showSymbol?: boolean showLocalAmount?: boolean hideSign?: boolean showExplicitPositiveSign?: boolean localAmount?: LocalAmount style?: StyleProp testID?: string } /** * @deprecated use TokenDisplay instead */ function LegacyTokenDisplay({ amount, tokenAddress, currency, showLocalAmount = true, showSymbol = true, showExplicitPositiveSign = false, hideSign = false, localAmount, style, testID, }: Props) { if (tokenAddress ? currency : !currency) { throw new Error( 'LegacyTokenDisplay must be passed either "currency" or "tokenAddress" and not both' ) } const tokenInfoFromAddress = useTokenInfoByAddress(tokenAddress) const tokenInfoFromCurrency = useTokenInfoWithAddressBySymbol( currency! === Currency.Celo ? 'CELO' : currency! ) const tokenInfo = tokenInfoFromAddress || tokenInfoFromCurrency return ( ) } export default LegacyTokenDisplay