🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@cognizone/material-icons

Package Overview
Dependencies
Maintainers
3
Versions
255
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cognizone/material-icons

This library was generated with [Nx](https://nx.dev).

latest
Source
npmnpm
Version
6.3.0
Version published
Weekly downloads
449
-50.5%
Maintainers
3
Weekly downloads
 
Created
Source

material-icons

This library was generated with Nx.

Running unit tests

Run nx test material-icons to execute the unit tests.

Installation

First, you have to change the assets part of your angular.json file with the "glob" part here:

"assets": [
  "src/favicon.ico",
  "src/assets",
  {
    "glob": "**/*",
    "input": "node_modules/@material-icons/svg/svg",
    "output": "./assets/material-icons/"
  }
],

You'll also have to install the svg lib as well npm i @material-icons/svg. Then you just need to add the module to your app/core module

@NgModule({
  imports: [CognizoneMaterialIconsModule.forRoot({})]
})
export class CoreModule {}

Usage

With this, icons have to use follow the svg method, so this type of usage

<mat-icon>print</mat-icon>

should be replaced with

<mat-icon svgIcon="print"></mat-icon>

FAQs

Package last updated on 23 Oct 2025

Did you know?

Socket

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.

Install

Related posts