You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
604 B

import {
ChangeDetectionStrategy,
Component,
EventEmitter,
Input,
OnInit,
Output
} from '@angular/core';
@Component({
host: { class: 'justify-content-center' },
selector: 'gf-dialog-footer',
changeDetection: ChangeDetectionStrategy.OnPush,
templateUrl: './dialog-footer.component.html',
styleUrls: ['./dialog-footer.component.scss']
})
export class DialogFooterComponent implements OnInit {
@Input() deviceType: string;
@Output() closeButtonClicked = new EventEmitter<void>();
public ngOnInit() {}
public onClickCloseButton() {
this.closeButtonClicked.emit();
}
}