UNPKG

accessibility-react-widget

Version:

A React-based web accessibility widget to enhance UI/UX for all users. This powerful tool seamlessly integrates with React applications, offering a wide range of features like adjustable font sizes, text alignment options, dyslexia-friendly fonts, and col

14 lines (12 loc) 293 B
import { FC } from 'react'; interface RcSliderProps { range?: boolean; min?: number; max?: number; value?: number; onChange: (n: number | number[]) => void; height?: number; vertical?: boolean; } declare const RcSlider: FC<RcSliderProps>; export default RcSlider;