edit-rating-star.component.html 216 B

123456789
  1. <div class="star-rating">
  2. <ng-container *ngFor="let star of starList; let i = index">
  3. <ion-icon
  4. [name]="star ? 'star' : 'star-outline'"
  5. (click)="rate(i)">
  6. </ion-icon>
  7. </ng-container>
  8. </div>