]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/buttons/edit-button.component.ts
Strict templates enabled
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / edit-button.component.ts
CommitLineData
cd83ea1b
C
1import { Component, Input } from '@angular/core'
2
3@Component({
4 selector: 'my-edit-button',
5 styleUrls: [ './button.component.scss' ],
6 templateUrl: './edit-button.component.html'
7})
8
9export class EditButtonComponent {
eacb25c4 10 @Input() label: string
be27ef3b 11 @Input() routerLink: string[] | string = []
cd83ea1b 12}