Files
flotilla/src/lib/components/CurrencySymbol.svelte
T
2026-02-03 13:25:24 -08:00

12 lines
260 B
Svelte

<script lang="ts">
import {currencyOptions} from "@lib/currency"
export let code
</script>
{#if code.match(/^sats?$/i)}
<span style="font-family: Satoshis; font-size: 1.2em;">!</span>
{:else}
{currencyOptions.find(c => c.code)?.symbol || code}
{/if}