UNPKG

@voilajsx/uikit

Version:

Cross-platform React components with beautiful themes and OKLCH color science

25 lines (24 loc) 1.07 kB
import { jsxs, jsx } from "react/jsx-runtime"; import { forwardRef } from "react"; import * as SliderPrimitive from "@radix-ui/react-slider"; import { cn } from "./utils.js"; const Slider = forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs( SliderPrimitive.Root, { ref, className: cn( "relative flex w-full touch-none select-none items-center", className ), ...props, children: [ /* @__PURE__ */ jsx(SliderPrimitive.Track, { className: "relative h-1.5 w-full grow overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ jsx(SliderPrimitive.Range, { className: "absolute h-full bg-primary" }) }), /* @__PURE__ */ jsx(SliderPrimitive.Thumb, { className: "block h-4 w-4 rounded-full border border-primary/50 bg-background shadow transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50" }) ] } )); Slider.displayName = SliderPrimitive.Root.displayName; export { Slider }; //# sourceMappingURL=slider.js.map