Files
illusory-iotam/apps/frontend/src/lib/components/atoms/icon.svelte
user eee31e5b99 Replace front proxy with new SvelteKit frontend app
- Remove the old Hono/Bun proxy server
- Add the new `apps/frontend` SvelteKit scaffold and telemetry hook
2026-03-28 18:12:43 +02:00

12 lines
129 B
Svelte

<script lang="ts">
let {
icon: Icon,
cls,
}: {
icon: any;
cls?: string;
} = $props();
</script>
<Icon class={cls} />