Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 754 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 754 Bytes

@gewd/mat-utils

Collection of functions around Angular Material Components and some other utils

NPM Version Package Size

@gewd/mat-utils/material-icons

Shortcut to register the material icons

@NgModule({
  declarations: [AppComponent],
  imports: [
    RegisterIconsModule.register({
      pathToIcons: './assets/material_icons',
      iconArray: [
        'add',
        'art_track',
      ]
    }),
    MatIconModule
  ]
})