FoundKey/packages/client/src/components/reaction-icon.vue
Johann150 5b4c0ffdf3
client: fix some lints
Mostly focused on "@typescript-eslint/no-unused-vars" but also fixed some
other lints along the way.
2022-08-12 08:35:22 +02:00

16 lines
341 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';
withDefaults(defineProps<{
reaction: string;
customEmojis?: Record<string, any>[]; // TODO
noStyle?: boolean;
}>(), {
customEmojis: [];
});
</script>