iceshrimp-legacy/packages/client/src/components/MkReactionIcon.vue
2023-04-07 17:01:42 -07:00

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