mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 11:18:04 +00:00
16 lines
633 B
Vue
16 lines
633 B
Vue
<script lang="ts" setup>
|
|
import type { TableType } from 'nocodb-sdk'
|
|
const props = defineProps<{
|
|
table: TableType
|
|
}>()
|
|
const meta = computed(() => props.table.meta as Record<string, any> | undefined)
|
|
const icon = computed<string>(() => meta.value?.icon)
|
|
const type = computed<string>(() => meta.value?.type)
|
|
</script>
|
|
|
|
<template>
|
|
<LazyGeneralEmojiPicker v-if="icon" :data-testid="`nc-emoji-${icon}`" class="text-lg" size="small" :emoji="icon" readonly />
|
|
<component :is="iconMap.eye" v-else-if="type === 'view'" class="w-4 mx-0.75" />
|
|
<component :is="iconMap.table" v-else class="w-4 mx-0.5 !text-gray-600/75" />
|
|
</template>
|