kora-ui
Components

Input

Drop-in replacement for <input>. Inherits every native attribute (type, placeholder, required, etc.) and forwards its ref.

Preview

Usage

 
TSX
import { Input, Label } from "kora-ui";

<div className="flex flex-col gap-1.5">
  <Label htmlFor="email">Email</Label>
  <Input id="email" type="email" placeholder="you@example.com" />
</div>