11:31 AM
Back to Components

Checkbox

A control that allows the user to toggle between checked and not checked.

Preview
Checkbox Examples

Basic Checkboxes

Disabled Checkboxes

Checkbox Group

Form Example

Code
import { Checkbox } from "@/components/windows95-ui/field"
import { Label } from "@/components/windows95-ui/label"

<div className="flex items-center gap-2">
  <Checkbox id="terms" />
  <Label htmlFor="terms">I agree to the terms</Label>
</div>