19 lines
319 B
Vue
19 lines
319 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>
|