my/ui

Command Palette

Search for a command to run...

All components

Slider With Output

sliders

Origin UI component.

responsive · 600px

Install

Same command in any shadcn project — React (Vite/CRA), Next.js, Remix, Astro, and more:

$npx shadcn@latest add https://your-domain/r/comp-247.json

Usage

import Cmp from "@/registry/origin-ui/comp-247";

export default function Demo() {
  return <Cmp />;
}

Component source

"use client";

import { useState } from "react";

import { Label } from "@/components/ui/label";
import { Slider } from "@/components/ui/slider";

export default function Component() {
  const [value, setValue] = useState([25]);

  return (
    <div className="space-y-4">
      <div className="flex items-center justify-between gap-2">
        <Label className="leading-6">Slider with output</Label>
        <output className="font-medium text-sm tabular-nums">{value[0]}</output>
      </div>
      <Slider
        aria-label="Slider with output"
        onValueChange={setValue}
        value={value}
      />
    </div>
  );
}

Source: Origin UI