mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
35 lines
864 B
TypeScript
35 lines
864 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
|
|
import {
|
|
Field,
|
|
FieldDescription,
|
|
FieldTitle,
|
|
} from "@/styles/base-nova/ui/field"
|
|
import { Slider } from "@/styles/base-nova/ui/slider"
|
|
|
|
export default function FieldSlider() {
|
|
const [value, setValue] = React.useState([200, 800])
|
|
|
|
return (
|
|
<Field className="w-full max-w-xs">
|
|
<FieldTitle>Price Range</FieldTitle>
|
|
<FieldDescription>
|
|
Set your budget range ($
|
|
<span className="font-medium tabular-nums">{value[0]}</span> -{" "}
|
|
<span className="font-medium tabular-nums">{value[1]}</span>).
|
|
</FieldDescription>
|
|
<Slider
|
|
value={value}
|
|
onValueChange={(value) => setValue(value as [number, number])}
|
|
max={1000}
|
|
min={0}
|
|
step={10}
|
|
className="mt-2 w-full"
|
|
aria-label="Price Range"
|
|
/>
|
|
</Field>
|
|
)
|
|
}
|