Skip to content
Spira
Forms

Checkbox

Boolean toggles with a checked state.

Checkboxes

Boolean toggles with a checked state.

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

<label className="flex items-center gap-3 text-sm">
  <Checkbox defaultChecked />
  Terms & conditions
</label>
<label className="flex items-center gap-3 text-sm">
  <Checkbox />
  Newsletter
</label>