Files
react-test/docs/data/material/components/slider/NonLinearSlider.tsx.preview

15 lines
366 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
<Typography id="non-linear-slider" gutterBottom>
Storage: {valueLabelFormat(calculateValue(value))}
</Typography>
<Slider
value={value}
min={5}
step={1}
max={30}
scale={calculateValue}
getAriaValueText={valueLabelFormat}
valueLabelFormat={valueLabelFormat}
onChange={handleChange}
valueLabelDisplay="auto"
aria-labelledby="non-linear-slider"
/>