Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

26 rindas
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.