aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/buttons/button.component.ts
blob: cac5ad210ff9d6a609db9fba01feb5965861f2cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                
                                                                         








                                         
                                    
                                           
                                    
                          




                                   
import { Component, Input } from '@angular/core'
import { GlobalIconName } from '@app/shared/images/global-icon.component'

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

export class ButtonComponent {
  @Input() label = ''
  @Input() className = 'grey-button'
  @Input() icon: GlobalIconName = undefined
  @Input() title: string = undefined
  @Input() loading = false

  getTitle () {
    return this.title || this.label
  }
}