2020-01-30 04:37:25 +09:00
|
|
|
<template>
|
2023-04-07 17:01:42 -07:00
|
|
|
<MkEmoji
|
|
|
|
:emoji="reaction"
|
|
|
|
:custom-emojis="customEmojis || []"
|
|
|
|
:is-reaction="true"
|
|
|
|
:normal="true"
|
|
|
|
:no-style="noStyle"
|
|
|
|
/>
|
2020-01-30 04:37:25 +09:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 10:35:32 +09:00
|
|
|
<script lang="ts" setup>
|
2024-04-12 22:02:03 +08:00
|
|
|
import type { entities } from "firefish-js";
|
|
|
|
|
2023-10-31 20:19:05 +09:00
|
|
|
defineProps<{
|
2022-01-14 10:35:32 +09:00
|
|
|
reaction: string;
|
2024-04-12 22:02:03 +08:00
|
|
|
customEmojis?: entities.EmojiLite[];
|
2022-01-14 10:35:32 +09:00
|
|
|
noStyle?: boolean;
|
|
|
|
}>();
|
2020-01-30 04:37:25 +09:00
|
|
|
</script>
|