Files
immich/web/src/lib/components/shared-components/immich-logo-small-link.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>