1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
package data
import "lain/types"
var FolderIcons = map[string]types.FolderIconVariant{
"default": {
Open: "/static/icons/folder_open.png",
Close: "/static/icons/folder.png",
},
"inbox": {
Open: "/static/icons/inbox_open.png",
Close: "/static/icons/inbox.png",
},
"encrypt": {
Open: "/static/icons/encrypt_open.png",
Close: "/static/icons/encrypt.png",
},
"dog": {
Open: "/static/icons/dog_open.png",
Close: "/static/icons/dog.png",
},
"internal": {
Open: "/static/icons/internal_open.png",
Close: "/static/icons/internal.png",
},
"draft": {
Open: "/static/icons/draft_open.png",
Close: "/static/icons/draft.png",
},
"progress": {
Open: "/static/icons/draft_open.png",
Close: "/static/icons/draft.png",
},
"sent": {
Open: "/static/icons/sent.png",
Close: "/static/icons/sent.png",
},
"archive": {
Open: "/static/icons/archive_open.png",
Close: "/static/icons/archive.png",
},
"trash": {
Open: "/static/icons/trash_open.png",
Close: "/static/icons/trash.png",
},
"delete": {
Open: "/static/icons/trash_open.png",
Close: "/static/icons/trash.png",
},
"spam": {
Open: "/static/icons/junk_open.png",
Close: "/static/icons/junk.png",
},
"junk": {
Open: "/static/icons/junk_open.png",
Close: "/static/icons/junk.png",
},
}
|