Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 8, 2024 via pnpm

@mui/icons-material 5.14.9

Material Design icons distributed as SVG React components.
Package summary
Share
0
issues
2
licenses
37
MIT
1
BSD-3-Clause
Package created
2 Sep 2021
Version published
13 Sep 2023
Maintainers
9
Total deps
38
Direct deps
4
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
37 Packages, Including:
@babel/runtime@7.24.5
@emotion/cache@11.11.0
@emotion/memoize@0.8.1
@emotion/sheet@1.2.2
@emotion/utils@1.2.1
@emotion/weak-memoize@0.3.1
@floating-ui/core@1.6.1
@floating-ui/dom@1.6.5
@floating-ui/react-dom@2.0.9
@floating-ui/utils@0.2.2
@mui/base@5.0.0-beta.40
@mui/core-downloads-tracker@5.15.17
@mui/icons-material@5.14.9
@mui/material@5.15.17
@mui/private-theming@5.15.14
@mui/styled-engine@5.15.14
@mui/system@5.15.15
@mui/types@7.2.14
@mui/utils@5.15.14
@popperjs/core@2.11.8
@types/prop-types@15.7.12
@types/react-transition-group@4.4.10
@types/react@18.3.1
clsx@2.1.1
csstype@3.1.3
dom-helpers@5.2.1
js-tokens@4.0.0
loose-envify@1.4.0
object-assign@4.1.1
prop-types@15.8.1
react-dom@18.3.1
react-is@16.13.1
react-is@18.3.1
react@18.3.1
regenerator-runtime@0.14.1
scheduler@0.23.2
stylis@4.2.0

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
react-transition-group@4.4.5
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

4
All Dependencies CSV
β“˜ This is a list of @mui/icons-material 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
@babel/runtime7.24.5256.12 kBMIT
prod
@mui/material5.15.1710.3 MBMIT
prod peer
@types/react18.3.1427.28 kBMIT
prod peer
react18.3.1310.65 kBMIT
prod peer

Visualizations

Frequently Asked Questions

What does @mui/icons-material do?

@mui/icons-material is a package that provides Google Material Icons as SVG React components. These icons are converted to SvgIcon components to render SVG paths for each icon, allowing you to incorporate these easily recognizable and aesthetically pleasing icons into your React projects.

How do you use @mui/icons-material?

You can install @mui/icons-material into your project directory using npm. Here's an example of how you can use it:

Step 1: Install the package using npm:

npm install @mui/icons-material

If you're not yet using Material UI in your project, you'll need to install it:

npm install @mui/material

Step 2: Import your desired icons into your React component:

import React from 'react';
import DeleteIcon from '@mui/icons-material/Delete';

function ExampleComponent() {
  return (
    <div>
      <DeleteIcon />
    </div>
  );
}

export default ExampleComponent;

In the above code, we imported a delete icon from @mui/icons-material and used it in our ExampleComponent.

Where are the @mui/icons-material docs?

The documentation for @mui/icons-material, including details on SvgIcon and a search feature for the Material Design icons, can be found on the MUI's official website. Click here for the SvgIcon documentation and here for the Material Design icons search.