Icons Material
@mui/icons-material
Material Design icons distributed as SVG React components.
Icons
react
react-component
mui
material-ui
material design
icons
@mui/icons-material
javascript
npm
frontend
Stars
731
Weekly
6.6M
Open issues
9
Bundle
~15 kB
Installation
npm install @mui/icons-materialCode example
import Button from "@mui/material/Button";
import Stack from "@mui/material/Stack";
export function Example() {
return (
<Stack direction="row" spacing={2}>
<Button variant="contained">Primary</Button>
<Button variant="outlined">Secondary</Button>
</Stack>
);
}Pros & cons
Pros
- Actively maintained by MUI Team
- 6.6M weekly downloads. Battle tested
- First-class TypeScript definitions
- MIT licensed
Considerations
- Adds roughly ~15 kB to your bundle
- Needs client-only rendering in SSR frameworks
- Not supported in React Native
- 9 open issues on GitHub