1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 22:38:11 +09:00
elk/components/search/SearchEmojiInfo.vue

23 lines
450 B
Vue
Raw Permalink Normal View History

<script setup lang="ts">
export interface SearchEmoji {
title: string
src: string
}
defineProps<{
emoji: SearchEmoji
}>()
</script>
<template>
2023-01-16 19:21:38 +09:00
<div flex="~ gap3" items-center text-base>
<img
2023-01-16 19:21:38 +09:00
width="20"
height="20"
:src="emoji.src"
loading="lazy"
>
2023-01-16 19:21:38 +09:00
<span shrink overflow-hidden leading-none text-base><span text-secondary>:</span>{{ emoji.title }}<span text-secondary>:</span></span>
</div>
</template>