episteme 0.2.3

Knowledge graph for software engineering — design patterns, refactorings, and laws for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script lang="ts">
  let {
    icon = 'search_off',
    message = 'No data found',
  }: {
    icon?: string;
    message?: string;
  } = $props();
</script>

<div class="flex flex-col items-center justify-center py-12 text-[var(--color-on-surface-variant)]">
  <span class="material-symbols-outlined text-4xl mb-3 opacity-40">{icon}</span>
  <p class="text-sm">{message}</p>
</div>