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

@Component({
  standalone: false,
  selector: 'app-hello-sign-thank-you',
  templateUrl: './hello-sign-thank-you.component.html',
  styleUrls: ['./hello-sign-thank-you.component.scss']
})
export class HelloSignThankYouComponent implements OnInit {

  @Input() helloSignThankYouClickOk!: () => void;
  @Input() redirectSuppliers!: () => void;
  @Input() customerSupportContact!: any;
  @Input() helloSignThankYouModal!: any;
  imgUrl: string = environment.imageUrl;

  constructor() { }

  ngOnInit(): void {
  }

}
