Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

Checkbox.mdx 568 B

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