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
This commit is contained in:
11
apps/frontend/src/lib/components/atoms/icon.svelte
Normal file
11
apps/frontend/src/lib/components/atoms/icon.svelte
Normal file
@@ -0,0 +1,11 @@
|
||||
<script lang="ts">
|
||||
let {
|
||||
icon: Icon,
|
||||
cls,
|
||||
}: {
|
||||
icon: any;
|
||||
cls?: string;
|
||||
} = $props();
|
||||
</script>
|
||||
|
||||
<Icon class={cls} />
|
||||
Reference in New Issue
Block a user