7f4e98294f5034fc896a1fd562dadf57299cf6a4
[vid.git] /
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;
14   @Input() subtitle: string;
15   @Input() iconPath: string;
16
17   @Input() titleClass: string="";
18   @Input() subtitleClass: string="";
19   @Input() iconClass: string="";
20
21 }
22
23