]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - link.component.ts
ecbd9151c944f80b2ff459d880f67eb5734e1666
[github/Chocobozzz/PeerTube.git] / link.component.ts
1 import { Component, Input } from '@angular/core'
2
3 @Component({
4 selector: 'my-link',
5 styleUrls: [ './link.component.scss' ],
6 templateUrl: './link.component.html'
7 })
8 export class LinkComponent {
9 @Input() internalLink?: string | any[]
10
11 @Input() href?: string
12 @Input() target?: string
13
14 @Input() title?: string
15
16 @Input() tabindex: string | number
17 }