serve a static website from your pds
1<script lang="ts">
2 interface Props {
3 name: string;
4 label?: string;
5 size?: number;
6 }
7
8 let { name, label, size = 20 }: Props = $props();
9</script>
10
11<svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} aria-hidden={!label}>
12 <use href={`/icons.svg#${name}`}></use>
13 {#if label}<title>{label}</title>{/if}
14</svg>