mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
15 lines
341 B
Svelte
15 lines
341 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
export let value: boolean;
|
|
</script>
|
|
|
|
<label><input type="checkbox" bind:checked={value} /><slot /></label>
|
|
|
|
<style lang="scss">
|
|
label {
|
|
line-height: inherit;
|
|
}
|
|
</style>
|