Newer
Older
CrypticOreWallet / src / pages / dashboard / WalletItem.tsx
@BuildTools BuildTools on 9 Jun 2021 741 bytes im gay
// Copyright (c) 2020-2021 Drew Lemmy
// This file is part of TenebraWeb 2 under AGPL-3.0.
// Full details: https://github.com/tmpim/TenebraWeb2/blob/master/LICENSE.txt
import { Row, Col } from "antd";

import { Wallet } from "@wallets";

import { TenebraValue } from "@comp/tenebra/TenebraValue";

export function WalletItem({ wallet }: { wallet: Wallet }): JSX.Element {
  return <Row className="card-list-item dashboard-wallet-item">
    <Col className="wallet-left">
      {wallet.label && <span className="wallet-label">{wallet.label}</span>}
      <span className="wallet-address">{wallet.address}</span>
    </Col>

    <Col className="wallet-right">
      <TenebraValue value={wallet.balance} highlightZero />
    </Col>
  </Row>;
}