]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/buttons/button.component.ts
Fix avatar size in moderation tables
[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',
6 styleUrls: ['./button.component.scss'],
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
74d63469
GR
17
18 getTitle () {
19 return this.title || this.label
20 }
1fe1e14c
RK
21
22 getClasses () {
23 return {
24 [this.className]: true,
25 disabled: this.disabled
26 }
27 }
74d63469 28}