blob: 5638c9a8167da82d10d60747bfaeac0a83bfc32f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<template>
<MkEmoji :emoji="reaction" :custom-emojis="customEmojis || []" :is-reaction="true" :normal="true" :no-style="noStyle"/>
</template>
<script lang="ts" setup>
import { } from 'vue';
const props = defineProps<{
reaction: string;
customEmojis?: any[]; // TODO
noStyle?: boolean;
}>();
</script>
|