blob: fbda8814ae566435cc8d185bb7d04ab6f3e170e4 [file] [log] [blame]
Israel Lavi1994c982018-05-21 17:42:00 +03001import { Component, Input } from "@angular/core";
2
3@Component({
4 selector: "innernotif-content",
5 template: `
6 <div>
7 <h4>Custom Notification</h4>
8 <div>
9 <span>{{notifyTitle}}</span>
10 </div>
11 <div>
12 <span>{{notifyText}}</span>
13 </div>
14 </div>
15`
16})
Israel Lavib2a3ace2018-08-07 10:54:17 +030017
Israel Lavi1994c982018-05-21 17:42:00 +030018export class InnerNotifContent {
19
Israel Lavib2a3ace2018-08-07 10:54:17 +030020 @Input() notifyTitle: string;
21 @Input() notifyText: string;
Israel Lavi1994c982018-05-21 17:42:00 +030022}