Feature Request: Icons within a Textbox

Hi there!

I'm trying to replace some of our old WPF Telerik UI with Blazor Radzen UI.
One thing I think Radzen is missing that could be a nice addition is the ability to position an icon at the start/end of a TextBox in a similar way that you already support for Button.

Here is an example of a Textbox using the Telerik UI I'm trying to replace:
telerik
but currently Radzen cannot have icons within the Textbox.

It would be nice if we could define Icon Position too, either left or right
This can be achieved for buttons as seen in your demo by doing the following:

<RadzenButton Click=@(args => OnClick("Button with content")) Image="images/radzen-nuget.png" ButtonStyle="ButtonStyle.Base">
    <span class="rz-button-text">Button with content</span>
    <RadzenImage Path="images/radzen-nuget.png" Style="width: 20px; height: 20px; margin-inline-start: 8px;" />
</RadzenButton>

but my testing seems to show Textbox doesn't support this.

Does this feature request seem reasonable to you?

Damn, I missed that completely, thank you!

It does use a different pattern than the other Icon-augmentable components so perhaps theres room for improvement here?

Regardless, you've solved my immediate problem so thank you again. :grin: