Files
phishingclub/frontend/src/lib/components/SettingsLoading.svelte
T
2026-06-05 12:46:13 +02:00

11 lines
376 B
Svelte

<script>
// inline loading indicator shown while a settings panel fetches its data
</script>
<div class="flex items-center gap-3 text-sm text-gray-500 dark:text-gray-400 py-8">
<div
class="w-5 h-5 border-t-2 border-t-cta-blue border-r-2 border-r-cta-blue border-b-cta-blue border-b-2 border-l-transparent border-l-2 rounded-full animate-spin"
></div>
Loading...
</div>