Unable to execute events on the TelerikSvgIcon control?
Thanks
<FormItem Field="@nameof(User.Password)">
<Template>
<TelerikTextBox @bind-Value="@user.Password"
Size="@ThemeConstants.TextBox.Size.Large"
Placeholder="Contraseña"
ShowSuffixSeparator="false"
Password="@IsPasswordHidden">
<TextBoxSuffixTemplate>
<TelerikSvgIcon
Icon="@SvgIcon.Eye"
Size="@ThemeConstants.SvgIcon.Size.Medium"
onmousedown="@(() => MostrarPassword())"
onmouseup="@(() => OcultarPassword())"
onmouseleave="@(() => OcultarPassword())">
</TelerikSvgIcon>
</TextBoxSuffixTemplate>
</TelerikTextBox>
</Template>
</FormItem>