blob: da66f3f1763fd8fc31a095cbe61e7ac5c77a356b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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="";
}
|