Files
clients/src/angular/components/icon.component.html

5 lines
200 B
HTML
Raw Normal View History

2018-04-04 17:04:31 -04:00
<div class="icon">
<img [src]="image" appFallbackSrc="{{fallbackImage}}" *ngIf="imageEnabled && image" alt="" />
<i class="fa fa-fw fa-lg {{icon}}" *ngIf="!imageEnabled || !image"></i>
</div>