MenuIcon not found in material-ui/icons

The problem is with how you are importing the icon. You can fix it by either changing to a named import or provide the full path to the icon.

import MenuIcon from "@material-ui/icons/Menu";
import { Menu as MenuIcon } from "@material-ui/icons";

Leave a Comment