blob: f39442649e41753cb32c16dc8b20ec5836f6579a [file] [log] [blame]
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'hi-state-label',
templateUrl: './state-label.component.html',
styleUrls: ['./state-label.component.scss'],
})
export class StateLabelComponent implements OnInit {
@Input() state: string;
@Input() isReady: boolean;
constructor() {}
ngOnInit() {}
}