2021-04-12 06:18:30 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
|
|
|
import ConfigEntry from "./ConfigEntry.svelte";
|
|
|
|
export let subLabel: string;
|
|
|
|
export let value: boolean;
|
|
|
|
export let defaultValue: boolean;
|
|
|
|
</script>
|
|
|
|
|
2021-04-22 08:47:10 +02:00
|
|
|
<ConfigEntry label="" wholeLine={true} bind:value {defaultValue}>
|
|
|
|
<div>
|
|
|
|
<label> <input type="checkbox" bind:checked={value} /> {subLabel} </label>
|
|
|
|
</div>
|
2021-04-12 06:18:30 +02:00
|
|
|
</ConfigEntry>
|