Skip to content

Commit

Permalink
fix: changing order of icons
Browse files Browse the repository at this point in the history
  • Loading branch information
deeved-hiuston-brisa committed Oct 3, 2023
1 parent 4e4436a commit 10dccf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/ion/src/lib/accordion/accordion.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
[ngTemplateOutlet]="templateHeader"
></ng-template>
</div>
<ion-icon *ngIf="!show" type="semi-up" [size]="iconSize"></ion-icon>
<ion-icon *ngIf="show" type="semi-down" [size]="iconSize"></ion-icon>
<ion-icon *ngIf="show" type="semi-up" [size]="iconSize"></ion-icon>
<ion-icon *ngIf="!show" type="semi-down" [size]="iconSize"></ion-icon>
</header>
<main *ngIf="show" data-testid="ion-accordion__main">
<ng-content></ng-content>
Expand Down

0 comments on commit 10dccf0

Please sign in to comment.