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

5 lines
219 B
HTML
Raw Normal View History

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