import { ReactNode } from 'react' import { cn } from '@/lib/utils' export function FormSection({ label, children, className, horizontal, }: { label?: string children?: ReactNode className?: string horizontal?: boolean }) { return (

{label}

{children}
) }