Could not find any related question in StackOverflow.
So, in box component, sx prop is getting transformed, say from
<Box
sx={{
display: 'flex',
flexDirection: 'column',
height: '100%'
}}
>
to
<div class="MuiBox-root MuiBox-root-371"/>
but its not transforming in other components like ListSubheader
<ListSubheader
disableGutters
disableSticky
sx={{
color: 'text.primary',
fontSize: '0.75rem',
lineHeight: 2.5,
fontWeight: 700,
textTransform: 'uppercase'
}}
>
is transforming to
<li class="MuiListSubheader-root" sx="[object Object]">Manage</li>
I am using create-react-app with Material-UI 5, this is my package.json
For some reason, my sx prop is not getting transformed to a class name. a screenshot of that
Any hints what configuration might be incorrect? Not sure, what all information to provide.

