material ui icon nextjs
// First install materil-ui core:
npm install @material-ui/core
// Then install material-ui icons that provides
// the Google Material icons packaged as a set of React components.
npm install @material-ui/icons
// Import the icon like this and use it:
import NameOfTheIcon from '@material-ui/icons/NameOfTheIcon';
...
|