summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkReactionIcon.vue
blob: dfb06f63c44ea0791ff150e20d1d82809cee9955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
<MkCustomEmoji v-if="reaction[0] === ':'" :name="reaction" :normal="true" :noStyle="noStyle" :url="emojiUrl"/>
<MkEmoji v-else :emoji="reaction" :normal="true" :noStyle="noStyle"/>
</template>

<script lang="ts" setup>
import { } from 'vue';

const props = defineProps<{
	reaction: string;
	noStyle?: boolean;
	emojiUrl?: string;
}>();
</script>