Files
nocodb/packages/nc-gui/components/general/TableIcon.vue
2024-12-27 15:25:38 +05:30

22 lines
545 B
Vue

<script lang="ts" setup>
import type { TableType } from 'nocodb-sdk'
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-4 mx-0.75" />
<component :is="iconMap.table" v-else class="w-4 mx-0.5 text-gray-600/80" />
</template>