I have to receive an Array in Angular2, since I have not yet done the "send it" thing, I'm simulating that I'm receiving it, the problem is that when using a ngFor it does not do anything.
@Input() steps: Array<number>[4]; //Así no funciona
// steps: Array<number> = [1, 2, 3, 4]; //asi si
Supuestamente tendría que sacar 4 veces 'ey'
<div>
<div class='line'></div>
<clr-icon *ngFor="let step of steps; let i = index" shape="circle"
[ngClass]="'circle' + (i + 1 )" size="36">
ey
</clr-icon>
</div>