import { css } from "@linaria/core"; import { Fragment, h, VNode } from "preact"; import { Alert } from "../mui/Alert.js"; import { Button } from "../mui/Button.js"; import { Paper } from "../mui/Paper.js"; import { Typography } from "../mui/Typography.js"; export function NoBalanceHelp({ goToWalletManualWithdraw, }: { goToWalletManualWithdraw: () => void; }): VNode { return ( Withdraw some funds into your wallet. ); }