lightswind
Version:
A professionally designed component library & templates market that brings together functionality, accessibility, and beautiful aesthetics for modern applications.
18 lines (17 loc) • 559 B
TypeScript
import * as React from "react";
interface SliderProps {
defaultValue?: number[];
value?: number[];
min?: number;
max?: number;
step?: number;
onValueChange?: (value: number[]) => void;
disabled?: boolean;
className?: string;
showTooltip?: boolean;
showLabels?: boolean;
thumbClassName?: string;
trackClassName?: string;
}
declare const Slider: React.ForwardRefExoticComponent<SliderProps & Omit<React.HTMLAttributes<HTMLDivElement>, keyof SliderProps> & React.RefAttributes<HTMLDivElement>>;
export { Slider };