UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

18 lines 595 B
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 }; //# sourceMappingURL=slider.d.ts.map