Skip to content

Commit

Permalink
svg fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyle authored and Fyle committed Feb 13, 2024
1 parent 895e08f commit e26b5c9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
<ng-template pTemplate="filter" let-options="options">
<div class="p-inputgroup">
<div class="p-input-icon-left">
<app-svg-icon [svgSource]="'search-medium'" [width]="'18px'" [height]="'18px'" [ngClass]="{'!tw-text-search-focused-search-icon': isSearchFocused}"></app-svg-icon>
<i>
<app-svg-icon [svgSource]="'search-medium'" [width]="'18px'" [height]="'18px'" [isTextColorAllowed]="true" [styleClasses]="isSearchFocused ? 'tw-text-search-focused-search-icon' : ''"></app-svg-icon>
</i>
<input type="text" class="!tw-h-32-px !tw-w-260-px" (focus)="isSearchFocused = true" (blur)="isSearchFocused = false"
(keyup)="options.filter($event)" pInputText />
</div>
Expand Down

0 comments on commit e26b5c9

Please sign in to comment.