Checkbox

Checkbox component documentation.

Usage

import { Checkbox, Label } from "@aqqo/aqqo-ui";
<div className="space-x-2">
    <Checkbox id="Checkbox" />
    <Label htmlFor="Checkbox">Accept terms and conditions</Label>
</div>

Examples

Indeterminate

<div className="space-x-2">
    <Checkbox id="Checkbox" checked="indeterminate" />
    <Label htmlFor="Checkbox">Accept terms and conditions</Label>
</div>

Disabled

<div className="space-x-2">
    <Checkbox id="Checkbox" disabled />
    <Label htmlFor="Checkbox">Accept terms and conditions</Label>
</div>

On this page

  1. Usage
  2. Examples
  3. Indeterminate
  4. Disabled
Scroll to top