mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
9 lines
227 B
Svelte
9 lines
227 B
Svelte
<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}
|