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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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>