Files
wgenerator/src/app/widget-modules/components/button/button.component.html
2026-04-27 22:34:35 +02:00

9 lines
218 B
HTML

<button [disabled]="disabled">
@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>