refly-icons 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -0
- package/dist/index.d.mts +216 -0
- package/dist/index.d.ts +216 -0
- package/dist/index.js +1340 -0
- package/dist/index.mjs +1200 -0
- package/package.json +34 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# refly-icons
|
|
2
|
+
|
|
3
|
+
一套可自定义颜色和大小的 React SVG 图标库。
|
|
4
|
+
|
|
5
|
+
## 安装
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install refly-icons
|
|
9
|
+
# 或
|
|
10
|
+
yarn add refly-icons
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## 使用方法
|
|
14
|
+
|
|
15
|
+
```tsx
|
|
16
|
+
import { Language, Account, Resource } from 'refly-icons';
|
|
17
|
+
|
|
18
|
+
export default () => (
|
|
19
|
+
<div>
|
|
20
|
+
<Language size={32} color="red" />
|
|
21
|
+
<Account size={40} color="#00f" />
|
|
22
|
+
<Resource size={24} color="currentColor" />
|
|
23
|
+
</div>
|
|
24
|
+
);
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
- `size`:图标宽高,支持数字或字符串(如 24、'2em')。
|
|
28
|
+
- `color`:图标颜色,支持任意 CSS 颜色值。
|
|
29
|
+
|
|
30
|
+
## 图标列表
|
|
31
|
+
|
|
32
|
+
详见 `src/icons` 目录。
|
|
33
|
+
|
|
34
|
+
## 开源协议
|
|
35
|
+
|
|
36
|
+
MIT
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
declare const Icon: React.FC<IconProps>;
|
|
9
|
+
|
|
10
|
+
declare const Language: React.FC<IconProps>;
|
|
11
|
+
|
|
12
|
+
declare const Account: React.FC<IconProps>;
|
|
13
|
+
|
|
14
|
+
declare const Resource: React.FC<IconProps>;
|
|
15
|
+
|
|
16
|
+
declare const InputContext: React.FC<IconProps>;
|
|
17
|
+
|
|
18
|
+
declare const Output: React.FC<IconProps>;
|
|
19
|
+
|
|
20
|
+
declare const Running: React.FC<IconProps>;
|
|
21
|
+
|
|
22
|
+
declare const Logic: React.FC<IconProps>;
|
|
23
|
+
|
|
24
|
+
declare const Settings: React.FC<IconProps>;
|
|
25
|
+
|
|
26
|
+
declare const Attachment: React.FC<IconProps>;
|
|
27
|
+
|
|
28
|
+
declare const Page: React.FC<IconProps>;
|
|
29
|
+
|
|
30
|
+
declare const Project: React.FC<IconProps>;
|
|
31
|
+
|
|
32
|
+
declare const ProjectItem: React.FC<IconProps>;
|
|
33
|
+
|
|
34
|
+
declare const KnowledgeBase: React.FC<IconProps>;
|
|
35
|
+
|
|
36
|
+
declare const Community: React.FC<IconProps>;
|
|
37
|
+
|
|
38
|
+
declare const EditSmart: React.FC<IconProps>;
|
|
39
|
+
|
|
40
|
+
declare const Edit: React.FC<IconProps>;
|
|
41
|
+
|
|
42
|
+
declare const Web1: React.FC<IconProps>;
|
|
43
|
+
|
|
44
|
+
declare const Web: React.FC<IconProps>;
|
|
45
|
+
|
|
46
|
+
declare const FreeCreation: React.FC<IconProps>;
|
|
47
|
+
|
|
48
|
+
declare const Parse: React.FC<IconProps>;
|
|
49
|
+
|
|
50
|
+
declare const Subscription: React.FC<IconProps>;
|
|
51
|
+
|
|
52
|
+
declare const DesignPattern: React.FC<IconProps>;
|
|
53
|
+
|
|
54
|
+
declare const Reference: React.FC<IconProps>;
|
|
55
|
+
|
|
56
|
+
declare const Pending: React.FC<IconProps>;
|
|
57
|
+
|
|
58
|
+
declare const Thinking: React.FC<IconProps>;
|
|
59
|
+
|
|
60
|
+
declare const Play: React.FC<IconProps>;
|
|
61
|
+
|
|
62
|
+
declare const Data: React.FC<IconProps>;
|
|
63
|
+
|
|
64
|
+
declare const NewConversation: React.FC<IconProps>;
|
|
65
|
+
|
|
66
|
+
declare const ModelProvider: React.FC<IconProps>;
|
|
67
|
+
|
|
68
|
+
declare const Flow: React.FC<IconProps>;
|
|
69
|
+
|
|
70
|
+
declare const Knowledge: React.FC<IconProps>;
|
|
71
|
+
|
|
72
|
+
declare const History: React.FC<IconProps>;
|
|
73
|
+
|
|
74
|
+
declare const Appearance: React.FC<IconProps>;
|
|
75
|
+
|
|
76
|
+
declare const LargeModel: React.FC<IconProps>;
|
|
77
|
+
|
|
78
|
+
declare const Cancelled: React.FC<IconProps>;
|
|
79
|
+
|
|
80
|
+
declare const Completed: React.FC<IconProps>;
|
|
81
|
+
|
|
82
|
+
declare const SubNode: React.FC<IconProps>;
|
|
83
|
+
|
|
84
|
+
declare const Code1: React.FC<IconProps>;
|
|
85
|
+
|
|
86
|
+
declare const Code: React.FC<IconProps>;
|
|
87
|
+
|
|
88
|
+
declare const ZoomIn: React.FC<IconProps>;
|
|
89
|
+
|
|
90
|
+
declare const ZoomOut: React.FC<IconProps>;
|
|
91
|
+
|
|
92
|
+
declare const Wiki: React.FC<IconProps>;
|
|
93
|
+
|
|
94
|
+
declare const Upgrade: React.FC<IconProps>;
|
|
95
|
+
|
|
96
|
+
declare const Wait: React.FC<IconProps>;
|
|
97
|
+
|
|
98
|
+
declare const Weather: React.FC<IconProps>;
|
|
99
|
+
|
|
100
|
+
declare const Touchpad: React.FC<IconProps>;
|
|
101
|
+
|
|
102
|
+
declare const Travel: React.FC<IconProps>;
|
|
103
|
+
|
|
104
|
+
declare const Treemenu: React.FC<IconProps>;
|
|
105
|
+
|
|
106
|
+
declare const Undo: React.FC<IconProps>;
|
|
107
|
+
|
|
108
|
+
declare const University: React.FC<IconProps>;
|
|
109
|
+
|
|
110
|
+
declare const Tools: React.FC<IconProps>;
|
|
111
|
+
|
|
112
|
+
declare const Start: React.FC<IconProps>;
|
|
113
|
+
|
|
114
|
+
declare const SideRight: React.FC<IconProps>;
|
|
115
|
+
|
|
116
|
+
declare const Sport: React.FC<IconProps>;
|
|
117
|
+
|
|
118
|
+
declare const Share: React.FC<IconProps>;
|
|
119
|
+
|
|
120
|
+
declare const SideLeft: React.FC<IconProps>;
|
|
121
|
+
|
|
122
|
+
declare const Security: React.FC<IconProps>;
|
|
123
|
+
|
|
124
|
+
declare const Setting: React.FC<IconProps>;
|
|
125
|
+
|
|
126
|
+
declare const ScreenDefault: React.FC<IconProps>;
|
|
127
|
+
|
|
128
|
+
declare const ScreenFull: React.FC<IconProps>;
|
|
129
|
+
|
|
130
|
+
declare const Search: React.FC<IconProps>;
|
|
131
|
+
|
|
132
|
+
declare const Reload: React.FC<IconProps>;
|
|
133
|
+
|
|
134
|
+
declare const Reloadto: React.FC<IconProps>;
|
|
135
|
+
|
|
136
|
+
declare const Question: React.FC<IconProps>;
|
|
137
|
+
|
|
138
|
+
declare const Redo: React.FC<IconProps>;
|
|
139
|
+
|
|
140
|
+
declare const Refly: React.FC<IconProps>;
|
|
141
|
+
|
|
142
|
+
declare const Finder: React.FC<IconProps>;
|
|
143
|
+
|
|
144
|
+
declare const Fullscreen: React.FC<IconProps>;
|
|
145
|
+
|
|
146
|
+
declare const Game: React.FC<IconProps>;
|
|
147
|
+
|
|
148
|
+
declare const Gemini: React.FC<IconProps>;
|
|
149
|
+
|
|
150
|
+
declare const Hamburger: React.FC<IconProps>;
|
|
151
|
+
|
|
152
|
+
declare const InterfaceDark: React.FC<IconProps>;
|
|
153
|
+
|
|
154
|
+
declare const InterfaceLight: React.FC<IconProps>;
|
|
155
|
+
|
|
156
|
+
declare const Jump: React.FC<IconProps>;
|
|
157
|
+
|
|
158
|
+
declare const Labs: React.FC<IconProps>;
|
|
159
|
+
|
|
160
|
+
declare const Mail: React.FC<IconProps>;
|
|
161
|
+
|
|
162
|
+
declare const Map: React.FC<IconProps>;
|
|
163
|
+
|
|
164
|
+
declare const Markdown: React.FC<IconProps>;
|
|
165
|
+
|
|
166
|
+
declare const More: React.FC<IconProps>;
|
|
167
|
+
|
|
168
|
+
declare const Mouse: React.FC<IconProps>;
|
|
169
|
+
|
|
170
|
+
declare const Note1: React.FC<IconProps>;
|
|
171
|
+
|
|
172
|
+
declare const Note: React.FC<IconProps>;
|
|
173
|
+
|
|
174
|
+
declare const Clone: React.FC<IconProps>;
|
|
175
|
+
|
|
176
|
+
declare const Computer: React.FC<IconProps>;
|
|
177
|
+
|
|
178
|
+
declare const Copy: React.FC<IconProps>;
|
|
179
|
+
|
|
180
|
+
declare const Creadit: React.FC<IconProps>;
|
|
181
|
+
|
|
182
|
+
declare const Delete: React.FC<IconProps>;
|
|
183
|
+
|
|
184
|
+
declare const Delivery: React.FC<IconProps>;
|
|
185
|
+
|
|
186
|
+
declare const Download: React.FC<IconProps>;
|
|
187
|
+
|
|
188
|
+
declare const ArrowDown: React.FC<IconProps>;
|
|
189
|
+
|
|
190
|
+
declare const ArrowLeft: React.FC<IconProps>;
|
|
191
|
+
|
|
192
|
+
declare const ArrowRight: React.FC<IconProps>;
|
|
193
|
+
|
|
194
|
+
declare const ArrowUp: React.FC<IconProps>;
|
|
195
|
+
|
|
196
|
+
declare const Autolayout: React.FC<IconProps>;
|
|
197
|
+
|
|
198
|
+
declare const Back: React.FC<IconProps>;
|
|
199
|
+
|
|
200
|
+
declare const Building: React.FC<IconProps>;
|
|
201
|
+
|
|
202
|
+
declare const Chat: React.FC<IconProps>;
|
|
203
|
+
|
|
204
|
+
declare const Checked: React.FC<IconProps>;
|
|
205
|
+
|
|
206
|
+
declare const Claude: React.FC<IconProps>;
|
|
207
|
+
|
|
208
|
+
declare const Addcontext: React.FC<IconProps>;
|
|
209
|
+
|
|
210
|
+
declare const Agent: React.FC<IconProps>;
|
|
211
|
+
|
|
212
|
+
declare const AiChat: React.FC<IconProps>;
|
|
213
|
+
|
|
214
|
+
declare const Video: React.FC<IconProps>;
|
|
215
|
+
|
|
216
|
+
export { Account, Addcontext, Agent, AiChat, Appearance, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Attachment, Autolayout, Back, Building, Cancelled, Chat, Checked, Claude, Clone, Code, Code1, Community, Completed, Computer, Copy, Creadit, Data, Delete, Delivery, DesignPattern, Download, Edit, EditSmart, Finder, Flow, FreeCreation, Fullscreen, Game, Gemini, Hamburger, History, Icon, IconProps, InputContext, InterfaceDark, InterfaceLight, Jump, Knowledge, KnowledgeBase, Labs, Language, LargeModel, Logic, Mail, Map, Markdown, ModelProvider, More, Mouse, NewConversation, Note, Note1, Output, Page, Parse, Pending, Play, Project, ProjectItem, Question, Redo, Reference, Refly, Reload, Reloadto, Resource, Running, ScreenDefault, ScreenFull, Search, Security, Setting, Settings, Share, SideLeft, SideRight, Sport, Start, SubNode, Subscription, Thinking, Tools, Touchpad, Travel, Treemenu, Undo, University, Upgrade, Video, Wait, Weather, Web, Web1, Wiki, ZoomIn, ZoomOut };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
declare const Icon: React.FC<IconProps>;
|
|
9
|
+
|
|
10
|
+
declare const Language: React.FC<IconProps>;
|
|
11
|
+
|
|
12
|
+
declare const Account: React.FC<IconProps>;
|
|
13
|
+
|
|
14
|
+
declare const Resource: React.FC<IconProps>;
|
|
15
|
+
|
|
16
|
+
declare const InputContext: React.FC<IconProps>;
|
|
17
|
+
|
|
18
|
+
declare const Output: React.FC<IconProps>;
|
|
19
|
+
|
|
20
|
+
declare const Running: React.FC<IconProps>;
|
|
21
|
+
|
|
22
|
+
declare const Logic: React.FC<IconProps>;
|
|
23
|
+
|
|
24
|
+
declare const Settings: React.FC<IconProps>;
|
|
25
|
+
|
|
26
|
+
declare const Attachment: React.FC<IconProps>;
|
|
27
|
+
|
|
28
|
+
declare const Page: React.FC<IconProps>;
|
|
29
|
+
|
|
30
|
+
declare const Project: React.FC<IconProps>;
|
|
31
|
+
|
|
32
|
+
declare const ProjectItem: React.FC<IconProps>;
|
|
33
|
+
|
|
34
|
+
declare const KnowledgeBase: React.FC<IconProps>;
|
|
35
|
+
|
|
36
|
+
declare const Community: React.FC<IconProps>;
|
|
37
|
+
|
|
38
|
+
declare const EditSmart: React.FC<IconProps>;
|
|
39
|
+
|
|
40
|
+
declare const Edit: React.FC<IconProps>;
|
|
41
|
+
|
|
42
|
+
declare const Web1: React.FC<IconProps>;
|
|
43
|
+
|
|
44
|
+
declare const Web: React.FC<IconProps>;
|
|
45
|
+
|
|
46
|
+
declare const FreeCreation: React.FC<IconProps>;
|
|
47
|
+
|
|
48
|
+
declare const Parse: React.FC<IconProps>;
|
|
49
|
+
|
|
50
|
+
declare const Subscription: React.FC<IconProps>;
|
|
51
|
+
|
|
52
|
+
declare const DesignPattern: React.FC<IconProps>;
|
|
53
|
+
|
|
54
|
+
declare const Reference: React.FC<IconProps>;
|
|
55
|
+
|
|
56
|
+
declare const Pending: React.FC<IconProps>;
|
|
57
|
+
|
|
58
|
+
declare const Thinking: React.FC<IconProps>;
|
|
59
|
+
|
|
60
|
+
declare const Play: React.FC<IconProps>;
|
|
61
|
+
|
|
62
|
+
declare const Data: React.FC<IconProps>;
|
|
63
|
+
|
|
64
|
+
declare const NewConversation: React.FC<IconProps>;
|
|
65
|
+
|
|
66
|
+
declare const ModelProvider: React.FC<IconProps>;
|
|
67
|
+
|
|
68
|
+
declare const Flow: React.FC<IconProps>;
|
|
69
|
+
|
|
70
|
+
declare const Knowledge: React.FC<IconProps>;
|
|
71
|
+
|
|
72
|
+
declare const History: React.FC<IconProps>;
|
|
73
|
+
|
|
74
|
+
declare const Appearance: React.FC<IconProps>;
|
|
75
|
+
|
|
76
|
+
declare const LargeModel: React.FC<IconProps>;
|
|
77
|
+
|
|
78
|
+
declare const Cancelled: React.FC<IconProps>;
|
|
79
|
+
|
|
80
|
+
declare const Completed: React.FC<IconProps>;
|
|
81
|
+
|
|
82
|
+
declare const SubNode: React.FC<IconProps>;
|
|
83
|
+
|
|
84
|
+
declare const Code1: React.FC<IconProps>;
|
|
85
|
+
|
|
86
|
+
declare const Code: React.FC<IconProps>;
|
|
87
|
+
|
|
88
|
+
declare const ZoomIn: React.FC<IconProps>;
|
|
89
|
+
|
|
90
|
+
declare const ZoomOut: React.FC<IconProps>;
|
|
91
|
+
|
|
92
|
+
declare const Wiki: React.FC<IconProps>;
|
|
93
|
+
|
|
94
|
+
declare const Upgrade: React.FC<IconProps>;
|
|
95
|
+
|
|
96
|
+
declare const Wait: React.FC<IconProps>;
|
|
97
|
+
|
|
98
|
+
declare const Weather: React.FC<IconProps>;
|
|
99
|
+
|
|
100
|
+
declare const Touchpad: React.FC<IconProps>;
|
|
101
|
+
|
|
102
|
+
declare const Travel: React.FC<IconProps>;
|
|
103
|
+
|
|
104
|
+
declare const Treemenu: React.FC<IconProps>;
|
|
105
|
+
|
|
106
|
+
declare const Undo: React.FC<IconProps>;
|
|
107
|
+
|
|
108
|
+
declare const University: React.FC<IconProps>;
|
|
109
|
+
|
|
110
|
+
declare const Tools: React.FC<IconProps>;
|
|
111
|
+
|
|
112
|
+
declare const Start: React.FC<IconProps>;
|
|
113
|
+
|
|
114
|
+
declare const SideRight: React.FC<IconProps>;
|
|
115
|
+
|
|
116
|
+
declare const Sport: React.FC<IconProps>;
|
|
117
|
+
|
|
118
|
+
declare const Share: React.FC<IconProps>;
|
|
119
|
+
|
|
120
|
+
declare const SideLeft: React.FC<IconProps>;
|
|
121
|
+
|
|
122
|
+
declare const Security: React.FC<IconProps>;
|
|
123
|
+
|
|
124
|
+
declare const Setting: React.FC<IconProps>;
|
|
125
|
+
|
|
126
|
+
declare const ScreenDefault: React.FC<IconProps>;
|
|
127
|
+
|
|
128
|
+
declare const ScreenFull: React.FC<IconProps>;
|
|
129
|
+
|
|
130
|
+
declare const Search: React.FC<IconProps>;
|
|
131
|
+
|
|
132
|
+
declare const Reload: React.FC<IconProps>;
|
|
133
|
+
|
|
134
|
+
declare const Reloadto: React.FC<IconProps>;
|
|
135
|
+
|
|
136
|
+
declare const Question: React.FC<IconProps>;
|
|
137
|
+
|
|
138
|
+
declare const Redo: React.FC<IconProps>;
|
|
139
|
+
|
|
140
|
+
declare const Refly: React.FC<IconProps>;
|
|
141
|
+
|
|
142
|
+
declare const Finder: React.FC<IconProps>;
|
|
143
|
+
|
|
144
|
+
declare const Fullscreen: React.FC<IconProps>;
|
|
145
|
+
|
|
146
|
+
declare const Game: React.FC<IconProps>;
|
|
147
|
+
|
|
148
|
+
declare const Gemini: React.FC<IconProps>;
|
|
149
|
+
|
|
150
|
+
declare const Hamburger: React.FC<IconProps>;
|
|
151
|
+
|
|
152
|
+
declare const InterfaceDark: React.FC<IconProps>;
|
|
153
|
+
|
|
154
|
+
declare const InterfaceLight: React.FC<IconProps>;
|
|
155
|
+
|
|
156
|
+
declare const Jump: React.FC<IconProps>;
|
|
157
|
+
|
|
158
|
+
declare const Labs: React.FC<IconProps>;
|
|
159
|
+
|
|
160
|
+
declare const Mail: React.FC<IconProps>;
|
|
161
|
+
|
|
162
|
+
declare const Map: React.FC<IconProps>;
|
|
163
|
+
|
|
164
|
+
declare const Markdown: React.FC<IconProps>;
|
|
165
|
+
|
|
166
|
+
declare const More: React.FC<IconProps>;
|
|
167
|
+
|
|
168
|
+
declare const Mouse: React.FC<IconProps>;
|
|
169
|
+
|
|
170
|
+
declare const Note1: React.FC<IconProps>;
|
|
171
|
+
|
|
172
|
+
declare const Note: React.FC<IconProps>;
|
|
173
|
+
|
|
174
|
+
declare const Clone: React.FC<IconProps>;
|
|
175
|
+
|
|
176
|
+
declare const Computer: React.FC<IconProps>;
|
|
177
|
+
|
|
178
|
+
declare const Copy: React.FC<IconProps>;
|
|
179
|
+
|
|
180
|
+
declare const Creadit: React.FC<IconProps>;
|
|
181
|
+
|
|
182
|
+
declare const Delete: React.FC<IconProps>;
|
|
183
|
+
|
|
184
|
+
declare const Delivery: React.FC<IconProps>;
|
|
185
|
+
|
|
186
|
+
declare const Download: React.FC<IconProps>;
|
|
187
|
+
|
|
188
|
+
declare const ArrowDown: React.FC<IconProps>;
|
|
189
|
+
|
|
190
|
+
declare const ArrowLeft: React.FC<IconProps>;
|
|
191
|
+
|
|
192
|
+
declare const ArrowRight: React.FC<IconProps>;
|
|
193
|
+
|
|
194
|
+
declare const ArrowUp: React.FC<IconProps>;
|
|
195
|
+
|
|
196
|
+
declare const Autolayout: React.FC<IconProps>;
|
|
197
|
+
|
|
198
|
+
declare const Back: React.FC<IconProps>;
|
|
199
|
+
|
|
200
|
+
declare const Building: React.FC<IconProps>;
|
|
201
|
+
|
|
202
|
+
declare const Chat: React.FC<IconProps>;
|
|
203
|
+
|
|
204
|
+
declare const Checked: React.FC<IconProps>;
|
|
205
|
+
|
|
206
|
+
declare const Claude: React.FC<IconProps>;
|
|
207
|
+
|
|
208
|
+
declare const Addcontext: React.FC<IconProps>;
|
|
209
|
+
|
|
210
|
+
declare const Agent: React.FC<IconProps>;
|
|
211
|
+
|
|
212
|
+
declare const AiChat: React.FC<IconProps>;
|
|
213
|
+
|
|
214
|
+
declare const Video: React.FC<IconProps>;
|
|
215
|
+
|
|
216
|
+
export { Account, Addcontext, Agent, AiChat, Appearance, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Attachment, Autolayout, Back, Building, Cancelled, Chat, Checked, Claude, Clone, Code, Code1, Community, Completed, Computer, Copy, Creadit, Data, Delete, Delivery, DesignPattern, Download, Edit, EditSmart, Finder, Flow, FreeCreation, Fullscreen, Game, Gemini, Hamburger, History, Icon, IconProps, InputContext, InterfaceDark, InterfaceLight, Jump, Knowledge, KnowledgeBase, Labs, Language, LargeModel, Logic, Mail, Map, Markdown, ModelProvider, More, Mouse, NewConversation, Note, Note1, Output, Page, Parse, Pending, Play, Project, ProjectItem, Question, Redo, Reference, Refly, Reload, Reloadto, Resource, Running, ScreenDefault, ScreenFull, Search, Security, Setting, Settings, Share, SideLeft, SideRight, Sport, Start, SubNode, Subscription, Thinking, Tools, Touchpad, Travel, Treemenu, Undo, University, Upgrade, Video, Wait, Weather, Web, Web1, Wiki, ZoomIn, ZoomOut };
|