aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/buttons/delete-button.component.ts
blob: cd2bcccdf9e31163b1b2d4d6a34cff854573db41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { Component, Input } from '@angular/core'

@Component({
  selector: 'my-delete-button',
  styleUrls: [ './button.component.scss' ],
  templateUrl: './delete-button.component.html'
})

export class DeleteButtonComponent {
  @Input() label: string
}