notify-angular
Version:
Simple yet customizable notifications for Angular2+, well suited in combination with Material Design
18 lines (15 loc) • 564 B
HTML
<div class="notification-wrapper"
*ngIf="notification"
[]="notification.position.bottom"
[]="notification.position.top"
[]="notification.position.right"
[]="notification.position.left"
(click)="removeNotification()">
<div class="notification"
[]="hidden"
[]="notification.color"
[]="notification.background"
[]="{'with-shadow': notification.withShadow}">
{{notification.message}}
</div>
</div>