@snhaman/pollymorph 1.4.0 → 1.5.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/dist/fonts/PDS-Icon-Font-20.ttf +0 -0
- package/dist/fonts/PDS-Icon-Font-20.woff2 +0 -0
- package/dist/icons.d.mts +23 -0
- package/dist/icons.d.ts +23 -0
- package/dist/icons.js +1165 -0
- package/dist/icons.js.map +1 -0
- package/dist/icons.mjs +1135 -0
- package/dist/icons.mjs.map +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1139 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1133 -0
- package/dist/index.mjs.map +1 -1
- package/dist/pds-icons.css +117 -0
- package/dist/pollymorph.css +573 -0
- package/dist/react-icons.d.mts +753 -0
- package/dist/react-icons.d.ts +753 -0
- package/dist/react-icons.js +3353 -0
- package/dist/react-icons.js.map +1 -0
- package/dist/react-icons.mjs +3143 -0
- package/dist/react-icons.mjs.map +1 -0
- package/dist/svg.d.mts +187 -0
- package/dist/svg.d.ts +187 -0
- package/dist/svg.js +1064 -0
- package/dist/svg.js.map +1 -0
- package/dist/svg.mjs +855 -0
- package/dist/svg.mjs.map +1 -0
- package/package.json +33 -2
|
@@ -0,0 +1,753 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
5
|
+
/** Icon size in px (default: 24) */
|
|
6
|
+
size?: number | string;
|
|
7
|
+
/** Icon color — maps to CSS currentColor */
|
|
8
|
+
color?: string;
|
|
9
|
+
}
|
|
10
|
+
declare const IconMeatballsSettings: {
|
|
11
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
declare const IconAddToShortlist: {
|
|
15
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
declare const IconShortlist: {
|
|
19
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
20
|
+
displayName: string;
|
|
21
|
+
};
|
|
22
|
+
declare const IconUploadFile: {
|
|
23
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
24
|
+
displayName: string;
|
|
25
|
+
};
|
|
26
|
+
declare const IconDownloadFile: {
|
|
27
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
28
|
+
displayName: string;
|
|
29
|
+
};
|
|
30
|
+
declare const IconEdit: {
|
|
31
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
32
|
+
displayName: string;
|
|
33
|
+
};
|
|
34
|
+
declare const IconDuplicateOrCopy: {
|
|
35
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
36
|
+
displayName: string;
|
|
37
|
+
};
|
|
38
|
+
declare const IconPrint: {
|
|
39
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
40
|
+
displayName: string;
|
|
41
|
+
};
|
|
42
|
+
declare const IconOpenInNewWindow: {
|
|
43
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
44
|
+
displayName: string;
|
|
45
|
+
};
|
|
46
|
+
declare const IconTableEditor: {
|
|
47
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
48
|
+
displayName: string;
|
|
49
|
+
};
|
|
50
|
+
declare const IconPollyFlow: {
|
|
51
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
52
|
+
displayName: string;
|
|
53
|
+
};
|
|
54
|
+
declare const IconPollyPipelines: {
|
|
55
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
56
|
+
displayName: string;
|
|
57
|
+
};
|
|
58
|
+
declare const IconHamburgerMenuToggle: {
|
|
59
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
60
|
+
displayName: string;
|
|
61
|
+
};
|
|
62
|
+
declare const IconHamburgerMenu: {
|
|
63
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
64
|
+
displayName: string;
|
|
65
|
+
};
|
|
66
|
+
declare const IconCheckBoxSelected: {
|
|
67
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
68
|
+
displayName: string;
|
|
69
|
+
};
|
|
70
|
+
declare const IconCheckBoxIndeterminate: {
|
|
71
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
72
|
+
displayName: string;
|
|
73
|
+
};
|
|
74
|
+
declare const IconAddReport: {
|
|
75
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
76
|
+
displayName: string;
|
|
77
|
+
};
|
|
78
|
+
declare const IconViewReport: {
|
|
79
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
80
|
+
displayName: string;
|
|
81
|
+
};
|
|
82
|
+
declare const IconKey: {
|
|
83
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
84
|
+
displayName: string;
|
|
85
|
+
};
|
|
86
|
+
declare const IconDatabaseIcon: {
|
|
87
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
88
|
+
displayName: string;
|
|
89
|
+
};
|
|
90
|
+
declare const IconTableSort: {
|
|
91
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
92
|
+
displayName: string;
|
|
93
|
+
};
|
|
94
|
+
declare const IconDatabaseSettings: {
|
|
95
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
96
|
+
displayName: string;
|
|
97
|
+
};
|
|
98
|
+
declare const IconDatabaseEditIcon: {
|
|
99
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
displayName: string;
|
|
101
|
+
};
|
|
102
|
+
declare const IconDatabaseAddIcon: {
|
|
103
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
104
|
+
displayName: string;
|
|
105
|
+
};
|
|
106
|
+
declare const IconFrameworkOntologyFlowchart: {
|
|
107
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
108
|
+
displayName: string;
|
|
109
|
+
};
|
|
110
|
+
declare const IconThumbUpFilled: {
|
|
111
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
112
|
+
displayName: string;
|
|
113
|
+
};
|
|
114
|
+
declare const IconThumbUp: {
|
|
115
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
displayName: string;
|
|
117
|
+
};
|
|
118
|
+
declare const IconThumbDownFilled: {
|
|
119
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
120
|
+
displayName: string;
|
|
121
|
+
};
|
|
122
|
+
declare const IconThumbDown: {
|
|
123
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
124
|
+
displayName: string;
|
|
125
|
+
};
|
|
126
|
+
declare const IconMailIcon: {
|
|
127
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
128
|
+
displayName: string;
|
|
129
|
+
};
|
|
130
|
+
declare const IconReply: {
|
|
131
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
132
|
+
displayName: string;
|
|
133
|
+
};
|
|
134
|
+
declare const IconSave: {
|
|
135
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
136
|
+
displayName: string;
|
|
137
|
+
};
|
|
138
|
+
declare const IconSend: {
|
|
139
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
140
|
+
displayName: string;
|
|
141
|
+
};
|
|
142
|
+
declare const IconChatIcon: {
|
|
143
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
144
|
+
displayName: string;
|
|
145
|
+
};
|
|
146
|
+
declare const IconComment: {
|
|
147
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
148
|
+
displayName: string;
|
|
149
|
+
};
|
|
150
|
+
declare const IconEditTableIcon: {
|
|
151
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
152
|
+
displayName: string;
|
|
153
|
+
};
|
|
154
|
+
declare const IconAddTable: {
|
|
155
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
156
|
+
displayName: string;
|
|
157
|
+
};
|
|
158
|
+
declare const IconEditTableRow: {
|
|
159
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
160
|
+
displayName: string;
|
|
161
|
+
};
|
|
162
|
+
declare const IconAddTableRow: {
|
|
163
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
164
|
+
displayName: string;
|
|
165
|
+
};
|
|
166
|
+
declare const IconEditTableColumn: {
|
|
167
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
168
|
+
displayName: string;
|
|
169
|
+
};
|
|
170
|
+
declare const IconAddTableColumn: {
|
|
171
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
172
|
+
displayName: string;
|
|
173
|
+
};
|
|
174
|
+
declare const IconDashboardIcon: {
|
|
175
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
176
|
+
displayName: string;
|
|
177
|
+
};
|
|
178
|
+
declare const IconDelete: {
|
|
179
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
180
|
+
displayName: string;
|
|
181
|
+
};
|
|
182
|
+
declare const IconOrganisationIcon: {
|
|
183
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
184
|
+
displayName: string;
|
|
185
|
+
};
|
|
186
|
+
declare const IconDetailsIcons: {
|
|
187
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
188
|
+
displayName: string;
|
|
189
|
+
};
|
|
190
|
+
declare const IconUserGroups: {
|
|
191
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
192
|
+
displayName: string;
|
|
193
|
+
};
|
|
194
|
+
declare const IconForeignKey: {
|
|
195
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
196
|
+
displayName: string;
|
|
197
|
+
};
|
|
198
|
+
declare const IconBlockCancelled: {
|
|
199
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
200
|
+
displayName: string;
|
|
201
|
+
};
|
|
202
|
+
declare const IconHourglassRunning: {
|
|
203
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
204
|
+
displayName: string;
|
|
205
|
+
};
|
|
206
|
+
declare const IconCheckCircleDone: {
|
|
207
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
208
|
+
displayName: string;
|
|
209
|
+
};
|
|
210
|
+
declare const IconWarning: {
|
|
211
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
212
|
+
displayName: string;
|
|
213
|
+
};
|
|
214
|
+
declare const IconCohorts: {
|
|
215
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
216
|
+
displayName: string;
|
|
217
|
+
};
|
|
218
|
+
declare const IconMedicine: {
|
|
219
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
220
|
+
displayName: string;
|
|
221
|
+
};
|
|
222
|
+
declare const IconOpenFolder: {
|
|
223
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
224
|
+
displayName: string;
|
|
225
|
+
};
|
|
226
|
+
declare const IconAiIcon: {
|
|
227
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
228
|
+
displayName: string;
|
|
229
|
+
};
|
|
230
|
+
declare const IconAiKnowledge: {
|
|
231
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
232
|
+
displayName: string;
|
|
233
|
+
};
|
|
234
|
+
declare const IconAiInsights: {
|
|
235
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
236
|
+
displayName: string;
|
|
237
|
+
};
|
|
238
|
+
declare const IconDataProductIcon: {
|
|
239
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
240
|
+
displayName: string;
|
|
241
|
+
};
|
|
242
|
+
declare const IconPerformance: {
|
|
243
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
244
|
+
displayName: string;
|
|
245
|
+
};
|
|
246
|
+
declare const IconCollections: {
|
|
247
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
248
|
+
displayName: string;
|
|
249
|
+
};
|
|
250
|
+
declare const IconConfig: {
|
|
251
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
252
|
+
displayName: string;
|
|
253
|
+
};
|
|
254
|
+
declare const IconReviewerTasks: {
|
|
255
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
256
|
+
displayName: string;
|
|
257
|
+
};
|
|
258
|
+
declare const IconChatHistory: {
|
|
259
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
260
|
+
displayName: string;
|
|
261
|
+
};
|
|
262
|
+
declare const IconShareIcon: {
|
|
263
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
264
|
+
displayName: string;
|
|
265
|
+
};
|
|
266
|
+
declare const IconAnalyse: {
|
|
267
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
268
|
+
displayName: string;
|
|
269
|
+
};
|
|
270
|
+
declare const IconCollectionsAlt: {
|
|
271
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
272
|
+
displayName: string;
|
|
273
|
+
};
|
|
274
|
+
declare const IconReviewerTasksAlt: {
|
|
275
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
276
|
+
displayName: string;
|
|
277
|
+
};
|
|
278
|
+
declare const IconPollyScout: {
|
|
279
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
280
|
+
displayName: string;
|
|
281
|
+
};
|
|
282
|
+
declare const IconPendingTasks: {
|
|
283
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
284
|
+
displayName: string;
|
|
285
|
+
};
|
|
286
|
+
declare const IconPollyXtract: {
|
|
287
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
288
|
+
displayName: string;
|
|
289
|
+
};
|
|
290
|
+
declare const IconLogout: {
|
|
291
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
292
|
+
displayName: string;
|
|
293
|
+
};
|
|
294
|
+
declare const IconLogin: {
|
|
295
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
296
|
+
displayName: string;
|
|
297
|
+
};
|
|
298
|
+
declare const IconMic: {
|
|
299
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
300
|
+
displayName: string;
|
|
301
|
+
};
|
|
302
|
+
declare const IconMicOff: {
|
|
303
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
304
|
+
displayName: string;
|
|
305
|
+
};
|
|
306
|
+
declare const IconAttach: {
|
|
307
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
308
|
+
displayName: string;
|
|
309
|
+
};
|
|
310
|
+
declare const IconStarEmpty: {
|
|
311
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
312
|
+
displayName: string;
|
|
313
|
+
};
|
|
314
|
+
declare const IconAiInsight: {
|
|
315
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
316
|
+
displayName: string;
|
|
317
|
+
};
|
|
318
|
+
declare const IconPollyKG: {
|
|
319
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
320
|
+
displayName: string;
|
|
321
|
+
};
|
|
322
|
+
declare const IconVideo: {
|
|
323
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
324
|
+
displayName: string;
|
|
325
|
+
};
|
|
326
|
+
declare const IconFiles: {
|
|
327
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
328
|
+
displayName: string;
|
|
329
|
+
};
|
|
330
|
+
declare const IconAudio: {
|
|
331
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
332
|
+
displayName: string;
|
|
333
|
+
};
|
|
334
|
+
declare const IconCamera: {
|
|
335
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
336
|
+
displayName: string;
|
|
337
|
+
};
|
|
338
|
+
declare const IconImages: {
|
|
339
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
340
|
+
displayName: string;
|
|
341
|
+
};
|
|
342
|
+
declare const IconPollyPipelinesAlt: {
|
|
343
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
344
|
+
displayName: string;
|
|
345
|
+
};
|
|
346
|
+
declare const IconCoScientistIcon: {
|
|
347
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
348
|
+
displayName: string;
|
|
349
|
+
};
|
|
350
|
+
declare const IconYoutubeSearchedFor: {
|
|
351
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
352
|
+
displayName: string;
|
|
353
|
+
};
|
|
354
|
+
declare const IconFilter: {
|
|
355
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
356
|
+
displayName: string;
|
|
357
|
+
};
|
|
358
|
+
declare const IconZoomIn: {
|
|
359
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
360
|
+
displayName: string;
|
|
361
|
+
};
|
|
362
|
+
declare const IconZoomOut: {
|
|
363
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
364
|
+
displayName: string;
|
|
365
|
+
};
|
|
366
|
+
declare const IconAddCircle: {
|
|
367
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
368
|
+
displayName: string;
|
|
369
|
+
};
|
|
370
|
+
declare const IconAddCircleOutline: {
|
|
371
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
372
|
+
displayName: string;
|
|
373
|
+
};
|
|
374
|
+
declare const IconRemove: {
|
|
375
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
376
|
+
displayName: string;
|
|
377
|
+
};
|
|
378
|
+
declare const IconRemoveCircle: {
|
|
379
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
380
|
+
displayName: string;
|
|
381
|
+
};
|
|
382
|
+
declare const IconRemoveCircleOutline: {
|
|
383
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
384
|
+
displayName: string;
|
|
385
|
+
};
|
|
386
|
+
declare const IconPlayArrow: {
|
|
387
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
388
|
+
displayName: string;
|
|
389
|
+
};
|
|
390
|
+
declare const IconPause: {
|
|
391
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
392
|
+
displayName: string;
|
|
393
|
+
};
|
|
394
|
+
declare const IconStop: {
|
|
395
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
396
|
+
displayName: string;
|
|
397
|
+
};
|
|
398
|
+
declare const IconAdd: {
|
|
399
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
400
|
+
displayName: string;
|
|
401
|
+
};
|
|
402
|
+
declare const IconPlayCircle: {
|
|
403
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
404
|
+
displayName: string;
|
|
405
|
+
};
|
|
406
|
+
declare const IconPauseCircle: {
|
|
407
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
408
|
+
displayName: string;
|
|
409
|
+
};
|
|
410
|
+
declare const IconStopCircle: {
|
|
411
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
412
|
+
displayName: string;
|
|
413
|
+
};
|
|
414
|
+
declare const IconReplay: {
|
|
415
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
416
|
+
displayName: string;
|
|
417
|
+
};
|
|
418
|
+
declare const IconLoopRefreshUpdate: {
|
|
419
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
420
|
+
displayName: string;
|
|
421
|
+
};
|
|
422
|
+
declare const IconForward: {
|
|
423
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
424
|
+
displayName: string;
|
|
425
|
+
};
|
|
426
|
+
declare const IconContract: {
|
|
427
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
428
|
+
displayName: string;
|
|
429
|
+
};
|
|
430
|
+
declare const IconExpand: {
|
|
431
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
432
|
+
displayName: string;
|
|
433
|
+
};
|
|
434
|
+
declare const IconClose: {
|
|
435
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
436
|
+
displayName: string;
|
|
437
|
+
};
|
|
438
|
+
declare const IconUpChevron: {
|
|
439
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
440
|
+
displayName: string;
|
|
441
|
+
};
|
|
442
|
+
declare const IconLeftChevron: {
|
|
443
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
444
|
+
displayName: string;
|
|
445
|
+
};
|
|
446
|
+
declare const IconRightChevron: {
|
|
447
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
448
|
+
displayName: string;
|
|
449
|
+
};
|
|
450
|
+
declare const IconExpandChevron: {
|
|
451
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
452
|
+
displayName: string;
|
|
453
|
+
};
|
|
454
|
+
declare const IconUpCarrot: {
|
|
455
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
456
|
+
displayName: string;
|
|
457
|
+
};
|
|
458
|
+
declare const IconLeftCarrot: {
|
|
459
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
460
|
+
displayName: string;
|
|
461
|
+
};
|
|
462
|
+
declare const IconRightCarrot: {
|
|
463
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
464
|
+
displayName: string;
|
|
465
|
+
};
|
|
466
|
+
declare const IconDownCarrot: {
|
|
467
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
468
|
+
displayName: string;
|
|
469
|
+
};
|
|
470
|
+
declare const IconArrowUp: {
|
|
471
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
472
|
+
displayName: string;
|
|
473
|
+
};
|
|
474
|
+
declare const IconArrowLeftBack: {
|
|
475
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
476
|
+
displayName: string;
|
|
477
|
+
};
|
|
478
|
+
declare const IconArrowRightForward: {
|
|
479
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
480
|
+
displayName: string;
|
|
481
|
+
};
|
|
482
|
+
declare const IconArrowDown: {
|
|
483
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
484
|
+
displayName: string;
|
|
485
|
+
};
|
|
486
|
+
declare const IconNorthEast: {
|
|
487
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
488
|
+
displayName: string;
|
|
489
|
+
};
|
|
490
|
+
declare const IconNorthWest: {
|
|
491
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
492
|
+
displayName: string;
|
|
493
|
+
};
|
|
494
|
+
declare const IconSouthEast: {
|
|
495
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
496
|
+
displayName: string;
|
|
497
|
+
};
|
|
498
|
+
declare const IconSouthWest: {
|
|
499
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
500
|
+
displayName: string;
|
|
501
|
+
};
|
|
502
|
+
declare const IconArrowForwardLarge: {
|
|
503
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
504
|
+
displayName: string;
|
|
505
|
+
};
|
|
506
|
+
declare const IconArrowBackLarge: {
|
|
507
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
508
|
+
displayName: string;
|
|
509
|
+
};
|
|
510
|
+
declare const IconSkipToFirst: {
|
|
511
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
512
|
+
displayName: string;
|
|
513
|
+
};
|
|
514
|
+
declare const IconSkipToLast: {
|
|
515
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
516
|
+
displayName: string;
|
|
517
|
+
};
|
|
518
|
+
declare const IconStarFull: {
|
|
519
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
520
|
+
displayName: string;
|
|
521
|
+
};
|
|
522
|
+
declare const IconVisibilityOn: {
|
|
523
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
524
|
+
displayName: string;
|
|
525
|
+
};
|
|
526
|
+
declare const IconVisibilityOff: {
|
|
527
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
528
|
+
displayName: string;
|
|
529
|
+
};
|
|
530
|
+
declare const IconPinned: {
|
|
531
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
532
|
+
displayName: string;
|
|
533
|
+
};
|
|
534
|
+
declare const IconPin: {
|
|
535
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
536
|
+
displayName: string;
|
|
537
|
+
};
|
|
538
|
+
declare const IconStarHalf: {
|
|
539
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
540
|
+
displayName: string;
|
|
541
|
+
};
|
|
542
|
+
declare const IconPreviousArrow: {
|
|
543
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
544
|
+
displayName: string;
|
|
545
|
+
};
|
|
546
|
+
declare const IconNextArrow: {
|
|
547
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
548
|
+
displayName: string;
|
|
549
|
+
};
|
|
550
|
+
declare const IconFolderOpen: {
|
|
551
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
552
|
+
displayName: string;
|
|
553
|
+
};
|
|
554
|
+
declare const IconFolder: {
|
|
555
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
556
|
+
displayName: string;
|
|
557
|
+
};
|
|
558
|
+
declare const IconCreateNewFolder: {
|
|
559
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
560
|
+
displayName: string;
|
|
561
|
+
};
|
|
562
|
+
declare const IconUploadFolder: {
|
|
563
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
564
|
+
displayName: string;
|
|
565
|
+
};
|
|
566
|
+
declare const IconArchive: {
|
|
567
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
568
|
+
displayName: string;
|
|
569
|
+
};
|
|
570
|
+
declare const IconUnarchive: {
|
|
571
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
572
|
+
displayName: string;
|
|
573
|
+
};
|
|
574
|
+
declare const IconLink: {
|
|
575
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
576
|
+
displayName: string;
|
|
577
|
+
};
|
|
578
|
+
declare const IconDone: {
|
|
579
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
580
|
+
displayName: string;
|
|
581
|
+
};
|
|
582
|
+
declare const IconChartIcon: {
|
|
583
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
584
|
+
displayName: string;
|
|
585
|
+
};
|
|
586
|
+
declare const IconDocument: {
|
|
587
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
588
|
+
displayName: string;
|
|
589
|
+
};
|
|
590
|
+
declare const IconCodeDocument: {
|
|
591
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
592
|
+
displayName: string;
|
|
593
|
+
};
|
|
594
|
+
declare const IconInfo: {
|
|
595
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
596
|
+
displayName: string;
|
|
597
|
+
};
|
|
598
|
+
declare const IconSwap: {
|
|
599
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
600
|
+
displayName: string;
|
|
601
|
+
};
|
|
602
|
+
declare const IconDescription: {
|
|
603
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
604
|
+
displayName: string;
|
|
605
|
+
};
|
|
606
|
+
declare const IconHistory: {
|
|
607
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
608
|
+
displayName: string;
|
|
609
|
+
};
|
|
610
|
+
declare const IconRename: {
|
|
611
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
612
|
+
displayName: string;
|
|
613
|
+
};
|
|
614
|
+
declare const IconPanMove: {
|
|
615
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
616
|
+
displayName: string;
|
|
617
|
+
};
|
|
618
|
+
declare const IconGithub: {
|
|
619
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
620
|
+
displayName: string;
|
|
621
|
+
};
|
|
622
|
+
declare const IconCuration: {
|
|
623
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
624
|
+
displayName: string;
|
|
625
|
+
};
|
|
626
|
+
declare const IconHelpAndSupport: {
|
|
627
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
628
|
+
displayName: string;
|
|
629
|
+
};
|
|
630
|
+
declare const IconUserProfile: {
|
|
631
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
632
|
+
displayName: string;
|
|
633
|
+
};
|
|
634
|
+
declare const IconSettings: {
|
|
635
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
636
|
+
displayName: string;
|
|
637
|
+
};
|
|
638
|
+
declare const IconNotification: {
|
|
639
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
640
|
+
displayName: string;
|
|
641
|
+
};
|
|
642
|
+
declare const IconIngestion: {
|
|
643
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
644
|
+
displayName: string;
|
|
645
|
+
};
|
|
646
|
+
declare const IconOmixLogoSimple: {
|
|
647
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
648
|
+
displayName: string;
|
|
649
|
+
};
|
|
650
|
+
declare const IconWorkspaces: {
|
|
651
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
652
|
+
displayName: string;
|
|
653
|
+
};
|
|
654
|
+
declare const IconApplication: {
|
|
655
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
656
|
+
displayName: string;
|
|
657
|
+
};
|
|
658
|
+
declare const IconUsersOA: {
|
|
659
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
660
|
+
displayName: string;
|
|
661
|
+
};
|
|
662
|
+
declare const IconAdmin: {
|
|
663
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
664
|
+
displayName: string;
|
|
665
|
+
};
|
|
666
|
+
declare const IconCostWallet: {
|
|
667
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
668
|
+
displayName: string;
|
|
669
|
+
};
|
|
670
|
+
declare const IconSplitView: {
|
|
671
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
672
|
+
displayName: string;
|
|
673
|
+
};
|
|
674
|
+
declare const IconSummaryView: {
|
|
675
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
676
|
+
displayName: string;
|
|
677
|
+
};
|
|
678
|
+
declare const IconListView: {
|
|
679
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
680
|
+
displayName: string;
|
|
681
|
+
};
|
|
682
|
+
declare const IconCardView: {
|
|
683
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
684
|
+
displayName: string;
|
|
685
|
+
};
|
|
686
|
+
declare const IconTableView: {
|
|
687
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
688
|
+
displayName: string;
|
|
689
|
+
};
|
|
690
|
+
declare const IconCancelRound: {
|
|
691
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
692
|
+
displayName: string;
|
|
693
|
+
};
|
|
694
|
+
declare const IconUserSingle: {
|
|
695
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
696
|
+
displayName: string;
|
|
697
|
+
};
|
|
698
|
+
declare const IconAddUser: {
|
|
699
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
700
|
+
displayName: string;
|
|
701
|
+
};
|
|
702
|
+
declare const IconCalendarEvent: {
|
|
703
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
704
|
+
displayName: string;
|
|
705
|
+
};
|
|
706
|
+
declare const IconCalendarEmpty: {
|
|
707
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
708
|
+
displayName: string;
|
|
709
|
+
};
|
|
710
|
+
declare const IconCalendarMonth: {
|
|
711
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
712
|
+
displayName: string;
|
|
713
|
+
};
|
|
714
|
+
declare const IconAlarm: {
|
|
715
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
716
|
+
displayName: string;
|
|
717
|
+
};
|
|
718
|
+
declare const IconLoadingIcon: {
|
|
719
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
720
|
+
displayName: string;
|
|
721
|
+
};
|
|
722
|
+
declare const IconSearch: {
|
|
723
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
724
|
+
displayName: string;
|
|
725
|
+
};
|
|
726
|
+
declare const IconDragHandle: {
|
|
727
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
728
|
+
displayName: string;
|
|
729
|
+
};
|
|
730
|
+
declare const IconSortAscending: {
|
|
731
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
732
|
+
displayName: string;
|
|
733
|
+
};
|
|
734
|
+
declare const IconSortDescending: {
|
|
735
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
736
|
+
displayName: string;
|
|
737
|
+
};
|
|
738
|
+
declare const IconEmptyFlag: {
|
|
739
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
740
|
+
displayName: string;
|
|
741
|
+
};
|
|
742
|
+
declare const IconFilledFlag: {
|
|
743
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
744
|
+
displayName: string;
|
|
745
|
+
};
|
|
746
|
+
declare const IconRefreshIcon: {
|
|
747
|
+
({ size, color, style, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
748
|
+
displayName: string;
|
|
749
|
+
};
|
|
750
|
+
/** All icon components keyed by camelCase icon name **/
|
|
751
|
+
declare const IconComponents: Record<string, React.FC<IconProps>>;
|
|
752
|
+
|
|
753
|
+
export { IconAdd, IconAddCircle, IconAddCircleOutline, IconAddReport, IconAddTable, IconAddTableColumn, IconAddTableRow, IconAddToShortlist, IconAddUser, IconAdmin, IconAiIcon, IconAiInsight, IconAiInsights, IconAiKnowledge, IconAlarm, IconAnalyse, IconApplication, IconArchive, IconArrowBackLarge, IconArrowDown, IconArrowForwardLarge, IconArrowLeftBack, IconArrowRightForward, IconArrowUp, IconAttach, IconAudio, IconBlockCancelled, IconCalendarEmpty, IconCalendarEvent, IconCalendarMonth, IconCamera, IconCancelRound, IconCardView, IconChartIcon, IconChatHistory, IconChatIcon, IconCheckBoxIndeterminate, IconCheckBoxSelected, IconCheckCircleDone, IconClose, IconCoScientistIcon, IconCodeDocument, IconCohorts, IconCollections, IconCollectionsAlt, IconComment, IconComponents, IconConfig, IconContract, IconCostWallet, IconCreateNewFolder, IconCuration, IconDashboardIcon, IconDataProductIcon, IconDatabaseAddIcon, IconDatabaseEditIcon, IconDatabaseIcon, IconDatabaseSettings, IconDelete, IconDescription, IconDetailsIcons, IconDocument, IconDone, IconDownCarrot, IconDownloadFile, IconDragHandle, IconDuplicateOrCopy, IconEdit, IconEditTableColumn, IconEditTableIcon, IconEditTableRow, IconEmptyFlag, IconExpand, IconExpandChevron, IconFiles, IconFilledFlag, IconFilter, IconFolder, IconFolderOpen, IconForeignKey, IconForward, IconFrameworkOntologyFlowchart, IconGithub, IconHamburgerMenu, IconHamburgerMenuToggle, IconHelpAndSupport, IconHistory, IconHourglassRunning, IconImages, IconInfo, IconIngestion, IconKey, IconLeftCarrot, IconLeftChevron, IconLink, IconListView, IconLoadingIcon, IconLogin, IconLogout, IconLoopRefreshUpdate, IconMailIcon, IconMeatballsSettings, IconMedicine, IconMic, IconMicOff, IconNextArrow, IconNorthEast, IconNorthWest, IconNotification, IconOmixLogoSimple, IconOpenFolder, IconOpenInNewWindow, IconOrganisationIcon, IconPanMove, IconPause, IconPauseCircle, IconPendingTasks, IconPerformance, IconPin, IconPinned, IconPlayArrow, IconPlayCircle, IconPollyFlow, IconPollyKG, IconPollyPipelines, IconPollyPipelinesAlt, IconPollyScout, IconPollyXtract, IconPreviousArrow, IconPrint, type IconProps, IconRefreshIcon, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRename, IconReplay, IconReply, IconReviewerTasks, IconReviewerTasksAlt, IconRightCarrot, IconRightChevron, IconSave, IconSearch, IconSend, IconSettings, IconShareIcon, IconShortlist, IconSkipToFirst, IconSkipToLast, IconSortAscending, IconSortDescending, IconSouthEast, IconSouthWest, IconSplitView, IconStarEmpty, IconStarFull, IconStarHalf, IconStop, IconStopCircle, IconSummaryView, IconSwap, IconTableEditor, IconTableSort, IconTableView, IconThumbDown, IconThumbDownFilled, IconThumbUp, IconThumbUpFilled, IconUnarchive, IconUpCarrot, IconUpChevron, IconUploadFile, IconUploadFolder, IconUserGroups, IconUserProfile, IconUserSingle, IconUsersOA, IconVideo, IconViewReport, IconVisibilityOff, IconVisibilityOn, IconWarning, IconWorkspaces, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut };
|