Files
chatwoot/app/javascript/dashboard/components/ui/Dropdown/DropdownLoadingState.vue
2024-05-29 11:28:13 +05:30

16 lines
250 B
Vue

<script setup>
defineProps({
message: {
type: String,
default: '',
},
});
</script>
<template>
<div
class="flex items-center justify-center h-10 text-sm text-slate-500 dark:text-slate-300"
>
{{ message }}
</div>
</template>