blob: 4b59c26d214e62dffd1a48385bbb7405a6a5176a [file] [log] [blame]
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'hi-disabled-label',
templateUrl: './disabled-label.component.html',
styleUrls: ['./disabled-label.component.scss'],
})
export class DisabledLabelComponent implements OnInit {
@Input()
text: string;
constructor() {}
ngOnInit() {}
}