I have to implement a new function in mat-select next to the arrow, but i always messed up the html/scss and this new icon get covered by chips items. I attached a picture how this should looks like.
my mat-select
<mat-select
multiple
[compareWith]="compareWith"
[(ngModel)]="value"
[disabled]="isDisabled"
(ngModelChange)="onTouchedFn()">
<mat-select-trigger>
<mat-chip-list>
<mat-chip *ngFor="let item of value; index as i" removable (removed)="removeItem(item)">
{{ displayChipsValue(item) }}
<i matChipRemove [ngClass]="Icons"></i>
</mat-chip>
</mat-chip-list>
</mat-select-trigger>
<mat-option *ngFor="let type of dataSource" [value]="type.value">
{{ type.text }}
</mat-option>
</mat-select>
Where should i put in and how could i make it perfect with scss?
I try to deal with html/scss, but this new icon get covered by other items, i need a similar icon to arrow.