Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | import {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 | |
| 10 | export class NoContentMessageAndIconComponent { |
| 11 | constructor() {} |
| 12 | |
| 13 | @Input() title: string; |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 14 | @Input() title2?: string; |
Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 15 | @Input() subtitle: string; |
| 16 | @Input() iconPath: string; |
| 17 | |
| 18 | @Input() titleClass: string=""; |
| 19 | @Input() subtitleClass: string=""; |
| 20 | @Input() iconClass: string=""; |
| 21 | |
| 22 | } |
| 23 | |
| 24 | |