1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-18 07:25:15 +02:00
bitwarden-browser/angular/src/components/icon.component.html

5 lines
219 B
HTML
Raw Normal View History

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