Javier
UI Functional, next fixing automations
d725335
Raw
History Blame Contribute Delete
988 Bytes
import * as React from "react"
import * as SliderPrimitive from "@radix-ui/react-slider"
import { cn } from "@/lib/utils"
function Slider({
className,
...props
}: React.ComponentProps<typeof SliderPrimitive.Root>) {
return (
<SliderPrimitive.Root
className={cn(
"relative flex w-full touch-none select-none items-center py-1.5",
className,
)}
{...props}
>
<SliderPrimitive.Track className="relative h-1 w-full grow overflow-hidden rounded-full bg-white/10">
<SliderPrimitive.Range className="absolute h-full bg-primary" />
</SliderPrimitive.Track>
<SliderPrimitive.Thumb
className={cn(
"block size-3.5 rounded-full border border-primary bg-background shadow-[0_0_0_3px_oklch(0.885_0.19_122_/_0.2)]",
"transition-transform hover:scale-110 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring",
)}
/>
</SliderPrimitive.Root>
)
}
export { Slider }