import { Component, Input, OnInit } from '@angular/core' @Component({ selector: 'my-delete-button', styleUrls: [ './button.component.scss' ], templateUrl: './delete-button.component.html' }) export class DeleteButtonComponent implements OnInit { @Input() label: string @Input() title: string @Input() responsiveLabel = false ngOnInit () { // No label if (this.label === undefined && !this.title) { this.title = $localize`Delete` } // Use default label if (this.label === '') { this.label = $localize`Delete` if (!this.title) { this.title = this.label } } } }