Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

28 righe
574 B

  1. ---
  2. name: Slider
  3. route: /components/slider
  4. menu: Components
  5. ---
  6. import { Playground, Props } from 'docz'
  7. import Slider from './Slider'
  8. # Slider
  9. Component for inputting numeric values in a graphical manner.
  10. The component is styled using client-side scripts. When the component is rendered server-side,
  11. the component falls back into the original `<input type="range">` element.
  12. <Playground>
  13. <Slider />
  14. </Playground>
  15. ## Props
  16. <Props of={Slider} />
  17. ## See Also
  18. - [Reach UI Slider](//reacttraining.com/reach-ui/slider/#sliderinput) for the client-side implementation.