Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 443 Bytes
c4b38e4 42052ec 0a3474b 058d10c 936176c a5619c2 936176c 39eb06d c6c1fff e657b46 42052ec c6c1fff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<script lang="ts">
import IconLoadingLoop from "~icons/line-md/loading-loop";
import "../app.css";
interface Props {
children?: import("svelte").Snippet;
}
let { children }: Props = $props();
</script>
<svelte:boundary>
{@render children?.()}
{#snippet pending()}
<p class="abs-center absolute dark:text-white">🤗</p>
<IconLoadingLoop class="abs-center absolute text-6xl dark:text-blue-300" />
{/snippet}
</svelte:boundary>
|