aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/no-content-message-and-icon/no-content-message-and-icon.component.ts
blob: 7f4e98294f5034fc896a1fd562dadf57299cf6a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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() subtitle: string;
  @Input() iconPath: string;

  @Input() titleClass: string="";
  @Input() subtitleClass: string="";
  @Input() iconClass: string="";

}