Files
kit-ui/components/ui/Slider.tsx
Sebastian Krüger 2000623c67 feat: implement Figlet, Pastel, and Unit tools with a unified layout
- Add Figlet text converter with font selection and history
- Add Pastel color palette generator and manipulation suite
- Add comprehensive Units converter with category-based logic
- Introduce AppShell with Sidebar and Header for navigation
- Modernize theme system with CSS variables and new animations
- Update project configuration and dependencies
2026-02-22 21:35:53 +01:00

66 lines
2.2 KiB
TypeScript

'use client';
import * as React from 'react';
import { cn } from '@/lib/utils/cn';
export interface SliderProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> {
label?: string;
showValue?: boolean;
suffix?: string;
}
const Slider = React.forwardRef<HTMLInputElement, SliderProps>(
({ className, label, showValue = true, suffix = '', ...props }, ref) => {
const [value, setValue] = React.useState(props.value || props.defaultValue || 0);
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
setValue(e.target.value);
props.onChange?.(e);
};
return (
<div className="space-y-2">
{(label || showValue) && (
<div className="flex items-center justify-between">
{label && (
<label htmlFor={props.id} className="text-sm font-medium">
{label}
</label>
)}
{showValue && (
<span className="text-sm text-muted-foreground">
{value}
{suffix}
</span>
)}
</div>
)}
<input
type="range"
className={cn(
'w-full h-2 bg-secondary rounded-lg appearance-none cursor-pointer',
'[&::-webkit-slider-thumb]:appearance-none [&::-webkit-slider-thumb]:w-4 [&::-webkit-slider-thumb]:h-4',
'[&::-webkit-slider-thumb]:rounded-full [&::-webkit-slider-thumb]:bg-primary',
'[&::-webkit-slider-thumb]:cursor-pointer [&::-webkit-slider-thumb]:transition-all',
'[&::-webkit-slider-thumb]:hover:scale-110',
'[&::-moz-range-thumb]:w-4 [&::-moz-range-thumb]:h-4 [&::-moz-range-thumb]:rounded-full',
'[&::-moz-range-thumb]:bg-primary [&::-moz-range-thumb]:border-0',
'[&::-moz-range-thumb]:cursor-pointer [&::-moz-range-thumb]:transition-all',
'[&::-moz-range-thumb]:hover:scale-110',
'focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring',
className
)}
ref={ref}
{...props}
value={value}
onChange={handleChange}
/>
</div>
);
}
);
Slider.displayName = 'Slider';
export { Slider };