mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
16 lines
457 B
HTML
16 lines
457 B
HTML
<span class="tw-relative">
|
|
<span [ngClass]="{ 'tw-invisible': showLoadingStyle() }">
|
|
<i class="bwi" [ngClass]="iconClass" aria-hidden="true"></i>
|
|
</span>
|
|
<span
|
|
class="tw-absolute tw-inset-0 tw-flex tw-items-center tw-justify-center"
|
|
[ngClass]="{ 'tw-invisible': !showLoadingStyle() }"
|
|
>
|
|
<i
|
|
class="bwi bwi-spinner bwi-spin"
|
|
aria-hidden="true"
|
|
[ngClass]="{ 'bwi-lg': size === 'default' }"
|
|
></i>
|
|
</span>
|
|
</span>
|