Merge branch 'release/v1.2.0'
[oweals/peertube.git] / client / src / app / shared / buttons / button.component.ts
1 import { Component, Input } from '@angular/core'
2 import { GlobalIconName } from '@app/shared/icons/global-icon.component'
3
4 @Component({
5   selector: 'my-button',
6   styleUrls: ['./button.component.scss'],
7   templateUrl: './button.component.html'
8 })
9
10 export class ButtonComponent {
11   @Input() label = ''
12   @Input() className: string = undefined
13   @Input() icon: GlobalIconName = undefined
14   @Input() title: string = undefined
15
16   getTitle () {
17     return this.title || this.label
18   }
19 }