blob: da66f3f1763fd8fc31a095cbe61e7ac5c77a356b [file] [log] [blame]
import {Component, Input} from '@angular/core';
@Component({
selector: 'no-content-message-and-icon',
templateUrl: './no-content-message-and-icon.component.html',
styleUrls: ['./no-content-message-and-icon.component.scss']
})
export class NoContentMessageAndIconComponent {
constructor() {}
@Input() title: string;
@Input() title2?: string;
@Input() subtitle: string;
@Input() iconPath: string;
@Input() titleClass: string="";
@Input() subtitleClass: string="";
@Input() iconClass: string="";
}