internal/dashboard/frontend/src/components/LoaderOverlay.vue

<script setup lang="ts">
import { IconLoader } from "@tabler/icons-vue";
</script>

<template>
  <div class="loader">
    <IconLoader size="24" class="animate-spin" />
  </div>
</template>

<style scoped>
@reference "src/style.css";

.loader {
  @apply text-primary-500 absolute top-0 left-0 z-10 flex h-full w-full items-center justify-center rounded-lg bg-stone-900/50 backdrop-blur-sm;
}
</style>