blob: da66f3f1763fd8fc31a095cbe61e7ac5c77a356b [file] [log] [blame]
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03001import {Component, Input} from '@angular/core';
2
3@Component({
4 selector: 'no-content-message-and-icon',
5 templateUrl: './no-content-message-and-icon.component.html',
6 styleUrls: ['./no-content-message-and-icon.component.scss']
7})
8
9
10export class NoContentMessageAndIconComponent {
11 constructor() {}
12
13 @Input() title: string;
Ittay Stern6f900cc2018-08-29 17:01:32 +030014 @Input() title2?: string;
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030015 @Input() subtitle: string;
16 @Input() iconPath: string;
17
18 @Input() titleClass: string="";
19 @Input() subtitleClass: string="";
20 @Input() iconClass: string="";
21
22}
23
24