mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
9 lines
205 B
JavaScript
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
|
|
}
|