blob: ecbd9151c944f80b2ff459d880f67eb5734e1666 (
plain) (
tree)
|
|
import { Component, Input } from '@angular/core'
@Component({
selector: 'my-link',
styleUrls: [ './link.component.scss' ],
templateUrl: './link.component.html'
})
export class LinkComponent {
@Input() internalLink?: string | any[]
@Input() href?: string
@Input() target?: string
@Input() title?: string
@Input() tabindex: string | number
}
|