mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 09:13:14 +03:00
* remove import and referenced file * first pass at replacing all CircleIconButtons * fix linting issues * fix combobox formatting issues * fix button context menu coloring * remove circle icon button from search history box * use theme switcher from UI lib * dark mode force the asset viewer icons * fix forced dark mode icons * dark mode memory viewer icons * fix: back button in memory viewer --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
24 lines
549 B
Svelte
24 lines
549 B
Svelte
<script lang="ts">
|
|
import { shortcut } from '$lib/actions/shortcut';
|
|
import { IconButton } from '@immich/ui';
|
|
import { mdiInformationOutline } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
onShowDetail: () => void;
|
|
}
|
|
|
|
let { onShowDetail }: Props = $props();
|
|
</script>
|
|
|
|
<svelte:document use:shortcut={{ shortcut: { key: 'i' }, onShortcut: onShowDetail }} />
|
|
|
|
<IconButton
|
|
color="secondary"
|
|
shape="round"
|
|
variant="ghost"
|
|
icon={mdiInformationOutline}
|
|
onclick={onShowDetail}
|
|
aria-label={$t('info')}
|
|
/>
|