Docs 
Checkbox Group
Checkbox Group
A visual group of Checkbox controls, allowing for the selection of multiple options within a set.
Helper text
Usage 
vue
<script setup lang="ts">
import { CheckboxGroup } from "wedges-vue";
</script>
<template>
  <CheckboxGroup id="terms" />
</template>API Reference 
CheckboxGroup 
Alternatively, CheckboxGroupRoot can be used in place of this component.CheckboxGroup includes these props:
| Prop | Type | Default | 
|---|---|---|
as  | AsTag | Component | 'div' | 
asChild  | boolean |  false  | 
description  | string | |
disabled  | boolean |  false  | 
for  | string | |
helperText  | string | |
label  | string | |
orientation  | 'horizontal' | 'vertical' | |
required  | boolean |  false  | 
tooltip  | string | 
| Emit | Description | 
|---|---|
update:checked | 
CheckboxGroupItem 
Shares all the properties of the Checkbox component. Details can be found here.
Examples 
Helper text
Helper text