Ionic slides with icon loop

Hi, I’m trying to implement a loop slider from an array with icons. Something like this:
stackblitz

      <ion-slides pager="true" [options]="slideOpts">
        <ion-slide *ngFor="let feature of features">
          <ion-card>
            <ion-card-header>
              <ion-icon size="large" [name]="feature.icon"></ion-icon>
            </ion-card-header>
          </ion-card>
        </ion-slide>
      </ion-slides>

But the icons are shown only on the “first repeat” (please see the example).

Anyone know haw can solve?
Thanks
Davide