anki/ts/components/Detachable.svelte

12 lines
238 B
Svelte
Raw Normal View History

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="typescript">
2021-05-07 14:31:08 +02:00
export let detached = false;
</script>
2021-05-07 14:31:08 +02:00
{#if !detached}
<slot />
{/if}