import { Component, Inject, ElementRef, OnInit } from '@angular/core'; import { WptDialogRef, WPT_DIALOG_DATA } from '@arrow/warpaint/dialog'; @Component({ selector: 'bom-alert', templateUrl: './alert.component.html', styleUrls: ['./alert.component.scss'] }) export class AlertComponent implements OnInit { public defaultTitle: string = 'BOM Tool'; constructor( public dialogRef: WptDialogRef, @Inject(WPT_DIALOG_DATA) public data: any, private el: ElementRef ) {} ngOnInit(): void { this.el.nativeElement.className = this.data.style; } }