Files
flotilla/src/app/components/GroupComposeBolt11.svelte
T
2024-08-19 14:24:55 -07:00

11 lines
271 B
Svelte

<script lang="ts">
import type {NodeViewProps} from '@tiptap/core'
import {NodeViewWrapper} from 'svelte-tiptap'
export let node: NodeViewProps['node']
</script>
<NodeViewWrapper class="inline link-content">
{node.attrs.lnbc.slice(0, 16)}...
</NodeViewWrapper>