Files
wgenerator/src/app/widget-modules/components/button/button.component.html
2026-03-11 16:18:36 +01:00

11 lines
253 B
HTML

<button [disabled]="disabled" mat-button>
@if (icon) {
<span
><fa-icon [icon]="icon"></fa-icon><span class="content">&nbsp;</span></span
>
}
<span class="button-content">
<ng-content></ng-content>
</span>
</button>