@innertia-solutions/nuxt-theme-spark 0.1.59 → 0.1.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10,9 +10,14 @@ defineProps<{
|
|
|
10
10
|
<div class="flex items-center gap-x-4">
|
|
11
11
|
<slot name="icon" />
|
|
12
12
|
<div>
|
|
13
|
-
<
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
<div class="flex items-baseline gap-x-2">
|
|
14
|
+
<h1 class="text-lg font-semibold text-slate-800 dark:text-slate-100">{{ title }}</h1>
|
|
15
|
+
<template v-if="description">
|
|
16
|
+
<span class="size-1 rounded-full bg-slate-300 dark:bg-slate-600 shrink-0 self-center"></span>
|
|
17
|
+
<p class="text-sm text-slate-400 dark:text-slate-500">{{ description }}</p>
|
|
18
|
+
</template>
|
|
19
|
+
</div>
|
|
20
|
+
<div v-if="$slots.breadcrumb" class="flex items-center gap-x-1 mt-0.5">
|
|
16
21
|
<slot name="breadcrumb" />
|
|
17
22
|
</div>
|
|
18
23
|
</div>
|