forked from coracle/flotilla
12 lines
260 B
Svelte
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}
|