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

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

export class EditButtonComponent {
  @Input() label: string
  @Input() routerLink: string[] | string = []
}