The mdi-material-ui package provides a staggering number of icons, available for you to use in your Material-UI applications in the same way as you would use the built-in icons.
Installing more icons
How to do it...
The first step is to install the package and make it available in your project:
npm install --save mdi-material-ui
Now you're ready to import icons from this package and use them:
import React, { Fragment } from 'react';
import { withStyles } from '@material-ui/core/styles';
import Apple from 'mdi-material-ui/Apple';
import Facebook from 'mdi-material-ui/Facebook';
import Google from 'mdi-material-ui/Google';
import Hulu from 'mdi-material-ui/Hulu';
import...