mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
23 lines
615 B
C#
23 lines
615 B
C#
@namespace AntDesign
|
|
@inherits AntInputComponentBase<bool>
|
|
|
|
<label class="@ClassMapper.Class" style="@Style" id="@Id" @ref="Ref">
|
|
<span class="@ClassMapperSpan.Class">
|
|
<input value="@Label"
|
|
checked="@Checked"
|
|
disabled="@Disabled"
|
|
@onchange="@InputCheckedChange"
|
|
@attributes="@InputAttributes"
|
|
type="checkbox"
|
|
class="ant-checkbox-input" />
|
|
<span class="ant-checkbox-inner"></span>
|
|
</span>
|
|
@if (ChildContent != null)
|
|
{
|
|
<span>
|
|
@ChildContent
|
|
</span>
|
|
}
|
|
</label>
|
|
|