feat(ba-checkbox): create checkbox component

This commit is contained in:
tibing 2016-07-07 15:25:08 +03:00
parent f3f3f43805
commit 22ebf94c7b
6 changed files with 43 additions and 12 deletions

View file

@ -0,0 +1,4 @@
<label class="checkbox-inline custom-checkbox nowrap">
<input type="checkbox" (change)="onChange($event.target.checked)" [disabled]="disabled" [value]="value">
<span>{{label}}</span>
</label>