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
59
|
{
"prefix": "oo-ui-icon",
"intro": "@import '../../../../src/styles/common';",
"variants": {
"invert": {
"color": "#FFFFFF",
"global": true
},
"progressive": {
"color": "#347BFF"
},
"constructive": {
"color": "#00AF89"
},
"destructive": {
"color": "#D11D13"
},
"warning": {
"color": "#FF5D00"
}
},
"images": {
"block": { "file": "images/icons/block.svg", "variants": [ "destructive" ] },
"blockUndo": { "file": {
"ltr": "images/icons/blockUndo-ltr.svg",
"rtl": "images/icons/blockUndo-rtl.svg"
} },
"flag": { "file": {
"ltr": "images/icons/flag-ltr.svg",
"rtl": "images/icons/flag-rtl.svg"
} },
"flagUndo": { "file": {
"ltr": "images/icons/flagUndo-ltr.svg",
"rtl": "images/icons/flagUndo-rtl.svg"
} },
"lock": { "file": {
"ltr": "images/icons/lock-ltr.svg",
"rtl": "images/icons/lock-rtl.svg"
}, "variants": [ "destructive" ] },
"ongoingConversation": {
"file": {
"ltr": "images/icons/ongoingConversation-ltr.svg",
"rtl": "images/icons/ongoingConversation-rtl.svg"
},
"variants": [ "progressive" ]
},
"star": { "file": "images/icons/star.svg", "variants": [ "constructive" ] },
"trash": { "file": "images/icons/trash.svg" },
"trashUndo": { "file": {
"ltr": "images/icons/trashUndo-ltr.svg",
"rtl": "images/icons/trashUndo-rtl.svg"
} },
"unLock": { "file": {
"ltr": "images/icons/unLock-ltr.svg",
"rtl": "images/icons/unLock-rtl.svg"
}, "variants": [ "destructive" ] },
"unStar": { "file": "images/icons/unStar.svg", "variants": [ "constructive" ] }
}
}
|