Is there a way to change the icon in the search bar place holder? (In this case I want to use it for a url entry field)
1 Like
The search icon on searchbar is set through background-image css property wich is an SVG format by default you can overwrite it in (src/theme/variables.scss) file and set your own SVG path.
Another solution is by adding font-awesome to the application first, then add the following to css customization in variables.scss file:
.searchbar-md .searchbar-search-icon::before {
font-family: âFontAwesomeâ;
content: â\f0c1â;
}
Note: You can add your custom class selector, so that it doesnât affect all searchbars
On ionic 3 i used âsearchbar-search-iconâ on Variables.scss and worked for me.
.searchbar-search-icon {
background-image: url("âŚ/assets/imgs/send-button.svg")!important;
}