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

16 lines
No EOL
196 B
Svelte

<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>