30 lines
743 B
HTML
30 lines
743 B
HTML
<div
|
|
[ngStyle]="{
|
|
'padding-top': verticalPadding + 'px',
|
|
'padding-left': horizontalPadding + 'px',
|
|
'padding-right': horizontalPadding + 'px',
|
|
}"
|
|
class="empty-state"
|
|
>
|
|
@if (icon) {
|
|
<mat-icon [svgIcon]="icon"></mat-icon>
|
|
}
|
|
|
|
<div class="ng-content-wrapper heading-l">
|
|
<ng-content></ng-content>
|
|
</div>
|
|
|
|
<div [innerHTML]="text" class="heading-l"></div>
|
|
|
|
@if (showButton) {
|
|
<iqser-icon-button
|
|
(action)="action.emit()"
|
|
[buttonId]="buttonId"
|
|
[icon]="buttonIcon"
|
|
[attr.help-mode-key]="helpModeKey"
|
|
[label]="buttonLabel"
|
|
[type]="iconButtonTypes.primary"
|
|
></iqser-icon-button>
|
|
}
|
|
</div>
|