Add a currency input

This commit is contained in:
Jon Staab
2026-02-03 13:21:21 -08:00
parent 119c09d730
commit 5427fd7860
7 changed files with 288 additions and 181 deletions
@@ -0,0 +1,11 @@
<script lang="ts">
import {displayCurrencyByCode} from "@lib/currency"
type Props = {
value: string
}
const {value}: Props = $props()
</script>
{displayCurrencyByCode(value)}