Preview
Installation
terminal
Other package managers
bunx --bun shadcn@latest add https://trents.tech/r/input.jsonUsage
example.tsx
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
<div className="grid gap-2 max-w-sm">
<Label htmlFor="email">Email</Label>
<Input id="email" type="email" placeholder="you@example.com" />
</div>