import { FormattedNumber } from 'components/FormattedNumber' import Text from 'components/Text' interface Props { availableLiquidity: BigNumber asset: BorrowAsset } export default function AvailableLiquidityMessage(props: Props) { const { availableLiquidity, asset } = props return (
Not enough Liquidty! {`This transaction would exceed the amount of ${asset.symbol} currently available for borrowing on Mars.`}
Available Liquidity:
) }