firefish/packages/client/src/components/MkReactionIcon.vue

18 lines
296 B
Vue
Raw Normal View History

2023-07-20 04:17:05 +09:00
<template>
<MkEmoji
:emoji="reaction"
:custom-emojis="customEmojis || []"
:is-reaction="true"
:normal="true"
:no-style="noStyle"
/>
</template>
<script lang="ts" setup>
const props = defineProps<{
reaction: string;
customEmojis?: any[]; // TODO
noStyle?: boolean;
}>();
</script>