Skip to content

Commit

Permalink
fix(components/tab): add correct icon name to registry for right arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jul 10, 2024
1 parent 0c870ea commit c6e05a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
>
<div class="page__icon" *ngIf="icon">
<ng-container *polymorphOutlet="icon; context: $any({ idx: idx$ | async, tab: this })">
<!-- <prizm-icon class="icon icon__mark" [size]="16" [iconClass]="$any(icon)"> </prizm-icon>-->
<prizm-icons-full class="icon icon__mark" [size]="16" [name]="$any(icon)"> </prizm-icons-full>
</ng-container>
</div>
Expand Down
4 changes: 2 additions & 2 deletions libs/components/src/lib/components/tabs/tabs.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import { PrizmIconsFullComponent } from '@prizm-ui/icons';
import { PrizmIconsFullRegistry } from '@prizm-ui/icons/core';
import {
prizmIconsAngleLeft,
prizmIconsAngleLeftRight,
prizmIconsAngleRight,
prizmIconsEllipsisV,
prizmIconsXmark,
} from '@prizm-ui/icons/full/source';
Expand Down Expand Up @@ -132,7 +132,7 @@ export class PrizmTabsComponent extends PrizmAbstractTestId implements OnInit, O
prizmIconsXmark,
prizmIconsEllipsisV,
prizmIconsAngleLeft,
prizmIconsAngleLeftRight
prizmIconsAngleRight
);
}

Expand Down

0 comments on commit c6e05a8

Please sign in to comment.