forked from mirror/misskey
24 lines
616 B
Vue
24 lines
616 B
Vue
![]() |
<!--
|
||
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
-->
|
||
|
|
||
|
<template>
|
||
|
<EmCustomEmoji v-if="reaction[0] === ':'" ref="elRef" :name="reaction" :normal="true" :noStyle="noStyle" :url="emojiUrl" :fallbackToImage="true"/>
|
||
|
<EmEmoji v-else ref="elRef" :emoji="reaction" :normal="true" :noStyle="noStyle"/>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { } from 'vue';
|
||
|
import EmCustomEmoji from './EmCustomEmoji.vue';
|
||
|
import EmEmoji from './EmEmoji.vue';
|
||
|
|
||
|
const props = defineProps<{
|
||
|
reaction: string;
|
||
|
noStyle?: boolean;
|
||
|
emojiUrl?: string;
|
||
|
withTooltip?: boolean;
|
||
|
}>();
|
||
|
|
||
|
</script>
|