mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
8 lines
211 B
HTML
8 lines
211 B
HTML
<ng-container *ngIf="isCustom; else: default">
|
|
<mat-icon [color]="color" [svgIcon]="value"></mat-icon>
|
|
</ng-container>
|
|
|
|
<ng-template #default>
|
|
<mat-icon [color]="color">{{ value }}</mat-icon>
|
|
</ng-template>
|