Skip to content
X 468

Input

---
import { Input } from "@/components/ui/input"
---
<div class="flex w-full max-w-sm flex-col gap-3">
<Input type="text" placeholder="Type here..." />
<Input type="email" placeholder="Email" />
<Input type="tel" placeholder="Phone" />
<Input type="text" placeholder="Disabled" disabled />
</div>

To install the input component, run the following command:

Terminal window
npx shadcn@latest add @fulldev/input
import { Input } from "@/components/ui/input"
<Input type="text" placeholder="Enter text..." />