better-chatbot / src /components /ui /form-group.tsx
Bot
Initial commit for HF Spaces
05c5ed5
Raw
History Blame Contribute Delete
371 Bytes
import { cn } from "lib/utils";
interface FormGroupProps {
children: React.ReactNode;
className?: string;
}
export function FormGroup({ children, className }: FormGroupProps) {
return (
<div
className={cn(
"space-y-2 pb-4 border-b border-border/30 last:border-b-0 last:pb-0",
className,
)}
>
{children}
</div>
);
}