mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
f9b615c2ca
...for affix,back-top,breadcrumb,card,divider,typogragpy and timeline Co-authored-by: ElderJames <shunjiey@hotmail.com>
26 lines
693 B
C#
26 lines
693 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<span class="@ClassMapper.Class" style="@Style" id="@Id" @ref="Ref">
|
|
@if (!string.IsNullOrEmpty(Icon) && _hasIcon)
|
|
{
|
|
<Icon type="@Icon" />
|
|
}
|
|
@if (!string.IsNullOrEmpty(Src) && _hasSrc)
|
|
{
|
|
<img src="@Src" srcset="@SrcSet" alt="@Alt" @onerror="ImgError" />
|
|
}
|
|
@if (!string.IsNullOrEmpty(Text) && _hasText)
|
|
{
|
|
<span class="ant-avatar-string" @ref="TextEl" style="@_textStyles">
|
|
@Text
|
|
</span>
|
|
}
|
|
else if (ChildContent != null)
|
|
{
|
|
<span class="ant-avatar-string" @ref="TextEl" style="@_textStyles">
|
|
@ChildContent
|
|
</span>
|
|
}
|
|
</span>
|