Files
fnx_web/svelte/src/util/LoadingIndicator.svelte

22 lines
262 B
Svelte
Raw Normal View History

2022-04-26 15:23:57 +02:00
<script>
import Spinner from "./Spinner.svelte";
export let loading = false
</script>
{#if loading}
<div class="container">
<Spinner/>
</div>
{/if}
<style>
.container {
position: fixed;
top: 10px;
right: 10px;
height: 120px;
width: 120px;
}
</style>