Form
---import { Button } from "@/components/ui/button"import { Form } from "@/components/ui/form"---
<Form fields={[ { label: "Name", type: "text" }, { label: "Email", type: "email" }, { label: "Message", type: "textarea" }, ]} submit="Send"/>Installation
Section titled “Installation”To install the form component, run the following command:
pnpm dlx shadcn@latest add @fulldev-ui/formimport { Form } from "@/components/ui/form"<Form fields={[{ label: "Name", type: "text" }]} submit="Submit" />