mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 05:26:53 +00:00
9 lines
240 B
TypeScript
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)
|
|
})
|
|
}
|