mirror of
https://github.com/immich-app/immich.git
synced 2025-11-28 01:39:55 +09:00
14 lines
365 B
Svelte
14 lines
365 B
Svelte
<script lang="ts">
|
|
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
|
|
|
|
interface Props {
|
|
width: number;
|
|
}
|
|
|
|
let { width }: Props = $props();
|
|
</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>
|