UNPKG

angular-jsf-components

Version:
21 lines (17 loc) 573 B
import {Component, ElementRef, Input} from '@angular/core'; import {HFormService} from '../../services/h-form.service'; import {JsfElement} from '../../superclass/jsf-element'; @Component({ selector: 'ice-output-link', templateUrl: './ice-output-link.component.html', styleUrls: ['./ice-output-link.component.css'], }) export class IceOutputLinkComponent extends JsfElement { @Input() type: string; @Input() value: string; constructor(hFormService: HFormService, elementRef: ElementRef) { super(hFormService, elementRef); } }