Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

26 lignes
596 B

  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.