mirror of
https://github.com/immich-app/immich.git
synced 2025-06-02 21:26:29 -04:00
10 lines
314 B
Svelte
10 lines
314 B
Svelte
<script lang="ts">
|
|
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
|
|
|
|
export let width: number;
|
|
</script>
|
|
|
|
<a data-sveltekit-preload-data="hover" class="ml-4" href="/">
|
|
<ImmichLogo class="h-[24px] w-[24px] max-w-none md:w-auto md:h-10 md:max-w-full" noText={width < 768} />
|
|
</a>
|