Video support field inherits channel support field
[oweals/peertube.git] / client / src / app / shared / misc / delete-button.component.ts
1 import { Component, Input } from '@angular/core'
2
3 @Component({
4   selector: 'my-delete-button',
5   styleUrls: [ './button.component.scss' ],
6   templateUrl: './delete-button.component.html'
7 })
8
9 export class DeleteButtonComponent {
10   @Input() label = 'Delete'
11 }