This commit is contained in:
LASER-Yi 2022-07-04 20:59:40 +08:00
parent be93a92a35
commit 3958986614
1 changed files with 3 additions and 2 deletions

View File

@ -130,15 +130,16 @@ type SliderProps = BaseInput<number> &
export const Slider: FunctionComponent<SliderProps> = (props) => {
const { value, update, rest } = useBaseInput(props);
const { label, ...sliderProps } = rest;
const { min = 0, max = 100 } = props;
const marks = useSliderMarks([min, max]);
return (
<InputWrapper label={rest.label}>
<InputWrapper label={label}>
<MantineSlider
{...rest}
{...sliderProps}
marks={marks}
onChange={update}
value={value ?? 0}