update!: Remove LoadingIndicator.vue

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-12-20 19:29:52 +01:00
parent 97c025478d
commit aaf216a31e
@@ -1,23 +0,0 @@
<script lang="ts" setup>
import { CSSProperties } from 'vue'
interface LoadingIndicatorProps {
label?: string
class?: string
style?: CSSProperties
}
const props = withDefaults(defineProps<LoadingIndicatorProps>(), {
label: 'Almost ready...',
})
</script>
<script lang="ts">
export default {
name: 'VueFlowLoading',
}
</script>
<template>
<div class="vue-flow__loading-indicator" :class="props.class" :style="props.style">
<slot name="label"> {{ props.label }} </slot>
</div>
</template>