Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
 
 
 
 

47 lines
1.2 KiB

  1. ---
  2. name: Select
  3. ---
  4. import { Select } from '../../../../react-common/src'
  5. import Playground from '../../components/Playground/Playground'
  6. import Props from '../../components/Props/Props'
  7. import Header from '../../components/Header/Header'
  8. <Header of="Select" />
  9. <Playground
  10. components={{ Select }}
  11. code={`
  12. <Select>
  13. <optgroup
  14. label="Fruits"
  15. >
  16. <option value="mango">Mango</option>
  17. <option value="strawberry">Strawberry</option>
  18. <option value="blueberry">Blueberry</option>
  19. </optgroup>
  20. <optgroup
  21. label="Classic"
  22. >
  23. <option value="chocolate">Chocolate</option>
  24. <option value="vanilla">Vanilla</option>
  25. </optgroup>
  26. </Select>
  27. `}
  28. />
  29. ## Props
  30. <Props of="Select" />
  31. ## Usage Notes
  32. The component will behave as `block`, i.e. it takes the remaining of the horizontal space.
  33. To use the component together with layouts, see [TextInput](./TextInput) for examples. Both `Select` and
  34. `TextInput` have similar strategies on usage with layouts.
  35. ## See Also
  36. - [Checkbox](./Checkbox) for a similar component on selecting values among very few choices.
  37. - [RadioButton](./RadioButton) for a similar component on selecting a single value among very few choices.