Adding Font Awesome 5 icon from Angular 5 component
问题 I am using Font Awesome 5 (angular2-fontawesome - package) with Angular 5. What I am trying to do is to import fa icon from component. Html: <mat-list> <mat-list-item><a [routerLink]="['/']" fragment="intro-text" [innerHTML]="introText"> {{introText}} </a></mat-list-item> ... </mat-list> Component: introText = "Welcome"; @HostListener("window:resize", ["$event"]) onResize(event) { this.introText = window.innerWidth < 1080 ? '<i fa class="fas fa-home"></i> <h1>1</h1>' : "Welcome"; } When I am