// material-ui import Grid from '@mui/material/Grid'; import Slider from '@mui/material/Slider'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; // project imports import useConfig from 'hooks/useConfig'; // concat 'px' function valueText(value) { return `${value}px`; } export default function BorderRadius() { const { state: { borderRadius }, setField } = useConfig(); const handleChange = (_event, newValue) => { setField('borderRadius', newValue); }; return ( BORDER RADIUS 4px ({ '& .MuiSlider-valueLabel': { color: 'primary.light' } })} /> 24px ); }