Initial commit

This commit is contained in:
Djuri 2025-05-03 18:21:06 +02:00
commit af2f593fb8
Signed by: djuri
GPG key ID: 61B9B2DDE5AA3AC1
66 changed files with 8735 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<script lang="ts">
let {
currency,
active = false,
onClick,
...restProps
} = $props();
</script>
<button
class="btn join-item {active ? 'btn-primary' : 'btn-outline'} btn-xs"
on:click={onClick}
{...restProps}
>
{currency}
</button>