/** * SimpleFormSection -- A card component wrapping a group of form fields with * an icon, title, and optional description. */ import type { LucideIcon } from 'lucide-react' interface SimpleFormSectionProps { icon: LucideIcon title: string description?: string children: React.ReactNode } export function SimpleFormSection({ icon: Icon, title, description, children, }: SimpleFormSectionProps) { return (
{description}
)}