@praetorian-chariot/ui
Version:
The UI component library for Chariot, built with Tailwind CSS and React.
18 lines • 492 B
TypeScript
import React from "react";
export interface SliderProps {
min?: number;
max?: number;
value?: number;
onChange?: (value: number) => void;
enableUnlimited?: boolean;
className?: string;
label?: string;
title?: string;
subtitle?: string;
unit?: string;
disabled?: boolean;
size?: "sm" | "md" | "lg";
onUnlimitedChange?: (isUnlimited: boolean) => void;
}
export declare const Slider: React.FC<SliderProps>;
//# sourceMappingURL=Slider.d.ts.map