mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
407 B
14 lines
407 B
1 year ago
|
<script lang="ts" setup>
|
||
|
import { iconMap, useGlobal } from '#imports'
|
||
|
|
||
|
const { isLoading } = useGlobal()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="flex justify-center self-center min-w-6">
|
||
|
<div v-if="isLoading" class="flex items-center gap-2 ml-3 text-gray-200 text-xs" data-testid="nc-loading">
|
||
|
<component :is="iconMap.loading" class="animate-infinite animate-spin" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|