|
12345678910111213141516171819202122232425 |
- ---
- name: Checkbox
- route: /components/checkbox
- menu: Components
- ---
-
- import { Playground, Props, Link } from 'docz'
- import Checkbox from './Checkbox'
-
- # Checkbox
-
- Component for values that have an on/off state.
-
- <Playground>
- <Checkbox label="Accept Terms" />
- </Playground>
-
- ## Props
-
- <Props of={Checkbox} />
-
- ## See Also
-
- - <Link to="../lib-components-select-select">Select</Link> for a similar component suitable for selecting more values.
- - <Link to="../lib-components-radio-button-radio-button">Radio Button</Link> for a similar component on selecting a single value among very few choices.
|