0.1.1 • Published 6 years ago

mat-icon-import v0.1.1

Weekly downloads
161
License
MIT
Repository
github
Last release
6 years ago

Import only used material (and custom) icons in Angular

Build Status

Installation

npm i mat-icon-import
#or
yarn add mat-icon-import

Usage

At first download the icons you need from here in SVG 24px format (default). The icon names are of type baseline-[key]-24px.svg. You will have to use the key when importing this lib.

Import the IconImportModule in your application module and call the forRoot() function with two parameters. At first the array of icon keys, e.g. (account_circle, add or whatever you want). The secont parameter is the path where you store the icons in your assets folder.

import { IconImportModule } from 'mat-icon-import';

@NgModule({
  imports: [ IconsModule.forRoot(['account_circle'], './assets/mat-icons') ]
})
export class AppModule {}

Register the icons where you need them. E.g. in the AppComponent to make it available in the complete application.

import { IconImportService } from 'mat-icon-import';

@Component({
  ...
})
export class AppComponent {
  constructor (private iconService: IconImportService) {
    this.iconService.register();
  }
}

Use the registered icons with

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

Don't forget to include the MatIconModule from @angular/material.

Get in contact

0.1.1

6 years ago

0.1.0

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago