import { Button } from '@/components/ui/button'; import { FormLabel } from '@/components/ui/form'; import { Plus } from 'lucide-react'; import { ReactNode } from 'react'; export type FormListHeaderProps = { label: ReactNode; tooltip?: string; onClick?: () => void; disabled?: boolean; }; export function DynamicFormHeader({ label, tooltip, onClick, disabled = false, }: FormListHeaderProps) { return (