Makestyles Is No Longer Exported From @Mui/Material/Styles
Octet3290 opened this issue · 1 comments
Octet3290 commented
Makestyles Is No Longer Exported From @Mui/Material/Styles
Cyborg117 commented
Just use styled() from '@mui/material',
ex If you want to Style a Box Mui Component, you should do something like this
const StyledBox = styled(Box)({
backgroundColor : "#14161a",
color : "white",
minHeight : "200vh"
})