1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00
Peertube/client/src/app/shared/buttons/button.component.ts
2019-07-24 10:58:16 +02:00

20 lines
506 B
TypeScript

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
}
}