17 lines
626 B
HTML
17 lines
626 B
HTML
<div [matTooltipClass]="tooltipClass" [matTooltipPosition]="tooltipPosition" [matTooltip]="tooltip">
|
|
<button
|
|
(click)="performAction($event)"
|
|
[class.dark-bg]="type === circleButtonTypes.dark"
|
|
[class.overlay]="showDot"
|
|
[class.primary]="type === circleButtonTypes.primary"
|
|
[class.warn]="type === circleButtonTypes.warn"
|
|
[class.grey-selected]="greySelected"
|
|
[disabled]="disabled"
|
|
[type]="isSubmit ? 'submit' : 'button'"
|
|
mat-icon-button
|
|
>
|
|
<mat-icon [svgIcon]="icon"></mat-icon>
|
|
</button>
|
|
<div *ngIf="showDot" class="dot"></div>
|
|
</div>
|