mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
01394b356f
* fix(module: icon): put spin class on outside * fix: make rotate style outside
14 lines
343 B
C#
14 lines
343 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<span role="img" class="@ClassMapper.Class" style="@IconStyle @Style" id="@Id" @onclick="HandleOnClick" @onclick:stopPropagation="StopPropagation" tabindex="@TabIndex">
|
|
@if (Component == null)
|
|
{
|
|
@((MarkupString) _svgImg)
|
|
}
|
|
else
|
|
{
|
|
@Component
|
|
}
|
|
</span>
|