mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-29 19:56:18 +00:00
18 lines
470 B
Svelte
18 lines
470 B
Svelte
<script lang="ts">
|
|
import { WithLookup } from '@hcengineering/core'
|
|
import { DocumentMeta } from '@hcengineering/controlled-documents'
|
|
|
|
import DocumentIcon from './icons/DocumentIcon.svelte'
|
|
|
|
export let value: WithLookup<DocumentMeta>
|
|
</script>
|
|
|
|
<div class="flex-row-center">
|
|
<div class="flex-center p-1 content-dark-color flex-no-shrink mr-2-5">
|
|
<DocumentIcon size={'medium'} />
|
|
</div>
|
|
<span class="overflow-label">
|
|
{value.title}
|
|
</span>
|
|
</div>
|