my/ui

Command Palette

Search for a command to run...

All components

Volume Slider

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-252.json

Usage

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

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

Component source

"use client";

import { Volume2Icon, VolumeXIcon } from "lucide-react";
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-3">
      <div className="flex items-center justify-between gap-2">
        <Label className="leading-6">Volume</Label>
        <output className="font-medium text-sm tabular-nums">{value[0]}</output>
      </div>
      <div className="flex items-center gap-2">
        <VolumeXIcon
          aria-hidden="true"
          className="shrink-0 opacity-60"
          size={16}
        />
        <Slider
          aria-label="Volume slider"
          onValueChange={setValue}
          value={value}
        />
        <Volume2Icon
          aria-hidden="true"
          className="shrink-0 opacity-60"
          size={16}
        />
      </div>
    </div>
  );
}

Source: Origin UI