aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/toast/toast.component.html
blob: dccf869d8fdd6c0fff755a4e9c2205d496d0fffa (plain) (blame)
1
2
3
4
5
6
7
<div class="toast" [ngClass]="ToastType[type].toLowerCase()" #toastDiv>
    <span>{{this.message}}</span>
    <a *ngIf="this.action" (click)="this.action.onAction()">{{this.action.label}}</a>
    <button (click)="hide()">
        <span class="icon">close</span>
    </button>
</div>