@Allabasha
You cannot reset a control that is inside of a gallery from outside of the gallery.
It seems strange that you would have a Gallery to contain just a textinput for search. You might want to re-evaluate your use of a gallery for this.
That aside...
If you were using a button, then you can set the Reset property of the SearchuserValue control to: YourButton.Pressed
This would reset the text when the button is pressed.
However, you are using an Icon, which does not have a Pressed property. So, you need to utilize a variable.
To do so, on your Icon OnSelect action formula you would add: UpdateContext({lclResetItem: true}); UpdateContext({lclResetItem: false})
This will quickly set the variable to true and then to false.
Then, set your Reset property of the Searchuservalue TextInput to: lclResetItem
This will reset the control in the gallery.
I hope this is helpful for you.