14 lines
307 B
Vue
14 lines
307 B
Vue
<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>
|