Sections
Get Started
UI
Components
- Animated Beam
- Animated List
- Animated Logo
- Animated Theme Toggler
- Avatar Circles
- Bento Grid
- Big Name Text
- Border Beam
- Dock
- Feature Card
- Filter Dropdown
- Footer Link
- Hero Badge
- Hero Buttons
- Hyper Text
- Lens
- Magic Card
- Marquee
- Meteors
- Onboarding Form
- Pricing Card
- Scroll Text
- Section Header
- Site Header
- Status Card
- Status
- Tweet Card
import { cn } from "@/lib/utils";
import { Slider } from "@/registry/sase/slider";
type SliderProps = React.ComponentProps<typeof Slider>;
export function SliderDemo({ className, ...props }: SliderProps) {
return (
<Slider
defaultValue={[50]}
max={100}
step={1}
className={cn("w-[60%]", className)}
{...props}
/>
);
}
Installation
pnpm dlx shadcn@latest add https://sase-ui.vercel.app/r/slider.json
Usage
import { Slider } from "@/components/ui/slider";<Slider defaultValue={[33]} max={100} step={1} />