2017-12-29 17:05:52 +00:00
|
|
|
<div class="core-empty-box" [class.core-empty-box-inline]="!image && !icon">
|
|
|
|
<div class="core-empty-box-content" padding>
|
2017-12-12 09:49:13 +00:00
|
|
|
<img *ngIf="image && !icon" [src]="image" role="presentation">
|
2017-12-29 17:05:52 +00:00
|
|
|
<ion-icon *ngIf="icon" [name]="icon"></ion-icon>
|
|
|
|
<p *ngIf="message" [class.padding-top]="image || icon">{{ message }}</p>
|
2017-12-12 09:49:13 +00:00
|
|
|
<ng-content></ng-content>
|
|
|
|
</div>
|
|
|
|
</div>
|