1
0
Fork 0
mirror of synced 2024-10-04 12:03:31 +13:00
budibase/packages/builder/src/components/common/Checkbox.svelte
2020-06-18 17:17:18 +01:00

13 lines
205 B
Svelte

<script>
export let checked = false
export let label = ""
</script>
{label}
<input class="uk-checkbox" type="checkbox" bind:checked on:change />
<style>
input {
margin-right: 7px;
}
</style>