Data filter icon needs to chnage to search icon

Hello Everyone.
https://snippet.webix.com/9ucwwya2

In this code snippet, I have a data table it displays the filter icon at the header. I want to display the search icon in the header instead of the filter icon. Can somebody help me with this issue?

Thank You in advance.

Hi, @raghukundapur4.
You can redefine .webix_excel_filter.webix_icon CSS rule and add search icon as a background image.

    .webix_excel_filter.webix_icon{
    background-size: cover;
    background-image: url("//docs.webix.com/samples/13_form/01_controls/search.png");
}
    .webix_excel_filter.webix_icon:before {
    content:"";
}

Please, check the snippet: Code Snippet

Thank you @nastassiaM