I have this material component in Angular 15.
<mat-form-field appearance="outline">
<mat-label>{{'DOCTOR_AREA.START_TIME' | translate}} </mat-label>
<input type="time" matInput min="08:00" max="20:00" id="StartTime" formControlName="StartTime" [(ngModel)]="currentSlot.StartTime"/>
</mat-form-field>
I need to insert a minute gap of 30 minutes.
How can I do?