feat(web): update icons (#19831)

* fix: update password icon in user settings

* feat: add icons to more modals
This commit is contained in:
Hamish 2025-07-09 12:12:16 +10:00 committed by GitHub
parent d03eb87058
commit 4db76ddcf0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 20 additions and 3 deletions

View file

@ -3,6 +3,7 @@
import ConfirmModal from '$lib/modals/ConfirmModal.svelte';
import { showDeleteModal } from '$lib/stores/preferences.store';
import { Checkbox, Label } from '@immich/ui';
import { mdiDeleteForeverOutline } from '@mdi/js';
import { t } from 'svelte-i18n';
interface Props {
@ -26,6 +27,7 @@
<ConfirmModal
title={$t('permanently_delete_assets_count', { values: { count: size } })}
confirmText={$t('delete')}
icon={mdiDeleteForeverOutline}
onClose={(confirmed) => (confirmed ? handleConfirm() : onCancel())}
>
{#snippet promptSnippet()}