core/application/app-icon.component.ts
| host | { |
| selector | c8y-app-icon |
| standalone | true |
| imports |
NgIf
|
| templateUrl | ./app-icon.component.html |
ApplicationModule
ApplicationAccessSubListComponent
ApplicationCardComponent
ApplicationPropertiesComponent
ApplyBrandingToAppModalComponent
AppsToUpdateRemotesSelectComponent
AppSwitcherInlineComponent
DataSharingModalComponent
DefaultSubscriptionsComponent
DuplicateApplicationListComponent
HeaderBarComponent
NavigatorTopComponent
QuickLinksWidgetConfigListComponent
QuickLinksWidgetViewComponent
<ng-container *ngIf="model.showIcon; else noIcon">
<i
[ngStyle]="model.iconStyle"
*ngIf="!model.configIcon"
[ngClass]="model.iconClass"
></i>
<i
[c8yIcon]="model.configIcon"
*ngIf="model.configIcon"
></i>
</ng-container>
<ng-template #noIcon>
<span class="app-noicon">{{ model.appNameAbbr }}</span>
</ng-template>