mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-20 00:06:10 +01:00
9 lines
297 B
HTML
9 lines
297 B
HTML
|
|
<div class="{{baCheckboxClass}}">
|
||
|
|
<label class="checkbox-inline custom-checkbox nowrap">
|
||
|
|
<input type="checkbox" [name]="name" [checked]=state
|
||
|
|
(change)="onChange($event.target.checked)"
|
||
|
|
[disabled]="disabled" [value]="value">
|
||
|
|
<span>{{label}}</span>
|
||
|
|
</label>
|
||
|
|
</div>
|