Single-line text field. Inherits all native input props.
pnpm dlx shadcn@latest add @webzenia/input
Always pair with a <label> (or aria-label).
Communicate errors with text + aria-invalid, not colour alone.
import { Input } from "@/components/ui/input" <label htmlFor="email">Email</label> <Input id="email" type="email" placeholder="you@company.com" />