1 import {Component, Input} from '@angular/core';
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']
10 export class NoContentMessageAndIconComponent {
13 @Input() title: string;
14 @Input() subtitle: string;
15 @Input() iconPath: string;
17 @Input() titleClass: string="";
18 @Input() subtitleClass: string="";
19 @Input() iconClass: string="";