mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-04 14:03:27 +09:00
29 lines
568 B
Vue
29 lines
568 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<span :alt="props.emoji">{{ colorizedNativeEmoji }}</span>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import { colorizeEmoji } from '@/to-be-shared/emojilist.js';
|
|
|
|
const props = defineProps<{
|
|
emoji: string;
|
|
menu?: boolean;
|
|
menuReaction?: boolean;
|
|
}>();
|
|
|
|
const colorizedNativeEmoji = computed(() => colorizeEmoji(props.emoji));
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
height: 1.25em;
|
|
vertical-align: -0.25em;
|
|
}
|
|
</style>
|