Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / components / ui / sdc-element-icon / sdc-element-icon.component.html
1 <div class="sdc-element-icon">
2     <svg-icon [ngClass]="{'service-proxy': elementType === 'ServiceProxy'}"
3             [type]="elementIcon.type"
4             [name]="elementIcon.iconName"
5             [mode]="elementIcon.color"
6             [size]="elementIcon.size"
7             [backgroundShape]="elementIcon.shape"
8             [backgroundColor]="elementIcon.backgroundColor"></svg-icon>
9     <span *ngIf="uncertified" class="uncertified-icon-wapper">
10         <svg-icon class="element-non-certified" [name]="'alert-circle'" [mode]="'error'"></svg-icon>
11     </span>
12 </div>