Components
astro
Checkbox

Checkbox

---
import Checkbox from "@technologyadvice/components/ui/checkbox/Checkbox.astro"
---

<Checkbox />

States

Disabled

---
import Checkbox from "@technologyadvice/components/ui/checkbox/Checkbox.astro"
---

<Checkbox
  id="test1"
  label="This is a label"
  sublabel="This is a sublabel"
  disabled
/>

With Label

---
import Checkbox from "@technologyadvice/components/ui/checkbox/Checkbox.astro"
---

<Checkbox id="test2" label="This is a label" sublabel="This is a sublabel" />