2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkEmoji
|
|
|
|
:emoji="reaction"
|
|
|
|
:custom-emojis="customEmojis || []"
|
|
|
|
:is-reaction="true"
|
|
|
|
:normal="true"
|
|
|
|
:no-style="noStyle"
|
|
|
|
/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 02:35:32 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
const props = defineProps<{
|
|
|
|
reaction: string;
|
|
|
|
customEmojis?: any[]; // TODO
|
|
|
|
noStyle?: boolean;
|
|
|
|
}>();
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|