]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/buttons/button.component.ts
Add ability to cancel & delete video imports
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / buttons / button.component.ts
CommitLineData
74d63469 1import { Component, Input } from '@angular/core'
67ed6552 2import { GlobalIconName } from '@app/shared/shared-icons'
74d63469
GR
3
4@Component({
5 selector: 'my-button',
faf7eab7 6 styleUrls: [ './button.component.scss' ],
74d63469
GR
7 templateUrl: './button.component.html'
8})
9
10export class ButtonComponent {
11 @Input() label = ''
b345a804 12 @Input() className = 'grey-button'
457bb213 13 @Input() icon: GlobalIconName = undefined
c199c427 14 @Input() title: string = undefined
b5f919ac 15 @Input() loading = false
1fe1e14c 16 @Input() disabled = false
faf7eab7 17 @Input() responsiveLabel = false
74d63469 18
1fe1e14c
RK
19 getClasses () {
20 return {
21 [this.className]: true,
faf7eab7
C
22 disabled: this.disabled,
23 'responsive-label': this.responsiveLabel
1fe1e14c
RK
24 }
25 }
74d63469 26}