mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 11:16:40 +00:00
23 lines
562 B
Vue
23 lines
562 B
Vue
<script lang="ts" setup>
|
|
import type { TableType } from 'nocodb-sdk'
|
|
import { iconMap } from '#imports'
|
|
|
|
const { meta: tableMeta } = defineProps<{
|
|
meta: TableType
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<LazyGeneralEmojiPicker
|
|
v-if="tableMeta?.meta?.icon"
|
|
:data-testid="`nc-emoji-${tableMeta.meta?.icon}`"
|
|
class="text-lg"
|
|
size="small"
|
|
:emoji="tableMeta.meta?.icon"
|
|
readonly
|
|
/>
|
|
|
|
<component :is="iconMap.eye" v-else-if="tableMeta?.type === 'view'" class="w-5 mx-0.75" />
|
|
<component :is="iconMap.table" v-else class="w-5 mx-0.5" />
|
|
</template>
|