mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 12:27:00 +00:00
12 lines
231 B
Vue
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>
|