Hi everyone, i had create a razor web component with the sftextbox and i put a fas icon, but i need to move a little the icon to the left or delete the right margin of cssclass e-filled, because the margin for e-filled cssClass style is hiding it this icon.
<SfTextBox @ref="txtTarjeta" @bind-Value="@strTarjeta" Created="@onCreate" FloatLabelType="FloatLabelType.Auto"
Placeholder="Tarjeta" Readonly="true" Enabled="false" CssClass="e-filled"></SfTextBox>
@code {
public void onCreate()
{
this.txtTarjeta.AddIcon("append", "fas fa-credit-card fa-2x");
}
}
Thank you,
best regards.