Input

Single-line and multi-line text fields. The same rounded, bordered surface—hover thickens the border, focus turns it ink-900.

Default
<Input placeholder="Search…" />
With Label
<Label htmlFor="email">Email</Label>
<Input id="email" type="email" />
Disabled
<Input disabled value="Read-only" />
Textarea
<Textarea rows={4} placeholder="Write something…" />