mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 17:23:21 +03:00
13 lines
496 B
Svelte
13 lines
496 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { shortcut } from '$lib/actions/shortcut';
|
||
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
||
|
|
import { mdiInformationOutline } from '@mdi/js';
|
||
|
|
import { t } from 'svelte-i18n';
|
||
|
|
|
||
|
|
export let onShowDetail: () => void;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<svelte:window use:shortcut={{ shortcut: { key: 'i' }, onShortcut: onShowDetail }} />
|
||
|
|
|
||
|
|
<CircleIconButton color="opaque" icon={mdiInformationOutline} on:click={onShowDetail} title={$t('info')} />
|