21 lines
785 B
HTML
21 lines
785 B
HTML
<div [matTooltipClass]="tooltipClass || ''" [matTooltipPosition]="tooltipPosition" [matTooltip]="tooltip || ''">
|
|
<button
|
|
(click)="performAction($event)"
|
|
[class.dark-bg]="type === _circleButtonTypes.dark"
|
|
[class.grey-selected]="greySelected"
|
|
[class.help]="type === _circleButtonTypes.help"
|
|
[class.overlay]="showDot"
|
|
[class.primary]="type === _circleButtonTypes.primary"
|
|
[class.warn]="type === _circleButtonTypes.warn"
|
|
[disabled]="disabled"
|
|
[id]="buttonId"
|
|
[stopPropagation]="action.observed && !_hasRouterLink"
|
|
[type]="isSubmit ? 'submit' : 'button'"
|
|
mat-icon-button
|
|
>
|
|
<mat-icon [svgIcon]="icon"></mat-icon>
|
|
</button>
|
|
|
|
<div *ngIf="showDot" class="dot"></div>
|
|
</div>
|