ant-design-blazor/components/badge/BadgeRibbon.razor

13 lines
353 B
C#
Raw Normal View History

@namespace AntDesign
@inherits AntDomComponentBase
<div class="ant-ribbon-wrapper">
@if (ChildContent != null)
{
@ChildContent
}
<div class="@ClassMapper.Class" style="@_colorStyle">
@if (TextTemplate != null)@TextTemplate else @Text
<div class="ant-ribbon-corner" style="@_cornerColorStyle" />
</div>
</div>