You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { ViewTypes } from 'nocodb-sdk'
|
|
|
|
|
|
|
|
import MdiGridIcon from '~icons/mdi/grid-large'
|
|
|
|
import MdiFormIcon from '~icons/mdi/form-select'
|
|
|
|
import MdiCalendarIcon from '~icons/mdi/calendar'
|
|
|
|
import MdiGalleryIcon from '~icons/mdi/camera-image'
|
|
|
|
import MdiKanbanIcon from '~icons/mdi/tablet-dashboard'
|
|
|
|
import MdiEyeIcon from '~icons/mdi/eye-circle-outline'
|
|
|
|
|
|
|
|
export const viewIcons = {
|
|
|
|
[ViewTypes.GRID]: { icon: MdiGridIcon, color: 'blue' },
|
|
|
|
[ViewTypes.FORM]: { icon: MdiFormIcon, color: 'pink' },
|
|
|
|
calendar: { icon: MdiCalendarIcon, color: 'purple' },
|
|
|
|
[ViewTypes.GALLERY]: { icon: MdiGalleryIcon, color: 'orange' },
|
|
|
|
[ViewTypes.KANBAN]: { icon: MdiKanbanIcon, color: 'green' },
|
|
|
|
view: { icon: MdiEyeIcon, color: 'blue' },
|
|
|
|
}
|