Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
material-icons
Advanced tools
Material design icon font and CSS framework for self hosting the icons.
Install the latest version using:
npm install material-icons@latest
Fonts are located in the iconfont
directory and can be imported using CSS:
<link href="/path/to/material-icons/iconfont/material-icons.css" rel="stylesheet">
To display an icon, use:
<span class="material-icons">pie_chart</span>
To display outlined, round, sharp and two-tone icons, use:
<span class="material-icons-outlined">pie_chart</span>
<span class="material-icons-round">pie_chart</span>
<span class="material-icons-sharp">pie_chart</span>
<span class="material-icons-two-tone">pie_chart</span>
For more advanced usage, see:
If you are using webpack, Create React App or Vue CLI, import CSS in src/index.js
or src/main.js
:
import 'material-icons/iconfont/material-icons.css';
If you are using Angular CLI, import CSS in src/styles.css
:
@import 'material-icons/iconfont/material-icons.css';
mat-icon
To display an icon, use:
<mat-icon>pie_chart</mat-icon>
To display outlined, round, sharp and two-tone icons, use:
<mat-icon fontSet="material-icons-outlined">pie_chart</mat-icon>
<mat-icon fontSet="material-icons-round">pie_chart</mat-icon>
<mat-icon fontSet="material-icons-sharp">pie_chart</mat-icon>
<mat-icon fontSet="material-icons-two-tone">pie_chart</mat-icon>
To customize the build, import Sass instead of CSS:
@import 'material-icons/iconfont/material-icons.scss';
Available Sass variables:
$material-icons-font-path: './' !default;
$material-icons-font-size: 24px !default;
$material-icons-font-display: block !default;
If you are getting errors with webpack or Vue CLI, add this line before importing above Sass file:
$material-icons-font-path: '~material-icons/iconfont/';
Note: This method is not recommended as it requires an additional large CSS file.
Alternatively, you may use CSS classes to display icons by importing additional CSS:
<link href="/path/to/material-icons/css/material-icons.css" rel="stylesheet">
To display an icon, use:
<span class="material-icons mi-pie-chart"></span>
To display outlined, round, sharp and two-tone icons, use:
<span class="material-icons-outlined mi-pie-chart"></span>
<span class="material-icons-round mi-pie-chart"></span>
<span class="material-icons-sharp mi-pie-chart"></span>
<span class="material-icons-two-tone mi-pie-chart"></span>
For more advanced usage, see:
If you are using webpack, Create React App or Vue CLI, import CSS in src/index.js
or src/main.js
:
import 'material-icons/css/material-icons.css';
If you are using Angular CLI, import CSS in src/styles.css
:
@import 'material-icons/css/material-icons.css';
mat-icon
To display an icon, use:
<mat-icon fontIcon="mi-pie-chart"></mat-icon>
To display outlined, round, sharp and two-tone icons, use:
<mat-icon fontSet="material-icons-outlined" fontIcon="mi-pie-chart"></mat-icon>
<mat-icon fontSet="material-icons-round" fontIcon="mi-pie-chart"></mat-icon>
<mat-icon fontSet="material-icons-sharp" fontIcon="mi-pie-chart"></mat-icon>
<mat-icon fontSet="material-icons-two-tone" fontIcon="mi-pie-chart"></mat-icon>
To customize the build, import Sass instead of CSS:
@import 'material-icons/css/material-icons.scss';
Available Sass variables:
$material-icons-css-prefix: 'mi' !default;
$material-icons-css-search: '_' !default;
$material-icons-css-replace: '-' !default; // Replaces '_' with '-' in CSS classes
See demo.
Material design icons are created by Google.
We have made these icons available for you to incorporate into your products under the Apache License Version 2.0. Feel free to remix and re-share these icons and documentation in your products. We'd love attribution in your app's about screen, but it's not required. The only thing we ask is that you not re-sell these icons.
FAQs
Latest icon fonts and CSS for self-hosting material design icons.
The npm package material-icons receives a total of 151,680 weekly downloads. As such, material-icons popularity was classified as popular.
We found that material-icons demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.