diff --git a/apps/calendar/apps/web/src/lib/components/calendar/AgendaView.svelte b/apps/calendar/apps/web/src/lib/components/calendar/AgendaView.svelte
index acf78d0e9..7948c8930 100644
--- a/apps/calendar/apps/web/src/lib/components/calendar/AgendaView.svelte
+++ b/apps/calendar/apps/web/src/lib/components/calendar/AgendaView.svelte
@@ -14,6 +14,7 @@
import { toDate } from '$lib/utils/eventDateHelpers';
import type { CalendarEvent, Calendar, CreateEventInput } from '@calendar/shared';
import { ContextMenu, type ContextMenuItem } from '@manacore/shared-ui';
+ import { CalendarBlank, MapPin, CaretRight } from '@manacore/shared-icons';
import { _ } from 'svelte-i18n';
interface Props {
@@ -195,14 +196,7 @@
{#if groupedEvents.length === 0}
-
+
Keine Termine in diesem Zeitraum
{:else}
@@ -256,25 +250,7 @@
{#if event.location}
-
+
{event.location}
{/if}
@@ -285,14 +261,7 @@
title="Details öffnen"
aria-label="Details öffnen"
>
-
+
{/each}
diff --git a/apps/calendar/apps/web/src/lib/components/calendar/CalendarSidebar.svelte b/apps/calendar/apps/web/src/lib/components/calendar/CalendarSidebar.svelte
index b1b0d45cd..2aa11d03e 100644
--- a/apps/calendar/apps/web/src/lib/components/calendar/CalendarSidebar.svelte
+++ b/apps/calendar/apps/web/src/lib/components/calendar/CalendarSidebar.svelte
@@ -6,6 +6,7 @@
import type { Calendar } from '@calendar/shared';
import { goto } from '$app/navigation';
import { onMount } from 'svelte';
+ import { Plus, ArrowsClockwise } from '@manacore/shared-icons';
// Get calendars from layout context (live query)
const calendarsCtx: { readonly value: Calendar[] } = getContext('calendars');
@@ -33,9 +34,7 @@
@@ -64,14 +63,7 @@
diff --git a/apps/calendar/apps/web/src/lib/components/calendar/MiniCalendar.svelte b/apps/calendar/apps/web/src/lib/components/calendar/MiniCalendar.svelte
index beaf970c0..b593f4c9b 100644
--- a/apps/calendar/apps/web/src/lib/components/calendar/MiniCalendar.svelte
+++ b/apps/calendar/apps/web/src/lib/components/calendar/MiniCalendar.svelte
@@ -13,6 +13,7 @@
subMonths,
} from 'date-fns';
import { de } from 'date-fns/locale';
+ import { CaretLeft, CaretRight } from '@manacore/shared-icons';
interface Props {
selectedDate: Date;
@@ -51,15 +52,11 @@
diff --git a/apps/calendar/apps/web/src/lib/components/calendar/PillCalendarSelector.svelte b/apps/calendar/apps/web/src/lib/components/calendar/PillCalendarSelector.svelte
index cbcd28836..365df859e 100644
--- a/apps/calendar/apps/web/src/lib/components/calendar/PillCalendarSelector.svelte
+++ b/apps/calendar/apps/web/src/lib/components/calendar/PillCalendarSelector.svelte
@@ -3,6 +3,7 @@
import { calendarsStore } from '$lib/stores/calendars.svelte';
import type { Calendar } from '@calendar/shared';
import { goto } from '$app/navigation';
+ import { CalendarBlank, CaretDown, Plus } from '@manacore/shared-icons';
// Get calendars from layout context (live query)
const calendarsCtx: { readonly value: Calendar[] } = getContext('calendars');
@@ -74,24 +75,9 @@
class:glass-pill={!embedded}
class:embedded-btn={embedded}
>
-
+
{visibleCount}/{totalCount}
-
+
{#if isOpen}
@@ -116,14 +102,7 @@
diff --git a/apps/calendar/apps/web/src/lib/components/calendar/UnifiedBar.svelte b/apps/calendar/apps/web/src/lib/components/calendar/UnifiedBar.svelte
index 93fafe089..1ed956733 100644
--- a/apps/calendar/apps/web/src/lib/components/calendar/UnifiedBar.svelte
+++ b/apps/calendar/apps/web/src/lib/components/calendar/UnifiedBar.svelte
@@ -1,5 +1,6 @@