Form Layout
shadcn-customs-ui/form-layoutFreeBlock
Composable layout primitives for building structured and responsive forms.
Live preview
live · rendered by the registry
Rendered by shadcn-customs-ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://formkitcn.pro/r/form-layout.jsonSource
1"use client";23import type { ReactNode } from "react";45import { cn } from "@/lib/utils";67export function FormLayout({8 children,9 className,10}: {11 children: ReactNode;12 className?: string;13}) {14 return (15 <div16 className={cn(17 "space-y-10",18 className19 )}20 >21 {children}22 </div>23 );24}
What it pulls in
Other registry items
Files it writes
More from shadcn-customs-ui
All 8 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Data Griddata-table-dynamic | shadcn-customs-ui | Blocks | Free | 8 deps · 17 files | |
| Login Form Templateform-dynamic-template | shadcn-customs-ui | Blocks | Free | 5 deps · 7 files | |
| Field Rendererform-field | shadcn-customs-ui | Blocks | Free | 6 deps · 26 files | |
| Form Layout Templateform-template-01 | shadcn-customs-ui | Blocks | Free | 3 deps | |
| Step Formmultistep-form-template | shadcn-customs-ui | Blocks | Free | 6 deps · 6 files | |
| Redux Toolredux-methods-tool | shadcn-customs-ui | Blocks | Free | 2 deps · 11 files | |
| Theme Preset Tooltheme-preset-tool | shadcn-customs-ui | Blocks | Free | 1 dep · 22 files |
