import { VNode, h } from "preact"; import { InputLine, LabelWithTooltipMaybeRequired, UIFormProps, } from "./InputLine.js"; import { TranslatedString } from "@gnu-taler/taler-util"; interface Props { label: TranslatedString; tooltip?: TranslatedString; help?: TranslatedString; } export function Separator({ label, tooltip, help }: Props): VNode { return (
{help && (

{help}

)}
); }