Skip to content
X 499

Label

---
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
---
<div class="grid w-full max-w-sm gap-2">
<Label for="email">Email</Label>
<Input id="email" type="email" placeholder="Enter your email" />
</div>

To install the label component, run the following command:

Terminal window
npx shadcn@latest add @fulldev/label
import { Label } from "@/components/ui/label"
<Label for="email">Email</Label>