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>