import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { BcacIconComponent } from './bcac-icon.component'; @NgModule({ declarations: [BcacIconComponent], imports: [ CommonModule, NgZorroAntdModule ], exports: [ BcacIconComponent ] }) export class BcacIconModule { }