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.
Note: This package contains only the icon font and required CSS. So it is considerably small compared to the official
material-design-icons
package and easy to install.
Download the latest release or install using npm:
npm install material-icons
Font files are present in the iconfont
directory and can be imported using CSS.
Import CSS:
<link rel="stylesheet" href="/path/to/material-icons/iconfont/material-icons.css">
To display an icon, use:
<span class="material-icons">face</span>
To customize the build, import Sass instead of CSS:
@import 'material-icons/iconfont/material-icons.scss';
If you are using webpack sass-loader, use:
$material-icons-font-path: '~material-icons/iconfont/';
@import '~material-icons/iconfont/material-icons.scss';
Available Sass variables:
$material-icons-codepoints: () !default; /* Sass map of icon names and codepoints */
$material-icons-font-path: '' !default;
$material-icons-font-name: 'MaterialIcons-Regular' !default;
$material-icons-font-size: 24px !default;
$material-icons-font-family: 'Material Icons' !default;
Available Sass mixins:
.material-icons {
@include material-icons();
}
Alternatively, you may use CSS classes to display an icon.
Note: This method is not recommended as it requires a large CSS file to be imported in addition to above files.
Import CSS:
<link rel="stylesheet" href="/path/to/material-icons/css/material-icons.min.css">
To display an icon, use:
<span class="mi mi-face"></span>
To customize the build, import Sass instead of CSS:
@import 'material-icons/css/material-icons.scss';
If you are using webpack sass-loader, use:
@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; /* To replace '_' with '-' in CSS class names */
Available Sass mixins:
.mi-face {
@include material-icon('face');
}
FAQs
Latest icon fonts and CSS for self-hosting material design icons.
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.