rowboat/apps/rowboat/app/lib/components/form-section.tsx
2025-02-19 20:06:58 +05:30

18 lines
No EOL
367 B
TypeScript

import { Divider } from "@nextui-org/react";
export function FormSection({
children,
className = "",
}: {
children: React.ReactNode;
className?: string;
}) {
return (
<>
<div className={`flex flex-col gap-4 items-start ${className}`}>
{children}
</div>
<Divider />
</>
);
}