Components
Loading preview...
Enhanced shadcn/ui slider
npx shadcn@latest add https://21st.dev/r/originui/slider"use client";
import { Label } from "@/components/ui/label";
import { Slider } from "@/components/ui/slider";
function Component() {
return (
<div className="space-y-4 min-w-[300px]">
<Label>Slider with multiple thumbs</Label>
<Slider
defaultValue={[25, 50, 100]}
aria-label="Slider with multiple thumbs"
showTooltip
tooltipContent={(value) => `${value}%`}
/>
</div>
);
}
export { Component };