summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkReactionIcon.vue
blob: 6e9d2b1a6c6be83486e7fea59e127666f63b7904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<template>
<MkEmoji :emoji="reaction" :is-reaction="true" :normal="true" :no-style="noStyle"/>
</template>

<script lang="ts" setup>
import { } from 'vue';

const props = defineProps<{
	reaction: string;
	noStyle?: boolean;
}>();
</script>