2.2.13 • Published 1 year ago

@nature-ui/checkbox v2.2.13

Weekly downloads
19
License
MIT
Repository
github
Last release
1 year ago

@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>