import { Bank } from '@blockworks-foundation/mango-v4' import Decimal from 'decimal.js' import FormatNumericValue from './FormatNumericValue' const BankAmountWithValue = ({ amount = 0, bank, decimals, fixDecimals = true, stacked, value, isPrivate, }: { amount: Decimal | number | string bank: Bank decimals?: number fixDecimals?: boolean stacked?: boolean value?: number isPrivate?: boolean }) => { return (

<> {' '}

) } export default BankAmountWithValue