repod/src/components/Atoms/Loading.vue

21 lines
264 B
Vue
Raw Normal View History

2023-12-23 21:49:23 +00:00
<template>
<NcLoadingIcon class="loading" />
</template>
<script lang="ts">
2023-12-23 21:49:23 +00:00
import { NcLoadingIcon } from '@nextcloud/vue'
export default {
name: 'Loading',
components: {
NcLoadingIcon,
},
}
</script>
<style scoped>
.loading {
margin: 2rem 0;
}
2023-12-23 21:49:23 +00:00
</style>