1
0
Fork 0
mirror of synced 2024-10-04 20:13:35 +13:00
budibase/packages/builder/src/common/Checkbox.svelte

16 lines
196 B
Svelte
Raw Normal View History

2019-07-13 21:35:57 +12:00
<script>
export let checked=false;
export let label="";
</script>
<input class="uk-checkbox" type="checkbox" bind:checked on:change />{label}
<style>
input {
margin-right:7px;
}
</style>