mirror of
https://github.com/documize/community.git
synced 2025-07-22 14:49:42 +02:00
8 lines
248 B
Handlebars
8 lines
248 B
Handlebars
<div class="ui-checkbox {{if selected 'ui-checkbox-selected'}}" {{action 'onCheck'}}>
|
|
{{#if selected}}
|
|
<i class="material-icons selected">check_box</i>
|
|
{{else}}
|
|
<i class="material-icons">check_box_outline_blank</i>
|
|
{{/if}}
|
|
{{yield}}
|
|
</div>
|