1.0.3 • Published 6 years ago

angular-material-icons-for-ant-design v1.0.3

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

Angular Material Icons for Ant Design

This package using icons from Material Design Icons repository, which is being maintained by Google.

  1. Setting up

    import {MatAccessibility} from 'angular-material-icons-for-ant-design';
    import { Component } from '@angular/core';
    import { NzIconService } from 'ng-zorro-antd';
    
    @Component({
      selector: 'app-root',
      templateUrl: './app.component.html',
      styleUrls: ['./app.component.scss'],
      providers: [
        NzIconService,
      ],
    })
    export class AppComponent {
      title = 'Angular Material Icons';
    
      constructor(private iconService: NzIconService) {
        this.iconService.addIcon(
          MatAccessibility,
        );
      }
    }
  2. Usage

    <i nz-icon nzType="mat_accessibility"></i>
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago