1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-21 23:37:55 +00:00
bramw_baserow/web-frontend/modules/core/utils/icon.js
2023-12-08 08:12:38 +00:00

9 lines
205 B
JavaScript

import {
DATA_TYPE_TO_ICON_MAP,
UNKNOWN_DATA_TYPE_ICON,
} from '@baserow/modules/core/enums'
export const getIconForType = (type) => {
return DATA_TYPE_TO_ICON_MAP[type] || UNKNOWN_DATA_TYPE_ICON
}