🛠️ Create custom svgl version component

This commit is contained in:
pheralb
2025-08-30 22:31:51 +01:00
parent 85e6bb33b8
commit 26b8f0a2ae
3 changed files with 10 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
<script>
import { PUBLIC_SVGL_VERSION } from "$env/static/public";
import Badge from "@/components/ui/badge/badge.svelte";
</script>
{#if PUBLIC_SVGL_VERSION}
<Badge variant="outline">{PUBLIC_SVGL_VERSION}</Badge>
{/if}