mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
18 lines
457 B
Plaintext
18 lines
457 B
Plaintext
@namespace AntBlazor
|
|
@inherits AntButtonBase
|
|
|
|
<CascadingValue Value="this">
|
|
<button class="@ClassMapper.Class" style="@Style" @attributes="Attributes" Id="@Id" @onclick="OnClick">
|
|
@if (loading)
|
|
{
|
|
<AntIcon type="loading"></AntIcon>
|
|
}
|
|
@if (!string.IsNullOrEmpty(icon))
|
|
{
|
|
<AntIcon type="@icon" Style="@iconStyle"></AntIcon>
|
|
}
|
|
|
|
@ChildContent
|
|
</button>
|
|
</CascadingValue>
|