Files
nocodb/packages/nc-gui/components/cell/attachment/IconView.vue
mertmit 1513f9b9a2 chore: lint
Signed-off-by: mertmit <mertmit99@gmail.com>
2024-12-07 12:11:34 +05:30

12 lines
231 B
Vue

<script setup lang="ts">
const props = defineProps<{
item: any
}>()
const icon = useAttachmentIcon(() => props.item.title, props.item.mimetype)
</script>
<template>
<GeneralIcon :icon="icon" class="text-white" />
</template>