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

14 lines
412 B
Svelte

<script lang="ts">
import cx from 'classnames'
import type {NodeViewProps} from '@tiptap/core'
import {NodeViewWrapper} from 'svelte-tiptap'
import Icon from '@lib/components/Icon.svelte'
export let node: NodeViewProps['node']
</script>
<NodeViewWrapper class="inline link-content">
<Icon icon="paperclip" size={3} class="inline-block translate-y-px" />
{node.attrs.file.name}
</NodeViewWrapper>