Checkbox
Native <input type="checkbox"> styled with Tailwind. All form behavior and events are untouched.
Preview
Usage
TSX
import { Checkbox, Label } from "kora-ui";
<div className="flex items-center gap-2">
<Checkbox id="terms" />
<Label htmlFor="terms">Accept the terms</Label>
</div>