When creating angular 15.0.4 project then added angular material from cli command. Steps to reproduce bug(angular 15.0.4)
1. ng new sample_project
2. ng add @angular/material (indigo-pink.css)
3. added MatFormField and MatInputModule in NgModule
4. added code to app.html
<mat-form-field>
<input matInput type="time">
</mat-form-field>
5. ng serve (does not show the clock icon to select time
but when i remove mat-form-file and mat input in html just plain html element
(<input type='time'>), the clock icon will show up.
Anyone can help me?