Files
clientsflow/research/chatwoot/app/javascript/dashboard/components/ui/Dropdown/DropdownLoadingState.vue

15 lines
225 B
Vue

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