import { Slider, Tooltip, Typography, Box } from "@mui/material"; import React, { useState } from "react"; interface IProps { initialValue: any; callback: (event: any, newValue: number | number[]) => void; step: number; min: number; max: number; tooltip: React.ReactElement; label: string; marks?: boolean; } export const OptionsSlider = (props: IProps): React.ReactElement => { const [value, setValue] = useState(props.initialValue); const onChange = (_evt: Event, newValue: number | Array): void => { setValue(newValue); }; return ( {props.tooltip}}> {props.label} props.callback(evt, value)} step={props.step} min={props.min} max={props.max} valueLabelDisplay="auto" sx={{ "& .MuiSlider-thumb": { height: "12px", width: "12px", }, }} marks={props.marks} /> ); };