import { Button, Label, Tooltip } from "@cloudflare/kumo"; import { Info } from "@phosphor-icons/react"; import type { ReactNode } from "react"; export function FieldHelpLabel({ children, help, helpLabel, htmlFor, labelClassName = "text-sm font-medium text-kumo-default", }: { children: ReactNode; help: ReactNode; helpLabel: string; htmlFor?: string; labelClassName?: string; }) { return (
); }