Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

28 строки
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.