mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-02 16:52:31 +00:00
14 lines
269 B
Svelte
14 lines
269 B
Svelte
<script lang="ts">
|
|
import { base } from '$app/paths';
|
|
|
|
import { mode } from 'mode-watcher';
|
|
|
|
export let iconOnly = false;
|
|
</script>
|
|
|
|
<img
|
|
src="{base}/{iconOnly ? 'icon' : 'logo'}{$mode === 'dark' ? '-dark' : ''}.svg"
|
|
alt="Logo of gpx.studio."
|
|
{...$$restProps}
|
|
/>
|