blob: fba99ca8b5fe1513056215374841fada5b3bc958 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<div class="sdc-element-icon">
<svg-icon [ngClass]="{'service-proxy': elementType === 'ServiceProxy'}"
[type]="elementIcon.type"
[name]="elementIcon.iconName"
[mode]="elementIcon.color"
[size]="elementIcon.size"
[backgroundShape]="elementIcon.shape"
[backgroundColor]="elementIcon.backgroundColor"></svg-icon>
<span *ngIf="uncertified" class="uncertified-icon-wapper">
<svg-icon class="element-non-certified" [name]="'alert-circle'" [mode]="'error'"></svg-icon>
</span>
</div>
|