Files
Website/resources/js/components/SMLoading.vue
2023-04-19 16:26:13 +10:00

27 lines
482 B
Vue

<template>
<div class="loading-container">
<SMLoadingIcon v-bind="{ large: props.large }" />
</div>
</template>
<script setup lang="ts">
import SMLoadingIcon from "./SMLoadingIcon.vue";
const props = defineProps({
large: {
type: Boolean,
default: false,
required: false,
},
});
</script>
<style lang="scss">
.loading-container {
display: flex;
flex-grow: 1;
align-items: center;
justify-content: center;
}
</style>