@nature-ui/checkbox
v2.2.13
Published
A React Checkbox component for use in forms
Downloads
95
Maintainers
Readme
@nature-ui/checkbox
Checkbox component is used in forms when a user needs to select multiple values from several options.
Installation
yarn add @nature-ui/checkbox
# or
npm i @nature-ui/checkbox
Import component
import { Checkbox, CheckboxGroup } from '@nature-ui/checkbox';
Usage
<Checkbox>This is a checkbox</Checkbox>
CheckboxGroup
CheckboxGroup is used to bind multiple checkboxes into a group, and it indicates whether one or more options are selected.
<CheckboxGroup defaultValue={['one', 'two']}>
<Stack spacing={24} row>
<Checkbox value='one'>One</Checkbox>
<Checkbox value='two'>Two</Checkbox>
<Checkbox value='three'>Three</Checkbox>
</Stack>
</CheckboxGroup>