common-ui/src/lib/buttons/icon-button/icon-button.component.html

17 lines
497 B
HTML

<button
(click)="!disabled && action.emit($event)"
[class.has-icon]="!!icon"
[class.overlay]="showDot"
[class.primary]="type === iconButtonTypes.primary"
[class.show-bg]="type === iconButtonTypes.dark"
[class.help]="type === iconButtonTypes.help"
[disabled]="disabled"
mat-button
type="button"
[id]="id ? id : buttonId"
>
<mat-icon *ngIf="icon" [svgIcon]="icon"></mat-icon>
<span>{{ label }}</span>
</button>
<div *ngIf="showDot" class="dot"></div>