Components

"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 };























Part of Origin UI — browse the full library on 21st.dev.