UNPKG
ng2-ui-kit
Version:
latest (0.0.9)
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Angular2 UI Kit
github.com/jkuri/ng2-ui-kit
jkuri/ng2-ui-kit
ng2-ui-kit
/
src
/
components
/
checkbox
/
checkbox.component.html
6 lines
•
227 B
HTML
View Raw
1
2
3
4
5
6
<
div
[
class
]=
"class"
[
class.checked
]=
"internalValue"
(
click
)=
"toggle()"
>
<
div
class
=
"ui-kit-checkbox"
>
<
i
class
=
"ion-ios-checkmark-empty"
*
ngIf
=
"internalValue"
>
</
i
>
</
div
>
<
span
>
<
ng-content
>
</
ng-content
>
</
span
>
</
div
>