mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-26 19:44:57 +02:00
16 lines
465 B
Svelte
16 lines
465 B
Svelte
<script lang="ts">
|
|
import ratingPlugin, { DocReaction, ReactionKind } from '@hcengineering/rating'
|
|
import { Icon } from '@hcengineering/ui'
|
|
import ReactionPresenter from './ReactionPresenter.svelte'
|
|
|
|
export let value: DocReaction | null = null
|
|
</script>
|
|
|
|
{#if value}
|
|
{#if value.reactionType === ReactionKind.Star}
|
|
<Icon icon={ratingPlugin.icon.StarYellow} size={'small'} />
|
|
{:else}
|
|
<ReactionPresenter emoji={value?.emoji ?? ''} />
|
|
{/if}
|
|
{/if}
|