Newer
Older
CrypticOreWallet / src / components / addresses / picker / WalletHint.tsx
@BuildTools BuildTools on 9 Jun 2021 681 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 { useTranslation, Trans } from "react-i18next";

import { Wallet } from "@wallets";
import { ContextualAddress } from "@comp/addresses/ContextualAddress";

interface Props {
  wallet: Wallet;
}

export function WalletHint({ wallet }: Props): JSX.Element {
  const { t } = useTranslation();

  return <span className="address-picker-hint address-picker-wallet-hint">
    <Trans t={t} i18nKey="addressPicker.walletHint">
      Owner: <ContextualAddress address={wallet.address} />
    </Trans>
  </span>;
}