I have a Table Filter in Angular Material :-
I want an icon at the right side of this filter, like below :-
I have tried with many configurations, without luck.
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value)" placeholder="Filter">
<span class="input-group-append">
<button class="btn" (click)="doSomething()">
<i class="fa fa-plus fa-fw"></i>
</button>
</span>
</mat-form-field>
Is there any simple way to achieve this?

