Search code examples
reactjsmaterial-ui

MenuIcon not found in MUI


I'm trying to implement a appbar from mui which is include a MenuIcon. I've tried import MenuIcon from '@mui/icons-material/Menu'; from mui documentation. But it is still showing not found. so I was hoping someone could tell me what I'm missing. Thanks in advance!


Solution

  • This error occurs if you installed package with MUI icons before you installed MUI component library. Run this command:

    npm install @mui/material @emotion/react @emotion/styled

    and it should help.