mirror of https://github.com/nocodb/nocodb
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.
12 lines
507 B
12 lines
507 B
3 years ago
|
import { ViewTypes } from 'nocodb-sdk'
|
||
|
|
||
3 years ago
|
export default {
|
||
3 years ago
|
[ViewTypes.GRID]: { icon: 'mdi-grid-large', color: 'blue' },
|
||
|
// [ViewTypes.GRID]: { icon: "mdi-grid-large", color: "blue" },
|
||
|
[ViewTypes.FORM]: { icon: 'mdi-form-select', color: 'pink' },
|
||
|
calendar: { icon: 'mdi-calendar', color: 'purple' },
|
||
|
[ViewTypes.GALLERY]: { icon: 'mdi-camera-image', color: 'orange' },
|
||
|
[ViewTypes.KANBAN]: { icon: 'mdi-tablet-dashboard', color: 'green' },
|
||
|
view: { icon: 'mdi-eye-circle-outline', color: 'blue' }
|
||
|
}
|