I want to change the kendo autocomplete filed the same as the angular material inputs.
the kendo UI autocomplete field is like below
I want to change above kendo UI autocomplete field is like below
the HTML for the kendo UI autocomplete field is like below
<div class="example-wrapper">
<kendo-autocomplete [data]="listItems" [placeholder]="'e.g. Andorra'">
</kendo-autocomplete>
</div>
the HTML for the material UI is like below.
<mat-form-field class="example-full-width">
<input type="text" placeholder="Groups" matInput [formControl]="queryField">
</mat-form-field>
is it possible to do that?


If you are using kendo, you can wrap kendo components in material design.
you can install
kendo-theme-materialin your project.And in your
angular.jsonfile add path tokendo-theme-material.It will convert all your kendo components in material design.