initial commit

This commit is contained in:
2026-02-09 19:04:19 -08:00
commit 272d92169d
531 changed files with 196294 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<script lang="ts">
export let path: string;
export let width = '1.5rem';
export let height = '1.5rem';
export let element: SVGElement | undefined = undefined;
export { _class as class };
let _class = '';
</script>
<svg
style="width: {width}; height: {height};"
viewBox="0 0 24 24"
fill="currentColor"
class={_class}
bind:this={element}
on:click
on:keyup
>
<path d={path} />
</svg>