Studiov0.6.0

Checkbox

Tier 1shadcn
Inputs

A binary selection control for independent options in forms.

Live Preview

Code

import { Checkbox } from "@regen/ui";

<Checkbox />

Props Inspector

No configurable props for this component.

Documentation

Use Cases

  • Terms acceptance
  • Feature toggles in settings
  • Multi-select lists

Do

  • Always associate with Label via htmlFor/id
  • Use indeterminate state for partial selection

Don't

  • Don't use for exclusive choices — use RadioGroup
  • Don't use without a visible label