Files
safetwitch/src/components/LoadingScreen.vue
T
2023-09-27 16:44:52 -04:00

9 lines
311 B
Vue

<template>
<div class="flex mx-auto justify-center bg-crust rounded-lg w-2/3 p-2 text-contrast">
<div class="flex space-x-3">
<h1 class="text-4xl font-bold">{{ $t('main.searching') }}</h1>
<v-icon name="fa-circle-notch" class="animate-spin w-10 h-10"></v-icon>
</div>
</div>
</template>