mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
13 lines
310 B
C#
13 lines
310 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
@if (Parent?.Split != null && _index != 0)
|
|
{
|
|
<span class="ant-space-item-split" style="margin-right: 4px;">
|
|
@Parent.Split
|
|
</span>
|
|
}
|
|
|
|
<div class="@ClassMapper.Class" style="@Style @_marginStyle" @ref="Ref" id="@Id">
|
|
@ChildContent
|
|
</div> |