mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-06 19:35:44 +02:00
18 lines
No EOL
367 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|