mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-30 09:17:16 +02: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>
|