33 lines
779 B
JavaScript
33 lines
779 B
JavaScript
|
|
import { Box, handleBreakpoints } from '@mui/system';
|
||
|
|
import { createTheme, ThemeProvider } from '@mui/material/styles';
|
||
|
|
|
||
|
|
const customTheme = createTheme({
|
||
|
|
unstable_sxConfig: {
|
||
|
|
size: {
|
||
|
|
style: (props) => {
|
||
|
|
const { size, theme } = props;
|
||
|
|
|
||
|
|
const styleFromPropValue = (propValueFinal) => {
|
||
|
|
const value = theme.spacing(propValueFinal);
|
||
|
|
|
||
|
|
return {
|
||
|
|
width: value,
|
||
|
|
height: value,
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
// Adding support for the breakpoints syntax
|
||
|
|
return handleBreakpoints(props, size, styleFromPropValue);
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export default function ExtendTheSxProp() {
|
||
|
|
return (
|
||
|
|
<ThemeProvider theme={customTheme}>
|
||
|
|
<Box sx={{ size: 10, border: 1 }} />
|
||
|
|
</ThemeProvider>
|
||
|
|
);
|
||
|
|
}
|