mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 16:27:18 +00:00
22 lines
544 B
Vue
22 lines
544 B
Vue
<script lang="ts" setup>
|
|
import { Icon as IcIcon } from '@iconify/vue'
|
|
import type { TableType } from 'nocodb-sdk'
|
|
import { iconMap } from '#imports'
|
|
|
|
const { meta: tableMeta } = defineProps<{
|
|
meta: TableType
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<IcIcon
|
|
v-if="tableMeta.meta?.icon"
|
|
:data-testid="`nc-icon-${tableMeta.meta?.icon}`"
|
|
class="text-lg"
|
|
:icon="tableMeta.meta?.icon"
|
|
/>
|
|
|
|
<component :is="iconMap.eye" v-else-if="tableMeta?.type === 'view'" class="w-5" />
|
|
<component :is="iconMap.table" v-else class="w-5" />
|
|
</template>
|