Files
nocodb/packages/nc-gui/composables/useAttachmentIcon.ts
2025-08-07 05:42:18 +00:00

9 lines
240 B
TypeScript

export const useAttachmentIcon = (
title: MaybeRefOrGetter<string | undefined>,
mimetype: MaybeRefOrGetter<string | undefined>,
) => {
return computed<keyof typeof iconMap>(() => {
return getAttachmentIcon(title, mimetype)
})
}