<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>