summaryrefslogtreecommitdiff
path: root/packages/client/src/components/MkReactionIcon.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/components/MkReactionIcon.vue')
-rw-r--r--packages/client/src/components/MkReactionIcon.vue13
1 files changed, 0 insertions, 13 deletions
diff --git a/packages/client/src/components/MkReactionIcon.vue b/packages/client/src/components/MkReactionIcon.vue
deleted file mode 100644
index 5638c9a816..0000000000
--- a/packages/client/src/components/MkReactionIcon.vue
+++ /dev/null
@@ -1,13 +0,0 @@
-<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>