Files
safetwitch/src/components/LoadingScreen.vue
T
2023-04-10 00:19:39 -04:00

9 lines
298 B
Vue

<template>
<div class="flex mx-auto justify-center bg-ctp-crust rounded-lg w-2/3 p-2 text-white">
<div class="flex space-x-3">
<h1 class="text-4xl font-bold">Searching...</h1>
<v-icon name="fa-circle-notch" class="animate-spin w-10 h-10"></v-icon>
</div>
</div>
</template>