Noel De Martin 0ca6377b52 MOBILE-4470 core: Refactor mod-icon to use signals
This change is necessary because some icons weren't updated properly inside of components using OnPush (e.g. course-storage page).
2024-05-28 12:27:52 +02:00

7 lines
433 B
HTML

<ng-container *ngIf="loaded() && !svgIcon()">
<img *ngIf="!isLocalUrl()" [url]="iconUrl()" core-external-content alt="" [component]="linkIconWithComponent() ? modname : null"
[componentId]="linkIconWithComponent() ? componentId : null" (error)="loadFallbackIcon()">
<img *ngIf="isLocalUrl()" [src]="iconUrl()" (error)="loadFallbackIcon()" alt="">
</ng-container>
<div *ngIf="svgIcon()" [innerHTML]="svgIcon()"></div>