feature request
does mat-select control allow us to change icon. similar to how datepicker allows it. as shown below.
https://github.com/angular/material2/tree/master/src/material-examples/datepicker-custom-icon
we are not able to change icon which appears in mat-select
Providing a StackBlitz reproduction is the best way to share your issue.
StackBlitz starter: https://goo.gl/wwnhMV
this would help in customize as per page theme.
Angular 5
N/A
this can do it in angular 6
put this inside your mat-form-field
```
Name
then you can put whatever icon you want in there.
to disable the default icon
.mat-select-arrow {
display: none;
}
```
.mat-select-arrow { display: none; } doesn't help in A7 as with reactive form control it somehow hide the select value also. Can click to get dropdown but the value is never displayed.
You can use visibility: hidden or border: none for .mat-select-arrow
Like this:
.mat-select-arrow {
visibility: hidden;
}
i am not able to change the down arrow icon for the mat-select
Most helpful comment
i am not able to change the down arrow icon for the mat-select