wallet-core/packages/taler-wallet-webextension/src/popup/NoBalanceHelp.tsx

28 lines
744 B
TypeScript
Raw Normal View History

import { i18n } from "@gnu-taler/taler-util";
import { h, VNode } from "preact";
import { ButtonBoxWarning, WarningBox } from "../components/styled";
export function NoBalanceHelp({
goToWalletManualWithdraw,
}: {
goToWalletManualWithdraw: () => void;
}): VNode {
return (
<WarningBox>
<p>
<b>
<i18n.Translate>You have no balance to show.</i18n.Translate>
</b>
<br />
<i18n.Translate>
To withdraw money you can start from your bank site or click the
"withdraw" button to use a known exchange.
</i18n.Translate>
</p>
<ButtonBoxWarning onClick={() => goToWalletManualWithdraw()}>
Withdraw
</ButtonBoxWarning>
</WarningBox>
);
}