UNPKG

react-enhanced-slider

Version:

Feature-rich slider component for React with step controls, smooth animations and full customization.

15 lines (14 loc) 358 B
import React from 'react'; import { Range } from './utils'; interface StepSliderProps { range?: Range; value?: number; defaultValue?: number; onChange?: (value: number) => void; className?: string; showBar?: boolean; thumbColor?: string; barColor?: string; } export declare const Slider: React.FC<StepSliderProps>; export {};