Files
flotilla/src/app/components/GroupComposeVideo.svelte
T
Jon Staab 88318e9753 Lint
2024-08-26 14:43:43 -07:00

13 lines
382 B
Svelte

<script lang="ts">
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="link-content inline">
<Icon icon="paperclip" size={3} class="inline-block translate-y-px" />
{node.attrs.file.name}
</NodeViewWrapper>