@esds-sangam/icons 0.1.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.
Potentially problematic release.
This version of @esds-sangam/icons might be problematic. Click here for more details.
- package/README.md +25 -0
- package/dist/index.d.ts +1185 -0
- package/dist/index.js +3430 -0
- package/package.json +35 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,1185 @@
|
|
|
1
|
+
import * as React$1 from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Add Icon
|
|
5
|
+
* 16×16px
|
|
6
|
+
*
|
|
7
|
+
* Usage:
|
|
8
|
+
* <Add size={16} className="text-neutral-1100" />
|
|
9
|
+
*/
|
|
10
|
+
declare const Add: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* AddFilled Icon
|
|
14
|
+
* 16×16px
|
|
15
|
+
*
|
|
16
|
+
* Usage:
|
|
17
|
+
* <AddFilled size={16} className="text-neutral-1100" />
|
|
18
|
+
*/
|
|
19
|
+
declare const AddFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* AddOutline Icon
|
|
23
|
+
* 16×16px
|
|
24
|
+
*
|
|
25
|
+
* Usage:
|
|
26
|
+
* <AddOutline size={16} className="text-neutral-1100" />
|
|
27
|
+
*/
|
|
28
|
+
declare const AddOutline: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Alert Icon
|
|
32
|
+
* 16×16px
|
|
33
|
+
*
|
|
34
|
+
* Usage:
|
|
35
|
+
* <Alert size={16} className="text-neutral-1100" />
|
|
36
|
+
*/
|
|
37
|
+
declare const Alert: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* AlertFilled Icon
|
|
41
|
+
* 16×16px
|
|
42
|
+
*
|
|
43
|
+
* Usage:
|
|
44
|
+
* <AlertFilled size={16} className="text-neutral-1100" />
|
|
45
|
+
*/
|
|
46
|
+
declare const AlertFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Analytics Icon
|
|
50
|
+
* 16×16px
|
|
51
|
+
*
|
|
52
|
+
* Usage:
|
|
53
|
+
* <Analytics size={16} className="text-neutral-1100" />
|
|
54
|
+
*/
|
|
55
|
+
declare const Analytics: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* ArrowDown Icon
|
|
59
|
+
* 16×16px
|
|
60
|
+
*
|
|
61
|
+
* Usage:
|
|
62
|
+
* <ArrowDown size={16} className="text-neutral-1100" />
|
|
63
|
+
*/
|
|
64
|
+
declare const ArrowDown: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* ArrowLeft Icon
|
|
68
|
+
* 16×16px
|
|
69
|
+
*
|
|
70
|
+
* Usage:
|
|
71
|
+
* <ArrowLeft size={16} className="text-neutral-1100" />
|
|
72
|
+
*/
|
|
73
|
+
declare const ArrowLeft: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* ArrowRight Icon
|
|
77
|
+
* 16×16px
|
|
78
|
+
*
|
|
79
|
+
* Usage:
|
|
80
|
+
* <ArrowRight size={16} className="text-neutral-1100" />
|
|
81
|
+
*/
|
|
82
|
+
declare const ArrowRight: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* ArrowUp Icon
|
|
86
|
+
* 16×16px
|
|
87
|
+
*
|
|
88
|
+
* Usage:
|
|
89
|
+
* <ArrowUp size={16} className="text-neutral-1100" />
|
|
90
|
+
*/
|
|
91
|
+
declare const ArrowUp: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* ArrowUpRight Icon
|
|
95
|
+
* 16×16px
|
|
96
|
+
*
|
|
97
|
+
* Usage:
|
|
98
|
+
* <ArrowUpRight size={16} className="text-neutral-1100" />
|
|
99
|
+
*/
|
|
100
|
+
declare const ArrowUpRight: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Avatar placeholder (avtarimg.svg)
|
|
104
|
+
* Grey circular bg (#EBEBEB) with white silhouette. Same look in all contexts.
|
|
105
|
+
*/
|
|
106
|
+
declare const AvatarPlaceholder: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Avatar icon for side menu expanded state (avtarimg.svg).
|
|
110
|
+
* Grey circle (#EBEBEB) + light grey silhouette (#7C7C7C) - clearly visible on white.
|
|
111
|
+
* Uses inline fills so it works even when Tailwind doesn't process the icons package.
|
|
112
|
+
*/
|
|
113
|
+
declare const AvatarSidemenu: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Bookmark Icon
|
|
117
|
+
* 16×16px
|
|
118
|
+
*
|
|
119
|
+
* Usage:
|
|
120
|
+
* <Bookmark size={16} className="text-neutral-1100" />
|
|
121
|
+
*/
|
|
122
|
+
declare const Bookmark: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* BookmarkAdd Icon
|
|
126
|
+
* 16×16px
|
|
127
|
+
*
|
|
128
|
+
* Usage:
|
|
129
|
+
* <BookmarkAdd size={16} className="text-neutral-1100" />
|
|
130
|
+
*/
|
|
131
|
+
declare const BookmarkAdd: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* BookmarkFilled Icon
|
|
135
|
+
* 16×16px
|
|
136
|
+
*
|
|
137
|
+
* Usage:
|
|
138
|
+
* <BookmarkFilled size={16} className="text-neutral-1100" />
|
|
139
|
+
*/
|
|
140
|
+
declare const BookmarkFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Calendar Icon
|
|
144
|
+
* 16×16px
|
|
145
|
+
*
|
|
146
|
+
* Usage:
|
|
147
|
+
* <Calendar size={16} className="text-neutral-1100" />
|
|
148
|
+
*/
|
|
149
|
+
declare const Calendar: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* CalendarAdd Icon
|
|
153
|
+
* 16×16px
|
|
154
|
+
*
|
|
155
|
+
* Usage:
|
|
156
|
+
* <CalendarAdd size={16} className="text-neutral-1100" />
|
|
157
|
+
*/
|
|
158
|
+
declare const CalendarAdd: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Camera Icon
|
|
162
|
+
* 16×16px
|
|
163
|
+
*
|
|
164
|
+
* Usage:
|
|
165
|
+
* <Camera size={16} className="text-neutral-1100" />
|
|
166
|
+
*/
|
|
167
|
+
declare const Camera: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* CaretDown Icon
|
|
171
|
+
* 16×16px
|
|
172
|
+
*
|
|
173
|
+
* Usage:
|
|
174
|
+
* <CaretDown size={16} className="text-neutral-1100" />
|
|
175
|
+
*/
|
|
176
|
+
declare const CaretDown: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* CaretLeft Icon
|
|
180
|
+
* 16×16px
|
|
181
|
+
*
|
|
182
|
+
* Usage:
|
|
183
|
+
* <CaretLeft size={16} className="text-neutral-1100" />
|
|
184
|
+
*/
|
|
185
|
+
declare const CaretLeft: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* CaretRight Icon
|
|
189
|
+
* 16×16px
|
|
190
|
+
*
|
|
191
|
+
* Usage:
|
|
192
|
+
* <CaretRight size={16} className="text-neutral-1100" />
|
|
193
|
+
*/
|
|
194
|
+
declare const CaretRight: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* CaretUp Icon
|
|
198
|
+
* 16×16px
|
|
199
|
+
*
|
|
200
|
+
* Usage:
|
|
201
|
+
* <CaretUp size={16} className="text-neutral-1100" />
|
|
202
|
+
*/
|
|
203
|
+
declare const CaretUp: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* ChangeRequest Icon
|
|
207
|
+
* 16×16px
|
|
208
|
+
*
|
|
209
|
+
* Usage:
|
|
210
|
+
* <ChangeRequest size={16} className="text-neutral-1100" />
|
|
211
|
+
*/
|
|
212
|
+
declare const ChangeRequest: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* ChevronDown Icon
|
|
216
|
+
* 16×16px
|
|
217
|
+
*
|
|
218
|
+
* Usage:
|
|
219
|
+
* <ChevronDown size={16} className="text-neutral-1100" />
|
|
220
|
+
*/
|
|
221
|
+
declare const ChevronDown: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* ChevronLeft Icon
|
|
225
|
+
* 16×16px
|
|
226
|
+
*
|
|
227
|
+
* Usage:
|
|
228
|
+
* <ChevronLeft size={16} className="text-neutral-1100" />
|
|
229
|
+
*/
|
|
230
|
+
declare const ChevronLeft: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* ChevronRight Icon
|
|
234
|
+
* 16×16px
|
|
235
|
+
*
|
|
236
|
+
* Usage:
|
|
237
|
+
* <ChevronRight size={16} className="text-neutral-1100" />
|
|
238
|
+
*/
|
|
239
|
+
declare const ChevronRight: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* ChevronUp Icon
|
|
243
|
+
* 16×16px
|
|
244
|
+
*
|
|
245
|
+
* Usage:
|
|
246
|
+
* <ChevronUp size={16} className="text-neutral-1100" />
|
|
247
|
+
*/
|
|
248
|
+
declare const ChevronUp: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Close Icon
|
|
252
|
+
* 16×16px
|
|
253
|
+
*
|
|
254
|
+
* Usage:
|
|
255
|
+
* <Close size={16} className="text-neutral-1100" />
|
|
256
|
+
*/
|
|
257
|
+
declare const Close: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* CloseFilled Icon
|
|
261
|
+
* 16×16px
|
|
262
|
+
*
|
|
263
|
+
* Usage:
|
|
264
|
+
* <CloseFilled size={16} className="text-neutral-1100" />
|
|
265
|
+
*/
|
|
266
|
+
declare const CloseFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* CloseOutline Icon
|
|
270
|
+
* 16×16px
|
|
271
|
+
*
|
|
272
|
+
* Usage:
|
|
273
|
+
* <CloseOutline size={16} className="text-neutral-1100" />
|
|
274
|
+
*/
|
|
275
|
+
declare const CloseOutline: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* CloudData Icon
|
|
279
|
+
* 16×16px
|
|
280
|
+
*
|
|
281
|
+
* Usage:
|
|
282
|
+
* <CloudData size={16} className="text-neutral-1100" />
|
|
283
|
+
*/
|
|
284
|
+
declare const CloudData: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* CloudDownload Icon
|
|
288
|
+
* 16×16px
|
|
289
|
+
*
|
|
290
|
+
* Usage:
|
|
291
|
+
* <CloudDownload size={16} className="text-neutral-1100" />
|
|
292
|
+
*/
|
|
293
|
+
declare const CloudDownload: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* CloudLogging Icon
|
|
297
|
+
* 16×16px
|
|
298
|
+
*
|
|
299
|
+
* Usage:
|
|
300
|
+
* <CloudLogging size={16} className="text-neutral-1100" />
|
|
301
|
+
*/
|
|
302
|
+
declare const CloudLogging: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* CloudManagement Icon
|
|
306
|
+
* 16×16px
|
|
307
|
+
*
|
|
308
|
+
* Usage:
|
|
309
|
+
* <CloudManagement size={16} className="text-neutral-1100" />
|
|
310
|
+
*/
|
|
311
|
+
declare const CloudManagement: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* CloudMonitoring Icon
|
|
315
|
+
* 16×16px
|
|
316
|
+
*
|
|
317
|
+
* Usage:
|
|
318
|
+
* <CloudMonitoring size={16} className="text-neutral-1100" />
|
|
319
|
+
*/
|
|
320
|
+
declare const CloudMonitoring: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* CloudOffline Icon
|
|
324
|
+
* 16×16px
|
|
325
|
+
*
|
|
326
|
+
* Usage:
|
|
327
|
+
* <CloudOffline size={16} className="text-neutral-1100" />
|
|
328
|
+
*/
|
|
329
|
+
declare const CloudOffline: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* CloudServices Icon
|
|
333
|
+
* 16×16px
|
|
334
|
+
*
|
|
335
|
+
* Usage:
|
|
336
|
+
* <CloudServices size={16} className="text-neutral-1100" />
|
|
337
|
+
*/
|
|
338
|
+
declare const CloudServices: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* CloudUpload Icon
|
|
342
|
+
* 16×16px
|
|
343
|
+
*
|
|
344
|
+
* Usage:
|
|
345
|
+
* <CloudUpload size={16} className="text-neutral-1100" />
|
|
346
|
+
*/
|
|
347
|
+
declare const CloudUpload: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* Cloudy Icon
|
|
351
|
+
* 16×16px
|
|
352
|
+
*
|
|
353
|
+
* Usage:
|
|
354
|
+
* <Cloudy size={16} className="text-neutral-1100" />
|
|
355
|
+
*/
|
|
356
|
+
declare const Cloudy: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* Collapse Icon
|
|
360
|
+
* 16×16px
|
|
361
|
+
*
|
|
362
|
+
* Usage:
|
|
363
|
+
* <Collapse size={16} className="text-neutral-1100" />
|
|
364
|
+
*/
|
|
365
|
+
declare const Collapse: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* Company Icon
|
|
369
|
+
* 16×16px
|
|
370
|
+
*
|
|
371
|
+
* Usage:
|
|
372
|
+
* <Company size={16} className="text-neutral-1100" />
|
|
373
|
+
*/
|
|
374
|
+
declare const Company: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* CompanyFilled Icon
|
|
378
|
+
* 16×16px
|
|
379
|
+
*
|
|
380
|
+
* Usage:
|
|
381
|
+
* <CompanyFilled size={16} className="text-neutral-1100" />
|
|
382
|
+
*/
|
|
383
|
+
declare const CompanyFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* Contact Icon
|
|
387
|
+
* 16×16px
|
|
388
|
+
*
|
|
389
|
+
* Usage:
|
|
390
|
+
* <Contact size={16} className="text-neutral-1100" />
|
|
391
|
+
*/
|
|
392
|
+
declare const Contact: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* Copy Icon
|
|
396
|
+
* 16×16px
|
|
397
|
+
*
|
|
398
|
+
* Usage:
|
|
399
|
+
* <Copy size={16} className="text-neutral-1100" />
|
|
400
|
+
*/
|
|
401
|
+
declare const Copy: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* Dashboard Icon
|
|
405
|
+
* 16×16px
|
|
406
|
+
*
|
|
407
|
+
* Usage:
|
|
408
|
+
* <Dashboard size={16} className="text-neutral-1100" />
|
|
409
|
+
*/
|
|
410
|
+
declare const Dashboard: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* DataBackup Icon
|
|
414
|
+
* 16×16px
|
|
415
|
+
*
|
|
416
|
+
* Usage:
|
|
417
|
+
* <DataBackup size={16} className="text-neutral-1100" />
|
|
418
|
+
*/
|
|
419
|
+
declare const DataBackup: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* DataView Icon
|
|
423
|
+
* 16×16px
|
|
424
|
+
*
|
|
425
|
+
* Usage:
|
|
426
|
+
* <DataView size={16} className="text-neutral-1100" />
|
|
427
|
+
*/
|
|
428
|
+
declare const DataView: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
429
|
+
|
|
430
|
+
/**
|
|
431
|
+
* Delete Icon
|
|
432
|
+
* 16×16px
|
|
433
|
+
*
|
|
434
|
+
* Usage:
|
|
435
|
+
* <Delete size={16} className="text-neutral-1100" />
|
|
436
|
+
*/
|
|
437
|
+
declare const Delete: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
438
|
+
|
|
439
|
+
/**
|
|
440
|
+
* Document Icon
|
|
441
|
+
* 16×16px
|
|
442
|
+
*
|
|
443
|
+
* Usage:
|
|
444
|
+
* <Document size={16} className="text-neutral-1100" />
|
|
445
|
+
*/
|
|
446
|
+
declare const Document: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* DocumentAdd Icon
|
|
450
|
+
* 16×16px
|
|
451
|
+
*
|
|
452
|
+
* Usage:
|
|
453
|
+
* <DocumentAdd size={16} className="text-neutral-1100" />
|
|
454
|
+
*/
|
|
455
|
+
declare const DocumentAdd: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* DocumentComplete Icon
|
|
459
|
+
* 16×16px
|
|
460
|
+
*
|
|
461
|
+
* Usage:
|
|
462
|
+
* <DocumentComplete size={16} className="text-neutral-1100" />
|
|
463
|
+
*/
|
|
464
|
+
declare const DocumentComplete: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* DocumentExcel Icon
|
|
468
|
+
* 16×16px
|
|
469
|
+
*
|
|
470
|
+
* Usage:
|
|
471
|
+
* <DocumentExcel size={16} className="text-neutral-1100" />
|
|
472
|
+
*/
|
|
473
|
+
declare const DocumentExcel: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* DocumentJpg Icon
|
|
477
|
+
* 16×16px
|
|
478
|
+
*
|
|
479
|
+
* Usage:
|
|
480
|
+
* <DocumentJpg size={16} className="text-neutral-1100" />
|
|
481
|
+
*/
|
|
482
|
+
declare const DocumentJpg: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* DocumentPdf Icon
|
|
486
|
+
* 16×16px
|
|
487
|
+
*
|
|
488
|
+
* Usage:
|
|
489
|
+
* <DocumentPdf size={16} className="text-neutral-1100" />
|
|
490
|
+
*/
|
|
491
|
+
declare const DocumentPdf: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
492
|
+
|
|
493
|
+
/**
|
|
494
|
+
* DocumentPng Icon
|
|
495
|
+
* 16×16px
|
|
496
|
+
*
|
|
497
|
+
* Usage:
|
|
498
|
+
* <DocumentPng size={16} className="text-neutral-1100" />
|
|
499
|
+
*/
|
|
500
|
+
declare const DocumentPng: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
501
|
+
|
|
502
|
+
/**
|
|
503
|
+
* DocumentRemove Icon
|
|
504
|
+
* 16×16px
|
|
505
|
+
*
|
|
506
|
+
* Usage:
|
|
507
|
+
* <DocumentRemove size={16} className="text-neutral-1100" />
|
|
508
|
+
*/
|
|
509
|
+
declare const DocumentRemove: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
510
|
+
|
|
511
|
+
/**
|
|
512
|
+
* DocumentSend Icon
|
|
513
|
+
* 16×16px
|
|
514
|
+
*
|
|
515
|
+
* Usage:
|
|
516
|
+
* <DocumentSend size={16} className="text-neutral-1100" />
|
|
517
|
+
*/
|
|
518
|
+
declare const DocumentSend: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* DocumentView Icon
|
|
522
|
+
* 16×16px
|
|
523
|
+
*
|
|
524
|
+
* Usage:
|
|
525
|
+
* <DocumentView size={16} className="text-neutral-1100" />
|
|
526
|
+
*/
|
|
527
|
+
declare const DocumentView: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* Download Icon
|
|
531
|
+
* 16×16px
|
|
532
|
+
*
|
|
533
|
+
* Usage:
|
|
534
|
+
* <Download size={16} className="text-neutral-1100" />
|
|
535
|
+
*/
|
|
536
|
+
declare const Download: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
537
|
+
|
|
538
|
+
/**
|
|
539
|
+
* Edit Icon
|
|
540
|
+
* 16×16px
|
|
541
|
+
*
|
|
542
|
+
* Usage:
|
|
543
|
+
* <Edit size={16} className="text-neutral-1100" />
|
|
544
|
+
*/
|
|
545
|
+
declare const Edit: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* EditOff Icon
|
|
549
|
+
* 16×16px
|
|
550
|
+
*
|
|
551
|
+
* Usage:
|
|
552
|
+
* <EditOff size={16} className="text-neutral-1100" />
|
|
553
|
+
*/
|
|
554
|
+
declare const EditOff: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* Email Icon
|
|
558
|
+
* 16×16px
|
|
559
|
+
*
|
|
560
|
+
* Usage:
|
|
561
|
+
* <Email size={16} className="text-neutral-1100" />
|
|
562
|
+
*/
|
|
563
|
+
declare const Email: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
564
|
+
|
|
565
|
+
/**
|
|
566
|
+
* EmailNew Icon
|
|
567
|
+
* 16×16px
|
|
568
|
+
*
|
|
569
|
+
* Usage:
|
|
570
|
+
* <EmailNew size={16} className="text-neutral-1100" />
|
|
571
|
+
*/
|
|
572
|
+
declare const EmailNew: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Exit Icon
|
|
576
|
+
* 16×16px
|
|
577
|
+
*
|
|
578
|
+
* Usage:
|
|
579
|
+
* <Exit size={16} className="text-neutral-1100" />
|
|
580
|
+
*/
|
|
581
|
+
declare const Exit: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* Expand Icon
|
|
585
|
+
* 16×16px
|
|
586
|
+
*
|
|
587
|
+
* Usage:
|
|
588
|
+
* <Expand size={16} className="text-neutral-1100" />
|
|
589
|
+
*/
|
|
590
|
+
declare const Expand: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
591
|
+
|
|
592
|
+
/**
|
|
593
|
+
* Export Icon
|
|
594
|
+
* 16×16px
|
|
595
|
+
*
|
|
596
|
+
* Usage:
|
|
597
|
+
* <Export size={16} className="text-neutral-1100" />
|
|
598
|
+
*/
|
|
599
|
+
declare const Export: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
600
|
+
|
|
601
|
+
/**
|
|
602
|
+
* Filter Icon
|
|
603
|
+
* 16×16px
|
|
604
|
+
*
|
|
605
|
+
* Usage:
|
|
606
|
+
* <Filter size={16} className="text-neutral-1100" />
|
|
607
|
+
*/
|
|
608
|
+
declare const Filter: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
609
|
+
|
|
610
|
+
/**
|
|
611
|
+
* FilterEdit Icon
|
|
612
|
+
* 16×16px
|
|
613
|
+
*
|
|
614
|
+
* Usage:
|
|
615
|
+
* <FilterEdit size={16} className="text-neutral-1100" />
|
|
616
|
+
*/
|
|
617
|
+
declare const FilterEdit: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* FilterRemove Icon
|
|
621
|
+
* 16×16px
|
|
622
|
+
*
|
|
623
|
+
* Usage:
|
|
624
|
+
* <FilterRemove size={16} className="text-neutral-1100" />
|
|
625
|
+
*/
|
|
626
|
+
declare const FilterRemove: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* Folder Icon
|
|
630
|
+
* 16×16px
|
|
631
|
+
*
|
|
632
|
+
* Usage:
|
|
633
|
+
* <Folder size={16} className="text-neutral-1100" />
|
|
634
|
+
*/
|
|
635
|
+
declare const Folder: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* FolderAdd Icon
|
|
639
|
+
* 16×16px
|
|
640
|
+
*
|
|
641
|
+
* Usage:
|
|
642
|
+
* <FolderAdd size={16} className="text-neutral-1100" />
|
|
643
|
+
*/
|
|
644
|
+
declare const FolderAdd: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
645
|
+
|
|
646
|
+
/**
|
|
647
|
+
* GridView Icon
|
|
648
|
+
* 16×16px
|
|
649
|
+
*
|
|
650
|
+
* Usage:
|
|
651
|
+
* <GridView size={16} className="text-neutral-1100" />
|
|
652
|
+
*/
|
|
653
|
+
declare const GridView: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
654
|
+
|
|
655
|
+
/**
|
|
656
|
+
* Help Icon
|
|
657
|
+
* 16×16px
|
|
658
|
+
*
|
|
659
|
+
* Usage:
|
|
660
|
+
* <Help size={16} className="text-neutral-1100" />
|
|
661
|
+
*/
|
|
662
|
+
declare const Help: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
663
|
+
|
|
664
|
+
/**
|
|
665
|
+
* HelpFilled Icon
|
|
666
|
+
* 16×16px
|
|
667
|
+
*
|
|
668
|
+
* Usage:
|
|
669
|
+
* <HelpFilled size={16} className="text-neutral-1100" />
|
|
670
|
+
*/
|
|
671
|
+
declare const HelpFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
672
|
+
|
|
673
|
+
/**
|
|
674
|
+
* History Icon
|
|
675
|
+
* 16×16px
|
|
676
|
+
*
|
|
677
|
+
* Usage:
|
|
678
|
+
* <History size={16} className="text-neutral-1100" />
|
|
679
|
+
*/
|
|
680
|
+
declare const History: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
681
|
+
|
|
682
|
+
/**
|
|
683
|
+
* Home Icon
|
|
684
|
+
* 16×16px
|
|
685
|
+
*
|
|
686
|
+
* Usage:
|
|
687
|
+
* <Home size={16} className="text-neutral-1100" />
|
|
688
|
+
*/
|
|
689
|
+
declare const Home: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* HorizontalView Icon
|
|
693
|
+
* 16×16px
|
|
694
|
+
*
|
|
695
|
+
* Usage:
|
|
696
|
+
* <HorizontalView size={16} className="text-neutral-1100" />
|
|
697
|
+
*/
|
|
698
|
+
declare const HorizontalView: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
699
|
+
|
|
700
|
+
/**
|
|
701
|
+
* Info Icon
|
|
702
|
+
* 16×16px
|
|
703
|
+
*
|
|
704
|
+
* Usage:
|
|
705
|
+
* <Info size={16} className="text-neutral-1100" />
|
|
706
|
+
*/
|
|
707
|
+
declare const Info: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* InfoDisabled Icon
|
|
711
|
+
* 16×16px
|
|
712
|
+
*
|
|
713
|
+
* Usage:
|
|
714
|
+
* <InfoDisabled size={16} className="text-neutral-1100" />
|
|
715
|
+
*/
|
|
716
|
+
declare const InfoDisabled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
717
|
+
|
|
718
|
+
/**
|
|
719
|
+
* InfoFilled Icon
|
|
720
|
+
* 16×16px
|
|
721
|
+
*
|
|
722
|
+
* Usage:
|
|
723
|
+
* <InfoFilled size={16} className="text-neutral-1100" />
|
|
724
|
+
*/
|
|
725
|
+
declare const InfoFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
726
|
+
|
|
727
|
+
/**
|
|
728
|
+
* Jpg Icon
|
|
729
|
+
* 16×16px
|
|
730
|
+
*
|
|
731
|
+
* Usage:
|
|
732
|
+
* <Jpg size={16} className="text-neutral-1100" />
|
|
733
|
+
*/
|
|
734
|
+
declare const Jpg: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
735
|
+
|
|
736
|
+
/**
|
|
737
|
+
* Link Icon
|
|
738
|
+
* 16×16px
|
|
739
|
+
*
|
|
740
|
+
* Usage:
|
|
741
|
+
* <Link size={16} className="text-neutral-1100" />
|
|
742
|
+
*/
|
|
743
|
+
declare const Link: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
744
|
+
|
|
745
|
+
/**
|
|
746
|
+
* List Icon
|
|
747
|
+
* 16×16px
|
|
748
|
+
*
|
|
749
|
+
* Usage:
|
|
750
|
+
* <List size={16} className="text-neutral-1100" />
|
|
751
|
+
*/
|
|
752
|
+
declare const List: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
753
|
+
|
|
754
|
+
/**
|
|
755
|
+
* Location Icon
|
|
756
|
+
* 16×16px
|
|
757
|
+
*
|
|
758
|
+
* Usage:
|
|
759
|
+
* <Location size={16} className="text-neutral-1100" />
|
|
760
|
+
*/
|
|
761
|
+
declare const Location: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
762
|
+
|
|
763
|
+
/**
|
|
764
|
+
* LocationFilled Icon
|
|
765
|
+
* 16×16px
|
|
766
|
+
*
|
|
767
|
+
* Usage:
|
|
768
|
+
* <LocationFilled size={16} className="text-neutral-1100" />
|
|
769
|
+
*/
|
|
770
|
+
declare const LocationFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
771
|
+
|
|
772
|
+
/**
|
|
773
|
+
* Locked Icon
|
|
774
|
+
* 16×16px
|
|
775
|
+
*
|
|
776
|
+
* Usage:
|
|
777
|
+
* <Locked size={16} className="text-neutral-1100" />
|
|
778
|
+
*/
|
|
779
|
+
declare const Locked: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
780
|
+
|
|
781
|
+
/**
|
|
782
|
+
* Logs Icon
|
|
783
|
+
* 16×16px
|
|
784
|
+
*
|
|
785
|
+
* Usage:
|
|
786
|
+
* <Logs size={16} className="text-neutral-1100" />
|
|
787
|
+
*/
|
|
788
|
+
declare const Logs: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* Manual Icon
|
|
792
|
+
* 16×16px
|
|
793
|
+
*
|
|
794
|
+
* Usage:
|
|
795
|
+
* <Manual size={16} className="text-neutral-1100" />
|
|
796
|
+
*/
|
|
797
|
+
declare const Manual: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
798
|
+
|
|
799
|
+
/**
|
|
800
|
+
* Maximize Icon
|
|
801
|
+
* 16×16px
|
|
802
|
+
*
|
|
803
|
+
* Usage:
|
|
804
|
+
* <Maximize size={16} className="text-neutral-1100" />
|
|
805
|
+
*/
|
|
806
|
+
declare const Maximize: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
807
|
+
|
|
808
|
+
/**
|
|
809
|
+
* Menu Icon
|
|
810
|
+
* 16×16px
|
|
811
|
+
*
|
|
812
|
+
* Usage:
|
|
813
|
+
* <Menu size={16} className="text-neutral-1100" />
|
|
814
|
+
*/
|
|
815
|
+
declare const Menu: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
816
|
+
|
|
817
|
+
/**
|
|
818
|
+
* MenuHorizontal Icon
|
|
819
|
+
* 16×16px
|
|
820
|
+
*
|
|
821
|
+
* Usage:
|
|
822
|
+
* <MenuHorizontal size={16} className="text-neutral-1100" />
|
|
823
|
+
*/
|
|
824
|
+
declare const MenuHorizontal: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
825
|
+
|
|
826
|
+
/**
|
|
827
|
+
* MenuVertical Icon
|
|
828
|
+
* 16×16px
|
|
829
|
+
*
|
|
830
|
+
* Usage:
|
|
831
|
+
* <MenuVertical size={16} className="text-neutral-1100" />
|
|
832
|
+
*/
|
|
833
|
+
declare const MenuVertical: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
834
|
+
|
|
835
|
+
/**
|
|
836
|
+
* Minimize Icon
|
|
837
|
+
* 16×16px
|
|
838
|
+
*
|
|
839
|
+
* Usage:
|
|
840
|
+
* <Minimize size={16} className="text-neutral-1100" />
|
|
841
|
+
*/
|
|
842
|
+
declare const Minimize: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
843
|
+
|
|
844
|
+
/**
|
|
845
|
+
* Notes Icon
|
|
846
|
+
* 16×16px
|
|
847
|
+
*
|
|
848
|
+
* Usage:
|
|
849
|
+
* <Notes size={16} className="text-neutral-1100" />
|
|
850
|
+
*/
|
|
851
|
+
declare const Notes: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* Notification Icon
|
|
855
|
+
* 16×16px
|
|
856
|
+
*
|
|
857
|
+
* Usage:
|
|
858
|
+
* <Notification size={16} className="text-neutral-1100" />
|
|
859
|
+
*/
|
|
860
|
+
declare const Notification: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
861
|
+
|
|
862
|
+
/**
|
|
863
|
+
* Orders Icon
|
|
864
|
+
* 16×16px
|
|
865
|
+
*
|
|
866
|
+
* Usage:
|
|
867
|
+
* <Orders size={16} className="text-neutral-1100" />
|
|
868
|
+
*/
|
|
869
|
+
declare const Orders: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
870
|
+
|
|
871
|
+
/**
|
|
872
|
+
* Pdf Icon
|
|
873
|
+
* 16×16px
|
|
874
|
+
*
|
|
875
|
+
* Usage:
|
|
876
|
+
* <Pdf size={16} className="text-neutral-1100" />
|
|
877
|
+
*/
|
|
878
|
+
declare const Pdf: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
879
|
+
|
|
880
|
+
/**
|
|
881
|
+
* Phone Icon
|
|
882
|
+
* 16×16px
|
|
883
|
+
*
|
|
884
|
+
* Usage:
|
|
885
|
+
* <Phone size={16} className="text-neutral-1100" />
|
|
886
|
+
*/
|
|
887
|
+
declare const Phone: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
888
|
+
|
|
889
|
+
/**
|
|
890
|
+
* Print Icon
|
|
891
|
+
* 16×16px
|
|
892
|
+
*
|
|
893
|
+
* Usage:
|
|
894
|
+
* <Print size={16} className="text-neutral-1100" />
|
|
895
|
+
*/
|
|
896
|
+
declare const Print: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
897
|
+
|
|
898
|
+
/**
|
|
899
|
+
* Projects Icon
|
|
900
|
+
* 16×16px
|
|
901
|
+
*
|
|
902
|
+
* Usage:
|
|
903
|
+
* <Projects size={16} className="text-neutral-1100" />
|
|
904
|
+
*/
|
|
905
|
+
declare const Projects: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
906
|
+
|
|
907
|
+
/**
|
|
908
|
+
* Reminder Icon
|
|
909
|
+
* 16×16px
|
|
910
|
+
*
|
|
911
|
+
* Usage:
|
|
912
|
+
* <Reminder size={16} className="text-neutral-1100" />
|
|
913
|
+
*/
|
|
914
|
+
declare const Reminder: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
915
|
+
|
|
916
|
+
/**
|
|
917
|
+
* Retry Icon
|
|
918
|
+
* 16×16px
|
|
919
|
+
*
|
|
920
|
+
* Usage:
|
|
921
|
+
* <Retry size={16} className="text-neutral-1100" />
|
|
922
|
+
*/
|
|
923
|
+
declare const Retry: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
924
|
+
|
|
925
|
+
/**
|
|
926
|
+
* Search Icon
|
|
927
|
+
* 16×16px
|
|
928
|
+
*
|
|
929
|
+
* Usage:
|
|
930
|
+
* <Search size={16} className="text-neutral-1100" />
|
|
931
|
+
*/
|
|
932
|
+
declare const Search: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
933
|
+
|
|
934
|
+
/**
|
|
935
|
+
* Send Icon
|
|
936
|
+
* 16×16px
|
|
937
|
+
*
|
|
938
|
+
* Usage:
|
|
939
|
+
* <Send size={16} className="text-neutral-1100" />
|
|
940
|
+
*/
|
|
941
|
+
declare const Send: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
942
|
+
|
|
943
|
+
/**
|
|
944
|
+
* Settings Icon
|
|
945
|
+
* 16×16px
|
|
946
|
+
*
|
|
947
|
+
* Usage:
|
|
948
|
+
* <Settings size={16} className="text-neutral-1100" />
|
|
949
|
+
*/
|
|
950
|
+
declare const Settings: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
951
|
+
|
|
952
|
+
/**
|
|
953
|
+
* Substract Icon
|
|
954
|
+
* 16×16px
|
|
955
|
+
*
|
|
956
|
+
* Usage:
|
|
957
|
+
* <Substract size={16} className="text-neutral-1100" />
|
|
958
|
+
*/
|
|
959
|
+
declare const Substract: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
960
|
+
|
|
961
|
+
/**
|
|
962
|
+
* ThumbsDown Icon
|
|
963
|
+
* 16×16px
|
|
964
|
+
*
|
|
965
|
+
* Usage:
|
|
966
|
+
* <ThumbsDown size={16} className="text-neutral-1100" />
|
|
967
|
+
*/
|
|
968
|
+
declare const ThumbsDown: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
969
|
+
|
|
970
|
+
/**
|
|
971
|
+
* ThumbsDownFilled Icon
|
|
972
|
+
* 16×16px
|
|
973
|
+
*
|
|
974
|
+
* Usage:
|
|
975
|
+
* <ThumbsDownFilled size={16} className="text-neutral-1100" />
|
|
976
|
+
*/
|
|
977
|
+
declare const ThumbsDownFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
978
|
+
|
|
979
|
+
/**
|
|
980
|
+
* ThumbsUp Icon
|
|
981
|
+
* 16×16px
|
|
982
|
+
*
|
|
983
|
+
* Usage:
|
|
984
|
+
* <ThumbsUp size={16} className="text-neutral-1100" />
|
|
985
|
+
*/
|
|
986
|
+
declare const ThumbsUp: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
987
|
+
|
|
988
|
+
/**
|
|
989
|
+
* ThumbsUpFilled Icon
|
|
990
|
+
* 16×16px
|
|
991
|
+
*
|
|
992
|
+
* Usage:
|
|
993
|
+
* <ThumbsUpFilled size={16} className="text-neutral-1100" />
|
|
994
|
+
*/
|
|
995
|
+
declare const ThumbsUpFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
996
|
+
|
|
997
|
+
/**
|
|
998
|
+
* Ticket Icon
|
|
999
|
+
* 16×16px
|
|
1000
|
+
*
|
|
1001
|
+
* Usage:
|
|
1002
|
+
* <Ticket size={16} className="text-neutral-1100" />
|
|
1003
|
+
*/
|
|
1004
|
+
declare const Ticket: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1005
|
+
|
|
1006
|
+
/**
|
|
1007
|
+
* Tickmark Icon
|
|
1008
|
+
* 16×16px
|
|
1009
|
+
*
|
|
1010
|
+
* Usage:
|
|
1011
|
+
* <Tickmark size={16} className="text-neutral-1100" />
|
|
1012
|
+
*/
|
|
1013
|
+
declare const Tickmark: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1014
|
+
|
|
1015
|
+
/**
|
|
1016
|
+
* TickmarkFilled Icon
|
|
1017
|
+
* 16×16px
|
|
1018
|
+
*
|
|
1019
|
+
* Usage:
|
|
1020
|
+
* <TickmarkFilled size={16} className="text-neutral-1100" />
|
|
1021
|
+
*/
|
|
1022
|
+
declare const TickmarkFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1023
|
+
|
|
1024
|
+
/**
|
|
1025
|
+
* TickmarkOutline Icon
|
|
1026
|
+
* 16×16px
|
|
1027
|
+
*
|
|
1028
|
+
* Usage:
|
|
1029
|
+
* <TickmarkOutline size={16} className="text-neutral-1100" />
|
|
1030
|
+
*/
|
|
1031
|
+
declare const TickmarkOutline: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1032
|
+
|
|
1033
|
+
/**
|
|
1034
|
+
* Upload Icon
|
|
1035
|
+
* 16×16px
|
|
1036
|
+
*
|
|
1037
|
+
* Usage:
|
|
1038
|
+
* <Upload size={16} className="text-neutral-1100" />
|
|
1039
|
+
*/
|
|
1040
|
+
declare const Upload: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1041
|
+
|
|
1042
|
+
/**
|
|
1043
|
+
* User Icon
|
|
1044
|
+
* 16×16px
|
|
1045
|
+
*
|
|
1046
|
+
* Usage:
|
|
1047
|
+
* <User size={16} className="text-neutral-1100" />
|
|
1048
|
+
*/
|
|
1049
|
+
declare const User: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1050
|
+
|
|
1051
|
+
/**
|
|
1052
|
+
* UserAdd Icon
|
|
1053
|
+
* 16×16px
|
|
1054
|
+
*
|
|
1055
|
+
* Usage:
|
|
1056
|
+
* <UserAdd size={16} className="text-neutral-1100" />
|
|
1057
|
+
*/
|
|
1058
|
+
declare const UserAdd: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1059
|
+
|
|
1060
|
+
/**
|
|
1061
|
+
* UserFilled Icon
|
|
1062
|
+
* 16×16px
|
|
1063
|
+
*
|
|
1064
|
+
* Usage:
|
|
1065
|
+
* <UserFilled size={16} className="text-neutral-1100" />
|
|
1066
|
+
*/
|
|
1067
|
+
declare const UserFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1068
|
+
|
|
1069
|
+
/**
|
|
1070
|
+
* UserFilled1 Icon
|
|
1071
|
+
* 16×16px
|
|
1072
|
+
*
|
|
1073
|
+
* Usage:
|
|
1074
|
+
* <UserFilled1 size={16} className="text-neutral-1100" />
|
|
1075
|
+
*/
|
|
1076
|
+
declare const UserFilled1: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1077
|
+
|
|
1078
|
+
/**
|
|
1079
|
+
* UserMultiple Icon
|
|
1080
|
+
* 16×16px
|
|
1081
|
+
*
|
|
1082
|
+
* Usage:
|
|
1083
|
+
* <UserMultiple size={16} className="text-neutral-1100" />
|
|
1084
|
+
*/
|
|
1085
|
+
declare const UserMultiple: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1086
|
+
|
|
1087
|
+
/**
|
|
1088
|
+
* UserOutline Icon
|
|
1089
|
+
* 16×16px
|
|
1090
|
+
*
|
|
1091
|
+
* Usage:
|
|
1092
|
+
* <UserOutline size={16} className="text-neutral-1100" />
|
|
1093
|
+
*/
|
|
1094
|
+
declare const UserOutline: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1095
|
+
|
|
1096
|
+
/**
|
|
1097
|
+
* UserTick Icon
|
|
1098
|
+
* 16×16px
|
|
1099
|
+
*
|
|
1100
|
+
* Usage:
|
|
1101
|
+
* <UserTick size={16} className="text-neutral-1100" />
|
|
1102
|
+
*/
|
|
1103
|
+
declare const UserTick: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1104
|
+
|
|
1105
|
+
/**
|
|
1106
|
+
* View Icon
|
|
1107
|
+
* 16×16px
|
|
1108
|
+
*
|
|
1109
|
+
* Usage:
|
|
1110
|
+
* <View size={16} className="text-neutral-1100" />
|
|
1111
|
+
*/
|
|
1112
|
+
declare const View: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1113
|
+
|
|
1114
|
+
/**
|
|
1115
|
+
* ViewFilled Icon
|
|
1116
|
+
* 16×16px
|
|
1117
|
+
*
|
|
1118
|
+
* Usage:
|
|
1119
|
+
* <ViewFilled size={16} className="text-neutral-1100" />
|
|
1120
|
+
*/
|
|
1121
|
+
declare const ViewFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1122
|
+
|
|
1123
|
+
/**
|
|
1124
|
+
* ViewOff Icon
|
|
1125
|
+
* 16×16px
|
|
1126
|
+
*
|
|
1127
|
+
* Usage:
|
|
1128
|
+
* <ViewOff size={16} className="text-neutral-1100" />
|
|
1129
|
+
*/
|
|
1130
|
+
declare const ViewOff: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1131
|
+
|
|
1132
|
+
/**
|
|
1133
|
+
* ViewOffFilled Icon
|
|
1134
|
+
* 16×16px
|
|
1135
|
+
*
|
|
1136
|
+
* Usage:
|
|
1137
|
+
* <ViewOffFilled size={16} className="text-neutral-1100" />
|
|
1138
|
+
*/
|
|
1139
|
+
declare const ViewOffFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1140
|
+
|
|
1141
|
+
/**
|
|
1142
|
+
* Warning Icon
|
|
1143
|
+
* 16×16px
|
|
1144
|
+
*
|
|
1145
|
+
* Usage:
|
|
1146
|
+
* <Warning size={16} className="text-neutral-1100" />
|
|
1147
|
+
*/
|
|
1148
|
+
declare const Warning: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1149
|
+
|
|
1150
|
+
/**
|
|
1151
|
+
* WarningFilled Icon
|
|
1152
|
+
* 16×16px
|
|
1153
|
+
*
|
|
1154
|
+
* Usage:
|
|
1155
|
+
* <WarningFilled size={16} className="text-neutral-1100" />
|
|
1156
|
+
*/
|
|
1157
|
+
declare const WarningFilled: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1158
|
+
|
|
1159
|
+
/**
|
|
1160
|
+
* Xls Icon
|
|
1161
|
+
* 16×16px
|
|
1162
|
+
*
|
|
1163
|
+
* Usage:
|
|
1164
|
+
* <Xls size={16} className="text-neutral-1100" />
|
|
1165
|
+
*/
|
|
1166
|
+
declare const Xls: React$1.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1167
|
+
|
|
1168
|
+
/**
|
|
1169
|
+
* Icon System
|
|
1170
|
+
*
|
|
1171
|
+
* SVG icon components with:
|
|
1172
|
+
* - Consistent sizing
|
|
1173
|
+
* - Token-based colors
|
|
1174
|
+
* - Tree-shaking support
|
|
1175
|
+
* - TypeScript support
|
|
1176
|
+
*
|
|
1177
|
+
* Icons are presentational only
|
|
1178
|
+
*/
|
|
1179
|
+
interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
1180
|
+
size?: number | string;
|
|
1181
|
+
color?: string;
|
|
1182
|
+
style?: React.CSSProperties;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
export { Add, AddFilled, AddOutline, Alert, AlertFilled, Analytics, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ArrowUpRight, AvatarPlaceholder, AvatarSidemenu, Bookmark, BookmarkAdd, BookmarkFilled, Calendar, CalendarAdd, Camera, CaretDown, CaretLeft, CaretRight, CaretUp, ChangeRequest, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Close, CloseFilled, CloseOutline, CloudData, CloudDownload, CloudLogging, CloudManagement, CloudMonitoring, CloudOffline, CloudServices, CloudUpload, Cloudy, Collapse, Company, CompanyFilled, Contact, Copy, Dashboard, DataBackup, DataView, Delete, Document, DocumentAdd, DocumentComplete, DocumentExcel, DocumentJpg, DocumentPdf, DocumentPng, DocumentRemove, DocumentSend, DocumentView, Download, Edit, EditOff, Email, EmailNew, Exit, Expand, Export, Filter, FilterEdit, FilterRemove, Folder, FolderAdd, GridView, Help, HelpFilled, History, Home, HorizontalView, type IconProps, Info, InfoDisabled, InfoFilled, Jpg, Link, List, Location, LocationFilled, Locked, Logs, Manual, Maximize, Menu, MenuHorizontal, MenuVertical, Minimize, Notes, Notification, Orders, Pdf, Phone, Print, Projects, Reminder, Retry, Search, Send, Settings, Substract, ThumbsDown, ThumbsDownFilled, ThumbsUp, ThumbsUpFilled, Ticket, Tickmark, TickmarkFilled, TickmarkOutline, Upload, User, UserAdd, UserFilled, UserFilled1, UserMultiple, UserOutline, UserTick, View, ViewFilled, ViewOff, ViewOffFilled, Warning, WarningFilled, Xls };
|