1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-21 18:53:32 +00:00
Files
jslib/src/angular/components/icon.component.html
Kyle Spearrin 1044a8759a hide icon
2019-04-01 23:09:02 -04:00

5 lines
219 B
HTML

<div class="icon" aria-hidden="true">
<img [src]="image" appFallbackSrc="{{fallbackImage}}" *ngIf="imageEnabled && image" alt="" />
<i class="fa fa-fw fa-lg {{icon}}" *ngIf="!imageEnabled || !image"></i>
</div>