ant-design-blazor/components/button/Button.razor

18 lines
467 B
C#
Raw Normal View History

@namespace AntDesign
@inherits AntDomComponentBase
2019-12-16 15:33:29 +08:00
<CascadingValue Value="this">
<button class="@ClassMapper.Class" style="@Style" id="@Id" type="@HtmlType" @onclick="HandleOnClick" disabled="@Disabled">
@if (Loading)
2019-12-16 15:33:29 +08:00
{
<Icon Type="loading"></Icon>
2019-12-16 15:33:29 +08:00
}
@if (!string.IsNullOrEmpty(Icon))
2019-12-16 15:33:29 +08:00
{
<Icon Type="@Icon" Style="@IconStyle"></Icon>
2019-12-16 15:33:29 +08:00
}
@ChildContent
</button>
</CascadingValue>