// Angular Core
import { Component, Input, OnInit } from '@angular/core';

@Component({
  standalone: false,
  selector: 'app-loading-status',
  templateUrl: './loading-status.component.html',
  styleUrls: ['./loading-status.component.scss']
})
export class LoadingStatusComponent implements OnInit {

  @Input() loaderFlag!: boolean;
  @Input() customVerbiage!: boolean;
  @Input() customClass = '';

  constructor() { }

  ngOnInit(): void {
  }

}
