import BigNumber from 'bignumber.js'
import React from 'react'
import CurrencyDisplay, { FormatType } from 'src/components/CurrencyDisplay'
import TokenDisplay from 'src/components/TokenDisplay'
export function CryptoAmount({
amount,
tokenId,
testID,
}: {
amount: BigNumber.Value
tokenId?: string
testID?: string
}) {
return
}
export function FiatAmount({
amount,
currency,
testID,
formatType,
}: {
amount: BigNumber.Value
currency: string
testID?: string
formatType?: FormatType
}) {
return (
)
}