ant-design-blazor/components/icon/IconFont.razor.cs
Henry.zhang d3f3d795dd fix(module: switch): loading icon has a little shift (#766)
* fix:  the issue #762 switch loading icon has a little shift

* test: comment the table tests provisionally

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-11-12 15:39:58 +08:00

18 lines
393 B
C#

using System.Threading.Tasks;
namespace AntDesign
{
public class IconFont : Icon
{
protected override Task SetupSvgImg()
{
var svg = $"<svg><use xlink:href=#{Type} /></svg>";
_svgImg = IconService.GetStyledSvg(svg, null, Width, Height, Fill, Rotate);
StateHasChanged();
return Task.CompletedTask;
}
}
}