# Inputs >> Checkbox Group >> Overview ||10 A checkbox group enhances the functionality of the native `` element. Its purpose is to provide a way for users to check **multiple** options amongst a set of choices, or to function as a single toggle. > You should use `` elements as the children of the ``. ```js script import { html } from '@lion/core'; import '@lion/checkbox-group/define'; ``` ```js story export const main = () => html` `; ``` > Make sure that the checkbox-group also has a name attribute, this is necessary for the [lion-form](../form/overview.md)'s serialization result. ## Features Since it extends from [lion-fieldset](../fieldset/overview.md), it has all the features a fieldset has. ## Installation ```bash npm i --save @lion/checkbox-group ``` ```js import '@lion/checkbox-group/define'; ```