(https://i.stack.imgur.com/f8DyP.jpg)
<SearchBar
class="w-full rounded-full"
textFieldHintColor="#fff"
color="#fff"
textProperty="#fff"
backgroundImage="none"
v-model="search"
hint="Search..."
@submit="fetchData"/>
The documentation doesn't say anything about icons
There isn't any API to change the Icon color currently, as it's styled by the styles.xml from App_Resources.
Android uses SearchView, so you can style it like you'd do natively: https://stackoverflow.com/a/57735080
iOS uses UISearchBar, which can also be styled natively: How to change the color of the UISearchBar Icon?