11 lines
337 B
Vue
11 lines
337 B
Vue
<script setup lang="ts">
|
|
withDefaults(defineProps<{ text?: string }>(), { text: 'Loading...' })
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col items-center justify-center py-20 text-zinc-400 space-y-3">
|
|
<i class="i-mingcute-loading-3-line text-3xl animate-spin" />
|
|
<span class="text-sm">{{ text }}</span>
|
|
</div>
|
|
</template>
|