Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
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.