import { Component, Input, Output } from '../decorators' @Component({ selector: 'mflySiteHeaderNavbarItem', template: require('./site-header-navbar-item.component.html'), }) export default class SiteHeaderNavbarItemController { @Input() clickHref: string @Input('@') cssClass: string @Input('@') linkId: string @Input('@') iconClass: string @Input() itemLabel: string @Input() itemShortLabel: string @Output() clickCallback: Function protected doCallback() { if (this.clickCallback) { this.clickCallback() } } }