blob: f2093496fdf375fb0d9f148c40f4d885164c4fc0 (
plain) (
tree)
|
|
import { Component, Input, OnInit } from '@angular/core'
@Component({
selector: 'my-link',
styleUrls: [ './link.component.scss' ],
templateUrl: './link.component.html'
})
export class LinkComponent implements OnInit {
@Input() internalLink?: string | any[]
@Input() href?: string
@Input() target = '_self'
@Input() title?: string
@Input() className?: string
@Input() inheritParentCSS = false
@Input() tabindex: string | number
builtClasses: string
ngOnInit () {
this.builtClasses = this.className || ''
if (!this.builtClasses || this.inheritParentCSS) {
this.builtClasses += ' inherit-parent'
}
}
}
|