mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-12 11:55:24 +08:00
ab19703301
* refactor: remove md of tabs demo * feat: add demos of steps * refactor: tabs demo * fix: icon * refactor: tag Co-authored-by: ElderJames <shunjiey@hotmail.com>
14 lines
289 B
C#
14 lines
289 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<span role="img" class="@ClassMapper.Class" style="@Style" id="@Id" @onclick="HandleOnClick" tabindex="@TabIndex">
|
|
@if (Component == null)
|
|
{
|
|
@((MarkupString) _svgImg)
|
|
}
|
|
else
|
|
{
|
|
@Component
|
|
}
|
|
</span>
|