mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
14 lines
332 B
C#
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>
|