mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
19 lines
406 B
C#
19 lines
406 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<span class="@ClassMapper.Class" style="@Style" id="@Id" @ref="Ref">
|
|
@if (Text != null || ChildContent != null)
|
|
{
|
|
<span class="ant-divider-inner-text">
|
|
@if (Text != null)
|
|
{
|
|
@Text
|
|
}
|
|
else
|
|
{
|
|
@ChildContent
|
|
}
|
|
</span>
|
|
}
|
|
</span>
|