]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/shared/shared-main/buttons/button.component.ts
Fix filters error in console
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / buttons / button.component.ts
... / ...
CommitLineData
1import { Component, Input } from '@angular/core'
2import { GlobalIconName } from '@app/shared/shared-icons'
3
4@Component({
5 selector: 'my-button',
6 styleUrls: [ './button.component.scss' ],
7 templateUrl: './button.component.html'
8})
9
10export class ButtonComponent {
11 @Input() label = ''
12 @Input() className = 'grey-button'
13 @Input() icon: GlobalIconName = undefined
14 @Input() title: string = undefined
15 @Input() loading = false
16 @Input() disabled = false
17 @Input() responsiveLabel = false
18
19 getClasses () {
20 return {
21 [this.className]: true,
22 disabled: this.disabled,
23 'responsive-label': this.responsiveLabel
24 }
25 }
26}