import {Component, Input} from '@angular/core'; @Component({ selector: 'step-line', template: `
` }) export class StepLineComponent { @Input() status: 'active' | 'default' | 'disabled' | 'done'; @Input() stepNumber; }