@nature-ui/checkbox
TypeScript icon, indicating that this package has built-in type declarations

2.2.13 • Public • Published

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

Dependencies (6)

Dev Dependencies (5)

Package Sidebar

Install

npm i @nature-ui/checkbox

Weekly Downloads

5

Version

2.2.13

License

MIT

Unpacked Size

94.6 kB

Total Files

31

Last publish

Collaborators

  • dnature