How to fix the:
can't bind to 'nzType' since it isn't a known property of 'i'?
here's the code
index.component.html
<nz-header>
<i class="trigger" nz-icon [nzType]="isCollapsed ? 'menu-unfold' : 'menu-fold'" (click)="isCollapsed = !isCollapsed"></i>
</nz-header>
index.component.ts
isCollapsed = false;
index.module.ts
@NgModule({
declarations: [
ShellComponent
],
imports: [
CommonModule,
NzLayoutModule,
NzBreadCrumbModule,
NzDropDownModule,
]
})
You need to import
NzIconModule
.Step 1: Dynamic importing via angular.json
Step 2: Add Icons in Lazy-loaded Modules
Sample Solution on StackBlitz
Note:
Reference(s)