Vmeda.Online/src/addon/notifications/components/actions/addon-notifications-actions.html
2018-08-22 13:17:17 +02:00

9 lines
344 B
HTML

<ion-row *ngIf="actions && actions.length > 0" justify-content-around>
<ion-col *ngFor="let action of actions">
<button ion-button icon-left clear small block (click)="action.action()">
<ion-icon name="{{action.icon}}"></ion-icon>
{{ action.message | translate }}
</button>
</ion-col>
</ion-row>