aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/angular/link.component.ts
blob: 76d1201b90467c3d4113a82b5c96e6bbc999e0a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Component, Input, ViewEncapsulation } from '@angular/core'

@Component({
  selector: 'my-link',
  styleUrls: [ './link.component.scss' ],
  templateUrl: './link.component.html'
})
export class LinkComponent {
  @Input() internalLink?: any[]

  @Input() href?: string
  @Input() target?: string

  @Input() title?: string

  @Input() tabindex: string | number
}