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:
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?