- Remove the old Hono/Bun proxy server - Add the new `apps/frontend` SvelteKit scaffold and telemetry hook
12 lines
129 B
Svelte
12 lines
129 B
Svelte
<script lang="ts">
|
|
let {
|
|
icon: Icon,
|
|
cls,
|
|
}: {
|
|
icon: any;
|
|
cls?: string;
|
|
} = $props();
|
|
</script>
|
|
|
|
<Icon class={cls} />
|