ant-design-blazor/components/space/SpaceItem.razor

14 lines
329 B
C#
Raw Normal View History

@namespace AntDesign
@inherits AntDomComponentBase
2020-05-15 19:19:49 +08:00
@{ ChangeSize(); }
@if (Parent?.Split != null && _index != 0)
{
<span class="ant-space-item-split" style="margin-right: 4px;">
@Parent.Split
</span>
}
2020-05-15 19:19:49 +08:00
<div class="@ClassMapper.Class" style="@Style @_marginStyle" @ref="Ref" id="@Id">
@ChildContent
</div>