Files
shadcn-ui/apps/v4/examples/base/slider-range.tsx
shadcn 64b88b6cdb feat: refactor styles handling across v4 (#10176)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 09:50:58 +04:00

13 lines
226 B
TypeScript

import { Slider } from "@/styles/base-nova/ui/slider"
export function SliderRange() {
return (
<Slider
defaultValue={[25, 50]}
max={100}
step={5}
className="mx-auto w-full max-w-xs"
/>
)
}