I'm trying to add a clear icon on the right side of a dropdown (select component) in Angular material only if the user selects an option. If the user clicks on the "clear" icon I want to delete the value and reset the field. So far I have the dropdown and struggling on displaying the icon properly. Can anyone point me in the right direction? thanks in advance.
Here's my code:
<mat-form-field appearance="fill">
<mat-label>Select a food</mat-label>
<mat-select>
<mat-option *ngFor="let food of foods" [value]="food.value">
{{food.viewValue}}
</mat-option>
<mat-select-trigger>
<button>
<mat-icon>clear</mat-icon>
</button>
</mat-select-trigger>
</mat-select>
</mat-form-field>
Here's LIVE DEMO