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

@Component({
  standalone: false,
  selector: 'app-credithold',
  templateUrl: './credithold.component.html',
  styleUrls: ['./credithold.component.scss']
})
export class CreditholdComponent implements OnInit {
  @Input() preventCheckout_supplier: any[] = []
  @Input() creditHold_supplier: any[] = []
  @Input() preventCheckout!: boolean
  @Input() title!: string
  @Input() creditHoldPopContinue!: () => void;
  @Input() creditHoldPopClose!: () => void;

  constructor() { }

  ngOnInit(): void {
  }

}
