mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-07 02:37:50 +00:00
12 lines
214 B
Svelte
12 lines
214 B
Svelte
<script lang="ts">
|
|
import { base } from '$app/paths';
|
|
|
|
import { mode } from 'mode-watcher';
|
|
</script>
|
|
|
|
<img
|
|
src="{base}/logo{$mode === 'dark' ? '-dark' : ''}.svg"
|
|
alt="Logo of gpx.studio."
|
|
{...$$restProps}
|
|
/>
|