import { h, VNode } from "preact"; import { ButtonBoxWarning, WarningBox } from "../components/styled/index.js"; import { useTranslationContext } from "../context/translation.js"; export function NoBalanceHelp({ goToWalletManualWithdraw, }: { goToWalletManualWithdraw: () => void; }): VNode { const { i18n } = useTranslationContext(); return (

You have no balance. {" "} Withdraw some funds into your wallet.

goToWalletManualWithdraw()}> Withdraw
); }