
Changed the whole tech stack to SvelteKit which means: - Typescript - SSR - No fastify :( - Beta, but it's fine! Other changes: - Tailwind -> Tailwind JIT - A lot more
10 lines
282 B
Svelte
10 lines
282 B
Svelte
<script>
|
|
export let customClass;
|
|
</script>
|
|
|
|
<svg class="{customClass}" viewBox="0 0 9 8" xmlns="http://www.w3.org/2000/svg"
|
|
><path d="m0 7h1v1h-1z" fill="#f00"></path><path
|
|
d="m0 0h1v7h-1zm2 0h1v8h-1zm2 0h1v8h-1zm2 0h1v8h-1zm2 3.25h1v1.5h-1z"
|
|
fill="#fc0"></path></svg
|
|
>
|