# @chakra-ui/checkbox
Checkbox component is used in forms when a user needs to select multiple values
from several options.
## Installation
```sh
yarn add @chakra-ui/checkbox
# or
npm i @chakra-ui/checkbox
```
## Import component
```jsx
import { Checkbox } from "@chakra-ui/checkbox"
```
## Usage
```jsx
This is a checkbox
```
### CheckboxGroup
CheckboxGroup is used to bind multiple checkboxes into a group, and it indicates
whether one or more options are selected.
```jsx
One
Two
Three
```
### Resources
- https://www.a11ymatters.com/pattern/checkbox/
- https://www.sarasoueidan.com/blog/inclusively-hiding-and-styling-checkboxes-and-radio-buttons/