♻️ refactor(shared-ui): remove lucide-svelte dependency

- Migrate ImmersiveModeToggle to use @manacore/shared-icons (CaretUp/CaretDown)
- Remove lucide-svelte from shared-ui package.json
- All shared-ui components now use Phosphor icons consistently

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-29 14:05:46 +01:00
parent 14ce457c7b
commit aa5fc451b6
3 changed files with 4 additions and 17 deletions

View file

@ -1,5 +1,5 @@
<script lang="ts">
import { ChevronDown, ChevronUp } from 'lucide-svelte';
import { CaretDown, CaretUp } from '@manacore/shared-icons';
interface Props {
/** Whether immersive mode is currently enabled */
@ -21,9 +21,9 @@
title={isImmersive ? 'UI anzeigen (F)' : 'UI verstecken (F)'}
>
{#if isImmersive}
<ChevronUp size={20} />
<CaretUp size={20} />
{:else}
<ChevronDown size={20} />
<CaretDown size={20} />
{/if}
</button>
{/if}