Files
vigilcare-records/vigilcare-records-web/src/components/EmptyState.vue
T
Trent 9811f2a2ed
CI / backend (push) Successful in 6m16s
CI / frontend (push) Failing after 1m4s
feature: Shared UX Primitives
2026-08-12 03:57:43 +08:00

19 lines
473 B
Vue

<template>
<div class="flex flex-col items-center justify-center text-center py-10 px-4">
<h3 class="text-base font-semibold text-ink-strong">{{ title }}</h3>
<p v-if="description" class="mt-2 text-sm text-ink-secondary max-w-md">
{{ description }}
</p>
<div v-if="$slots.action" class="mt-4">
<slot name="action" />
</div>
</div>
</template>
<script setup lang="ts">
defineProps<{
title: string
description?: string
}>()
</script>