clone of repo on github
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
379 B

<script lang="ts">
import { showTech } from '$lib/stores/techStore.ts';
import { Toggle, P } from "flowbite-svelte";
let label = 'Show technical details';
$: checked = $showTech;
</script>
<div class="inline-flex items-center gap-2 select-none my-3">
<Toggle {checked} ontoggle={() => $showTech = checked} aria-label={label} />
<P class="text-sm">{label}</P>
</div>