magnetar/fe_calckey/frontend/client/src/components/MkReactionIcon.vue

20 lines
364 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>