import { Divider } from "@heroui/react"; import { Label } from "./label"; export function FormSection({ label, children, showDivider = false, }: { label?: string; children: React.ReactNode; showDivider?: boolean; }) { return ( <>
{label &&
{showDivider && } ); }