I am looking to customize the appearance of a mat-select input. Currently, when clicking on the arrow to expand the list, there is an animation that displays the options. I want to eliminate this animation from the mat-select input and instead have it behave like a traditional native HTML select element with a simple pop-up effect for the options. Unfortunately, I cannot use the native HTML select in this case.
<mat-form-field>
<mat-select>
<mat-option>option1</mat-option>
<mat-option>option2</mat-option>
<mat-option>option3</mat-option>
</mat-select>
</mat-form-field>