15 lines
522 B
HTML
15 lines
522 B
HTML
<button [class.overlay]="showDot" mat-button>
|
|
<ng-container *ngIf="icon; else initialsAvatar">
|
|
<mat-icon [svgIcon]="icon" class="mr-8"></mat-icon>
|
|
{{ userService.currentUser$ | async | name }}
|
|
</ng-container>
|
|
|
|
<mat-icon *ngIf="showDropdownArrow" svgIcon="iqser:arrow-down"></mat-icon>
|
|
</button>
|
|
|
|
<div *ngIf="showDot" class="dot"></div>
|
|
|
|
<ng-template #initialsAvatar>
|
|
<iqser-initials-avatar [user]="userService.currentUser$ | async" [withName]="true"></iqser-initials-avatar>
|
|
</ng-template>
|