// with npm
npm install @material-ui/icons
// with yarn
yarn add @material-ui/icons
npm install @material-ui/icons
// with npm
npm install @material-ui/icons
// with yarn
yarn add @material-ui/icons
These components use the Material-UI SvgIcon component to render the SVG path for each icon, and so a have a peer-dependency on the next release of Material-UI.
// with npm
npm install @material-ui/core
// with yarn
yarn add @material-ui/core
// with npm
npm install @emotion/react @emotion/styled @mui/icons-material @mui/material @mui/utils
// with yarn
yarn add @emotion/react @emotion/styled @mui/icons-material @mui/material @mui/utils
// Version 5.x.x for Material-UI Icons
// NPM
npm install @mui/icons-material
// YARN
yarn add @mui/icons-material
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<Icon>add_circle</Icon>
<Icon color="primary">add_circle</Icon>
<Icon color="secondary">add_circle</Icon>
<Icon style={{ color: green[500] }}>add_circle</Icon>
<Icon fontSize="small">add_circle</Icon>
<Icon style={{ fontSize: 30 }}>add_circle</Icon>