Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
55 lines
1.1 KiB
JavaScript
55 lines
1.1 KiB
JavaScript
import * as React from 'react';
|
|
import Box from '@mui/material/Box';
|
|
import Slider from '@mui/material/Slider';
|
|
import Typography from '@mui/material/Typography';
|
|
|
|
const MAX = 100;
|
|
const MIN = 0;
|
|
const marks = [
|
|
{
|
|
value: MIN,
|
|
label: '',
|
|
},
|
|
{
|
|
value: MAX,
|
|
label: '',
|
|
},
|
|
];
|
|
|
|
export default function CustomMarks() {
|
|
const [val, setVal] = React.useState(MIN);
|
|
const handleChange = (_, newValue) => {
|
|
setVal(newValue);
|
|
};
|
|
|
|
return (
|
|
<Box sx={{ width: 250 }}>
|
|
<Slider
|
|
marks={marks}
|
|
step={10}
|
|
value={val}
|
|
valueLabelDisplay="auto"
|
|
min={MIN}
|
|
max={MAX}
|
|
onChange={handleChange}
|
|
/>
|
|
<Box sx={{ display: 'flex', justifyContent: 'space-between' }}>
|
|
<Typography
|
|
variant="body2"
|
|
onClick={() => setVal(MIN)}
|
|
sx={{ cursor: 'pointer' }}
|
|
>
|
|
{MIN} min
|
|
</Typography>
|
|
<Typography
|
|
variant="body2"
|
|
onClick={() => setVal(MAX)}
|
|
sx={{ cursor: 'pointer' }}
|
|
>
|
|
{MAX} max
|
|
</Typography>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|