Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Checkbox.mdx 596 B

12345678910111213141516171819202122232425
  1. ---
  2. name: Checkbox
  3. route: /components/checkbox
  4. menu: Components
  5. ---
  6. import { Playground, Props, Link } from 'docz'
  7. import Checkbox from './Checkbox'
  8. # Checkbox
  9. Component for values that have an on/off state.
  10. <Playground>
  11. <Checkbox label="Accept Terms" />
  12. </Playground>
  13. ## Props
  14. <Props of={Checkbox} />
  15. ## See Also
  16. - <Link to="../lib-components-select-select">Select</Link> for a similar component suitable for selecting more values.
  17. - <Link to="../lib-components-radio-button-radio-button">Radio Button</Link> for a similar component on selecting a single value among very few choices.