Newer
Older
smart-home-server / webclient-vue / src / components / feedback / AppEmptyState.vue
@Eugene Sukhodolskiy Eugene Sukhodolskiy 13 hours ago 387 bytes Fix area assignment button on detail pages
<template>
  <GnEmptyState :title="title" :text="message" icon="ph-package">
    <template #actions>
      <slot name="action" />
    </template>
  </GnEmptyState>
</template>

<script setup>
import { GnEmptyState } from "gnexus-ui-kit/vue";

defineProps({
  title: {
    type: String,
    default: "Nothing here",
  },
  message: {
    type: String,
    default: "",
  },
});
</script>