ant-design-blazor/components/icon/Icon.razor

14 lines
332 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
<span role="img" class="@ClassMapper.Class" style="@Style" id="@Id" @onclick="HandleOnClick" @onclick:stopPropagation="StopPropagation" tabindex="@TabIndex">
@if (Component == null)
{
@((MarkupString) _svgImg)
}
else
{
@Component
}
</span>