@exem-ui/react 0.3.3 → 0.3.4

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.
@@ -49,7 +49,15 @@ interface IconManifestEntry {
49
49
  }
50
50
  declare const iconManifest: IconManifestEntry[];
51
51
 
52
- declare const Account: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
52
+ type AccountType = 'fill' | 'light' | 'regular';
53
+ interface AccountProps extends IconBaseProps {
54
+ /**
55
+ * 아이콘 variant.
56
+ * @default size <= 18 ? 'regular' : 'light'
57
+ */
58
+ type?: AccountType;
59
+ }
60
+ declare const Account: ({ size, type, ...props }: AccountProps) => react_jsx_runtime.JSX.Element;
53
61
 
54
62
  type AccountTreeType = 'fill' | 'light' | 'regular';
55
63
  interface AccountTreeProps extends IconBaseProps {
@@ -61,19 +69,55 @@ interface AccountTreeProps extends IconBaseProps {
61
69
  }
62
70
  declare const AccountTree: ({ size, type, ...props }: AccountTreeProps) => react_jsx_runtime.JSX.Element;
63
71
 
64
- declare const Active: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
65
-
66
- declare const AlignCenter: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
67
-
68
- declare const AlignJustified: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
72
+ type AlignCenterType = 'light' | 'regular';
73
+ interface AlignCenterProps extends IconBaseProps {
74
+ /**
75
+ * 아이콘 variant.
76
+ * @default size <= 18 ? 'regular' : 'light'
77
+ */
78
+ type?: AlignCenterType;
79
+ }
80
+ declare const AlignCenter: ({ size, type, ...props }: AlignCenterProps) => react_jsx_runtime.JSX.Element;
69
81
 
70
- declare const AlignLeft: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
82
+ type AlignJustifiedType = 'light' | 'regular';
83
+ interface AlignJustifiedProps extends IconBaseProps {
84
+ /**
85
+ * 아이콘 variant.
86
+ * @default size <= 18 ? 'regular' : 'light'
87
+ */
88
+ type?: AlignJustifiedType;
89
+ }
90
+ declare const AlignJustified: ({ size, type, ...props }: AlignJustifiedProps) => react_jsx_runtime.JSX.Element;
71
91
 
72
- declare const AlignRight: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
92
+ type AlignLeftType = 'light' | 'regular';
93
+ interface AlignLeftProps extends IconBaseProps {
94
+ /**
95
+ * 아이콘 variant.
96
+ * @default size <= 18 ? 'regular' : 'light'
97
+ */
98
+ type?: AlignLeftType;
99
+ }
100
+ declare const AlignLeft: ({ size, type, ...props }: AlignLeftProps) => react_jsx_runtime.JSX.Element;
73
101
 
74
- declare const Apartment: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
102
+ type AlignRightType = 'light' | 'regular';
103
+ interface AlignRightProps extends IconBaseProps {
104
+ /**
105
+ * 아이콘 variant.
106
+ * @default size <= 18 ? 'regular' : 'light'
107
+ */
108
+ type?: AlignRightType;
109
+ }
110
+ declare const AlignRight: ({ size, type, ...props }: AlignRightProps) => react_jsx_runtime.JSX.Element;
75
111
 
76
- declare const AreaChart: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
112
+ type AreaChartType = 'fill' | 'light' | 'regular';
113
+ interface AreaChartProps extends IconBaseProps {
114
+ /**
115
+ * 아이콘 variant.
116
+ * @default size <= 18 ? 'regular' : 'light'
117
+ */
118
+ type?: AreaChartType;
119
+ }
120
+ declare const AreaChart: ({ size, type, ...props }: AreaChartProps) => react_jsx_runtime.JSX.Element;
77
121
 
78
122
  type ArrowBottomRightType = 'light' | 'regular';
79
123
  interface ArrowBottomRightProps extends IconBaseProps {
@@ -105,8 +149,6 @@ interface ArrowLeftProps extends IconBaseProps {
105
149
  }
106
150
  declare const ArrowLeft: ({ size, type, ...props }: ArrowLeftProps) => react_jsx_runtime.JSX.Element;
107
151
 
108
- declare const ArrowLeftRight: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
109
-
110
152
  type ArrowRightType = 'light' | 'regular';
111
153
  interface ArrowRightProps extends IconBaseProps {
112
154
  /**
@@ -117,8 +159,6 @@ interface ArrowRightProps extends IconBaseProps {
117
159
  }
118
160
  declare const ArrowRight: ({ size, type, ...props }: ArrowRightProps) => react_jsx_runtime.JSX.Element;
119
161
 
120
- declare const ArrowRotate: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
121
-
122
162
  type ArrowUpType = 'light' | 'regular';
123
163
  interface ArrowUpProps extends IconBaseProps {
124
164
  /**
@@ -139,7 +179,15 @@ interface ArrowUpRightProps extends IconBaseProps {
139
179
  }
140
180
  declare const ArrowUpRight: ({ size, type, ...props }: ArrowUpRightProps) => react_jsx_runtime.JSX.Element;
141
181
 
142
- declare const Back: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
182
+ type BackType = 'fill' | 'light' | 'regular';
183
+ interface BackProps extends IconBaseProps {
184
+ /**
185
+ * 아이콘 variant.
186
+ * @default size <= 18 ? 'regular' : 'light'
187
+ */
188
+ type?: BackType;
189
+ }
190
+ declare const Back: ({ size, type, ...props }: BackProps) => react_jsx_runtime.JSX.Element;
143
191
 
144
192
  type BadgeType = 'fill' | 'light' | 'regular';
145
193
  interface BadgeProps extends IconBaseProps {
@@ -151,9 +199,35 @@ interface BadgeProps extends IconBaseProps {
151
199
  }
152
200
  declare const Badge: ({ size, type, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
153
201
 
154
- declare const BarChart: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
202
+ type BarChartType = 'fill' | 'light' | 'regular';
203
+ interface BarChartProps extends IconBaseProps {
204
+ /**
205
+ * 아이콘 variant.
206
+ * @default size <= 18 ? 'regular' : 'light'
207
+ */
208
+ type?: BarChartType;
209
+ }
210
+ declare const BarChart: ({ size, type, ...props }: BarChartProps) => react_jsx_runtime.JSX.Element;
211
+
212
+ type BlankType = 'light' | 'regular';
213
+ interface BlankProps extends IconBaseProps {
214
+ /**
215
+ * 아이콘 variant.
216
+ * @default size <= 18 ? 'regular' : 'light'
217
+ */
218
+ type?: BlankType;
219
+ }
220
+ declare const Blank: ({ size, type, ...props }: BlankProps) => react_jsx_runtime.JSX.Element;
155
221
 
156
- declare const Blank: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
222
+ type BookType = 'fill' | 'light' | 'regular';
223
+ interface BookProps extends IconBaseProps {
224
+ /**
225
+ * 아이콘 variant.
226
+ * @default size <= 18 ? 'regular' : 'light'
227
+ */
228
+ type?: BookType;
229
+ }
230
+ declare const Book: ({ size, type, ...props }: BookProps) => react_jsx_runtime.JSX.Element;
157
231
 
158
232
  type BrainType = 'fill' | 'light' | 'regular';
159
233
  interface BrainProps extends IconBaseProps {
@@ -165,6 +239,16 @@ interface BrainProps extends IconBaseProps {
165
239
  }
166
240
  declare const Brain: ({ size, type, ...props }: BrainProps) => react_jsx_runtime.JSX.Element;
167
241
 
242
+ type BriefcaseType = 'fill' | 'light' | 'regular';
243
+ interface BriefcaseProps extends IconBaseProps {
244
+ /**
245
+ * 아이콘 variant.
246
+ * @default size <= 18 ? 'regular' : 'light'
247
+ */
248
+ type?: BriefcaseType;
249
+ }
250
+ declare const Briefcase: ({ size, type, ...props }: BriefcaseProps) => react_jsx_runtime.JSX.Element;
251
+
168
252
  type BuildType = 'fill' | 'light' | 'regular';
169
253
  interface BuildProps extends IconBaseProps {
170
254
  /**
@@ -175,6 +259,16 @@ interface BuildProps extends IconBaseProps {
175
259
  }
176
260
  declare const Build: ({ size, type, ...props }: BuildProps) => react_jsx_runtime.JSX.Element;
177
261
 
262
+ type BuildingType = 'light' | 'regular';
263
+ interface BuildingProps extends IconBaseProps {
264
+ /**
265
+ * 아이콘 variant.
266
+ * @default size <= 18 ? 'regular' : 'light'
267
+ */
268
+ type?: BuildingType;
269
+ }
270
+ declare const Building: ({ size, type, ...props }: BuildingProps) => react_jsx_runtime.JSX.Element;
271
+
178
272
  type BulbType = 'fill' | 'light' | 'regular';
179
273
  interface BulbProps extends IconBaseProps {
180
274
  /**
@@ -195,11 +289,45 @@ interface CalculateProps extends IconBaseProps {
195
289
  }
196
290
  declare const Calculate: ({ size, type, ...props }: CalculateProps) => react_jsx_runtime.JSX.Element;
197
291
 
198
- declare const Calendar: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
292
+ type CalendarType = 'fill' | 'light' | 'regular';
293
+ interface CalendarProps extends IconBaseProps {
294
+ /**
295
+ * 아이콘 variant.
296
+ * @default size <= 18 ? 'regular' : 'light'
297
+ */
298
+ type?: CalendarType;
299
+ }
300
+ declare const Calendar: ({ size, type, ...props }: CalendarProps) => react_jsx_runtime.JSX.Element;
301
+
302
+ type CalendarDateType = 'fill' | 'light' | 'regular';
303
+ interface CalendarDateProps extends IconBaseProps {
304
+ /**
305
+ * 아이콘 variant.
306
+ * @default size <= 18 ? 'regular' : 'light'
307
+ */
308
+ type?: CalendarDateType;
309
+ }
310
+ declare const CalendarDate: ({ size, type, ...props }: CalendarDateProps) => react_jsx_runtime.JSX.Element;
199
311
 
200
- declare const CalendarDate: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
312
+ type CalendarEventType = 'fill' | 'light' | 'regular';
313
+ interface CalendarEventProps extends IconBaseProps {
314
+ /**
315
+ * 아이콘 variant.
316
+ * @default size <= 18 ? 'regular' : 'light'
317
+ */
318
+ type?: CalendarEventType;
319
+ }
320
+ declare const CalendarEvent: ({ size, type, ...props }: CalendarEventProps) => react_jsx_runtime.JSX.Element;
201
321
 
202
- declare const CalendarEvent: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
322
+ type CalendarViewType = 'fill' | 'light' | 'regular';
323
+ interface CalendarViewProps extends IconBaseProps {
324
+ /**
325
+ * 아이콘 variant.
326
+ * @default size <= 18 ? 'regular' : 'light'
327
+ */
328
+ type?: CalendarViewType;
329
+ }
330
+ declare const CalendarView: ({ size, type, ...props }: CalendarViewProps) => react_jsx_runtime.JSX.Element;
203
331
 
204
332
  type CancelType = 'fill' | 'light' | 'regular';
205
333
  interface CancelProps extends IconBaseProps {
@@ -211,21 +339,65 @@ interface CancelProps extends IconBaseProps {
211
339
  }
212
340
  declare const Cancel: ({ size, type, ...props }: CancelProps) => react_jsx_runtime.JSX.Element;
213
341
 
214
- declare const CardView: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
215
-
216
- declare const CarrotDown: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
217
-
218
- declare const CarrotLeft: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
342
+ type CarrotDownType = 'light' | 'regular';
343
+ interface CarrotDownProps extends IconBaseProps {
344
+ /**
345
+ * 아이콘 variant.
346
+ * @default size <= 18 ? 'regular' : 'light'
347
+ */
348
+ type?: CarrotDownType;
349
+ }
350
+ declare const CarrotDown: ({ size, type, ...props }: CarrotDownProps) => react_jsx_runtime.JSX.Element;
219
351
 
220
- declare const CarrotRight: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
352
+ type CarrotLeftType = 'light' | 'regular';
353
+ interface CarrotLeftProps extends IconBaseProps {
354
+ /**
355
+ * 아이콘 variant.
356
+ * @default size <= 18 ? 'regular' : 'light'
357
+ */
358
+ type?: CarrotLeftType;
359
+ }
360
+ declare const CarrotLeft: ({ size, type, ...props }: CarrotLeftProps) => react_jsx_runtime.JSX.Element;
221
361
 
222
- declare const CarrotUp: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
362
+ type CarrotRightType = 'light' | 'regular';
363
+ interface CarrotRightProps extends IconBaseProps {
364
+ /**
365
+ * 아이콘 variant.
366
+ * @default size <= 18 ? 'regular' : 'light'
367
+ */
368
+ type?: CarrotRightType;
369
+ }
370
+ declare const CarrotRight: ({ size, type, ...props }: CarrotRightProps) => react_jsx_runtime.JSX.Element;
223
371
 
224
- declare const CarrotUpDown: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
372
+ type CarrotUpType = 'light' | 'regular';
373
+ interface CarrotUpProps extends IconBaseProps {
374
+ /**
375
+ * 아이콘 variant.
376
+ * @default size <= 18 ? 'regular' : 'light'
377
+ */
378
+ type?: CarrotUpType;
379
+ }
380
+ declare const CarrotUp: ({ size, type, ...props }: CarrotUpProps) => react_jsx_runtime.JSX.Element;
225
381
 
226
- declare const Category: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
382
+ type CarrotUpDownType = 'light' | 'regular';
383
+ interface CarrotUpDownProps extends IconBaseProps {
384
+ /**
385
+ * 아이콘 variant.
386
+ * @default size <= 18 ? 'regular' : 'light'
387
+ */
388
+ type?: CarrotUpDownType;
389
+ }
390
+ declare const CarrotUpDown: ({ size, type, ...props }: CarrotUpDownProps) => react_jsx_runtime.JSX.Element;
227
391
 
228
- declare const ChartPie: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
392
+ type CategoryType = 'fill' | 'light' | 'regular';
393
+ interface CategoryProps extends IconBaseProps {
394
+ /**
395
+ * 아이콘 variant.
396
+ * @default size <= 18 ? 'regular' : 'light'
397
+ */
398
+ type?: CategoryType;
399
+ }
400
+ declare const Category: ({ size, type, ...props }: CategoryProps) => react_jsx_runtime.JSX.Element;
229
401
 
230
402
  type ChatType = 'fill' | 'light' | 'regular';
231
403
  interface ChatProps extends IconBaseProps {
@@ -267,12 +439,6 @@ interface CheckCircleProps extends IconBaseProps {
267
439
  }
268
440
  declare const CheckCircle: ({ size, type, ...props }: CheckCircleProps) => react_jsx_runtime.JSX.Element;
269
441
 
270
- declare const CheckboxChecked: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
271
-
272
- declare const CheckboxIndeterminate: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
273
-
274
- declare const CheckboxUnchecked: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
275
-
276
442
  type ChecklistType = 'light' | 'regular';
277
443
  interface ChecklistProps extends IconBaseProps {
278
444
  /**
@@ -283,13 +449,45 @@ interface ChecklistProps extends IconBaseProps {
283
449
  }
284
450
  declare const Checklist: ({ size, type, ...props }: ChecklistProps) => react_jsx_runtime.JSX.Element;
285
451
 
286
- declare const ChevronDoubleDown: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
452
+ type ChevronDoubleDownType = 'light' | 'regular';
453
+ interface ChevronDoubleDownProps extends IconBaseProps {
454
+ /**
455
+ * 아이콘 variant.
456
+ * @default size <= 18 ? 'regular' : 'light'
457
+ */
458
+ type?: ChevronDoubleDownType;
459
+ }
460
+ declare const ChevronDoubleDown: ({ size, type, ...props }: ChevronDoubleDownProps) => react_jsx_runtime.JSX.Element;
287
461
 
288
- declare const ChevronDoubleLeft: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
462
+ type ChevronDoubleLeftType = 'light' | 'regular';
463
+ interface ChevronDoubleLeftProps extends IconBaseProps {
464
+ /**
465
+ * 아이콘 variant.
466
+ * @default size <= 18 ? 'regular' : 'light'
467
+ */
468
+ type?: ChevronDoubleLeftType;
469
+ }
470
+ declare const ChevronDoubleLeft: ({ size, type, ...props }: ChevronDoubleLeftProps) => react_jsx_runtime.JSX.Element;
289
471
 
290
- declare const ChevronDoubleRight: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
472
+ type ChevronDoubleRightType = 'light' | 'regular';
473
+ interface ChevronDoubleRightProps extends IconBaseProps {
474
+ /**
475
+ * 아이콘 variant.
476
+ * @default size <= 18 ? 'regular' : 'light'
477
+ */
478
+ type?: ChevronDoubleRightType;
479
+ }
480
+ declare const ChevronDoubleRight: ({ size, type, ...props }: ChevronDoubleRightProps) => react_jsx_runtime.JSX.Element;
291
481
 
292
- declare const ChevronDoubleUp: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
482
+ type ChevronDoubleUpType = 'light' | 'regular';
483
+ interface ChevronDoubleUpProps extends IconBaseProps {
484
+ /**
485
+ * 아이콘 variant.
486
+ * @default size <= 18 ? 'regular' : 'light'
487
+ */
488
+ type?: ChevronDoubleUpType;
489
+ }
490
+ declare const ChevronDoubleUp: ({ size, type, ...props }: ChevronDoubleUpProps) => react_jsx_runtime.JSX.Element;
293
491
 
294
492
  type ChevronDownType = 'light' | 'regular';
295
493
  interface ChevronDownProps extends IconBaseProps {
@@ -331,9 +529,15 @@ interface ChevronUpProps extends IconBaseProps {
331
529
  }
332
530
  declare const ChevronUp: ({ size, type, ...props }: ChevronUpProps) => react_jsx_runtime.JSX.Element;
333
531
 
334
- declare const ChevronUpDown: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
335
-
336
- declare const CiTest: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
532
+ type ChevronUpDownType = 'light' | 'regular';
533
+ interface ChevronUpDownProps extends IconBaseProps {
534
+ /**
535
+ * 아이콘 variant.
536
+ * @default size <= 18 ? 'regular' : 'light'
537
+ */
538
+ type?: ChevronUpDownType;
539
+ }
540
+ declare const ChevronUpDown: ({ size, type, ...props }: ChevronUpDownProps) => react_jsx_runtime.JSX.Element;
337
541
 
338
542
  type ClockType = 'fill' | 'light' | 'regular';
339
543
  interface ClockProps extends IconBaseProps {
@@ -345,7 +549,15 @@ interface ClockProps extends IconBaseProps {
345
549
  }
346
550
  declare const Clock: ({ size, type, ...props }: ClockProps) => react_jsx_runtime.JSX.Element;
347
551
 
348
- declare const Cloud: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
552
+ type CloudType = 'fill' | 'light' | 'regular';
553
+ interface CloudProps extends IconBaseProps {
554
+ /**
555
+ * 아이콘 variant.
556
+ * @default size <= 18 ? 'regular' : 'light'
557
+ */
558
+ type?: CloudType;
559
+ }
560
+ declare const Cloud: ({ size, type, ...props }: CloudProps) => react_jsx_runtime.JSX.Element;
349
561
 
350
562
  type CodeType = 'light' | 'regular';
351
563
  interface CodeProps extends IconBaseProps {
@@ -377,6 +589,16 @@ interface CpuProps extends IconBaseProps {
377
589
  }
378
590
  declare const Cpu: ({ size, type, ...props }: CpuProps) => react_jsx_runtime.JSX.Element;
379
591
 
592
+ type CreateFolderType = 'fill' | 'light' | 'regular';
593
+ interface CreateFolderProps extends IconBaseProps {
594
+ /**
595
+ * 아이콘 variant.
596
+ * @default size <= 18 ? 'regular' : 'light'
597
+ */
598
+ type?: CreateFolderType;
599
+ }
600
+ declare const CreateFolder: ({ size, type, ...props }: CreateFolderProps) => react_jsx_runtime.JSX.Element;
601
+
380
602
  type CubeType = 'fill' | 'light' | 'regular';
381
603
  interface CubeProps extends IconBaseProps {
382
604
  /**
@@ -397,7 +619,15 @@ interface DarkModeProps extends IconBaseProps {
397
619
  }
398
620
  declare const DarkMode: ({ size, type, ...props }: DarkModeProps) => react_jsx_runtime.JSX.Element;
399
621
 
400
- declare const Dash: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
622
+ type DashType = 'light' | 'regular';
623
+ interface DashProps extends IconBaseProps {
624
+ /**
625
+ * 아이콘 variant.
626
+ * @default size <= 18 ? 'regular' : 'light'
627
+ */
628
+ type?: DashType;
629
+ }
630
+ declare const Dash: ({ size, type, ...props }: DashProps) => react_jsx_runtime.JSX.Element;
401
631
 
402
632
  type DashboardType = 'fill' | 'light' | 'regular';
403
633
  interface DashboardProps extends IconBaseProps {
@@ -421,9 +651,35 @@ interface DatabaseProps extends IconBaseProps {
421
651
  }
422
652
  declare const Database: ({ size, type, ...props }: DatabaseProps) => react_jsx_runtime.JSX.Element;
423
653
 
424
- declare const DatabaseSearch: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
654
+ type DatabaseOffType = 'fill' | 'light' | 'regular';
655
+ interface DatabaseOffProps extends IconBaseProps {
656
+ /**
657
+ * 아이콘 variant.
658
+ * @default size <= 18 ? 'regular' : 'light'
659
+ */
660
+ type?: DatabaseOffType;
661
+ }
662
+ declare const DatabaseOff: ({ size, type, ...props }: DatabaseOffProps) => react_jsx_runtime.JSX.Element;
663
+
664
+ type DatabaseSearchType = 'fill' | 'light' | 'regular';
665
+ interface DatabaseSearchProps extends IconBaseProps {
666
+ /**
667
+ * 아이콘 variant.
668
+ * @default size <= 18 ? 'regular' : 'light'
669
+ */
670
+ type?: DatabaseSearchType;
671
+ }
672
+ declare const DatabaseSearch: ({ size, type, ...props }: DatabaseSearchProps) => react_jsx_runtime.JSX.Element;
425
673
 
426
- declare const Dataset: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
674
+ type DatasetType = 'fill' | 'light' | 'regular';
675
+ interface DatasetProps extends IconBaseProps {
676
+ /**
677
+ * 아이콘 variant.
678
+ * @default size <= 18 ? 'regular' : 'light'
679
+ */
680
+ type?: DatasetType;
681
+ }
682
+ declare const Dataset: ({ size, type, ...props }: DatasetProps) => react_jsx_runtime.JSX.Element;
427
683
 
428
684
  type DeleteType = 'fill' | 'light' | 'regular';
429
685
  interface DeleteProps extends IconBaseProps {
@@ -435,19 +691,15 @@ interface DeleteProps extends IconBaseProps {
435
691
  }
436
692
  declare const Delete: ({ size, type, ...props }: DeleteProps) => react_jsx_runtime.JSX.Element;
437
693
 
438
- declare const DeployedCode: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
439
-
440
- type DisconnectType = 'fill' | 'regular';
441
- interface DisconnectProps extends IconBaseProps {
694
+ type DiskType = 'fill' | 'light' | 'regular';
695
+ interface DiskProps extends IconBaseProps {
442
696
  /**
443
697
  * 아이콘 variant.
444
- * @default size <= 18 ? 'regular' : 'regular'
698
+ * @default size <= 18 ? 'regular' : 'light'
445
699
  */
446
- type?: DisconnectType;
700
+ type?: DiskType;
447
701
  }
448
- declare const Disconnect: ({ size, type, ...props }: DisconnectProps) => react_jsx_runtime.JSX.Element;
449
-
450
- declare const Disk: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
702
+ declare const Disk: ({ size, type, ...props }: DiskProps) => react_jsx_runtime.JSX.Element;
451
703
 
452
704
  type DomainVerificationType = 'fill' | 'light' | 'regular';
453
705
  interface DomainVerificationProps extends IconBaseProps {
@@ -459,9 +711,25 @@ interface DomainVerificationProps extends IconBaseProps {
459
711
  }
460
712
  declare const DomainVerification: ({ size, type, ...props }: DomainVerificationProps) => react_jsx_runtime.JSX.Element;
461
713
 
462
- declare const DotsHorizontal: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
714
+ type DotsHorizontalType = 'light' | 'regular';
715
+ interface DotsHorizontalProps extends IconBaseProps {
716
+ /**
717
+ * 아이콘 variant.
718
+ * @default size <= 18 ? 'regular' : 'light'
719
+ */
720
+ type?: DotsHorizontalType;
721
+ }
722
+ declare const DotsHorizontal: ({ size, type, ...props }: DotsHorizontalProps) => react_jsx_runtime.JSX.Element;
463
723
 
464
- declare const DotsVertical: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
724
+ type DotsVerticalType = 'light' | 'regular';
725
+ interface DotsVerticalProps extends IconBaseProps {
726
+ /**
727
+ * 아이콘 variant.
728
+ * @default size <= 18 ? 'regular' : 'light'
729
+ */
730
+ type?: DotsVerticalType;
731
+ }
732
+ declare const DotsVertical: ({ size, type, ...props }: DotsVerticalProps) => react_jsx_runtime.JSX.Element;
465
733
 
466
734
  type DownloadType = 'light' | 'regular';
467
735
  interface DownloadProps extends IconBaseProps {
@@ -473,31 +741,25 @@ interface DownloadProps extends IconBaseProps {
473
741
  }
474
742
  declare const Download: ({ size, type, ...props }: DownloadProps) => react_jsx_runtime.JSX.Element;
475
743
 
476
- declare const DownloadDocument: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
477
-
478
- declare const Ellipse: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
479
-
480
- type ErrorType = 'fill' | 'light' | 'regular';
481
- interface ErrorProps extends IconBaseProps {
744
+ type EditType = 'fill' | 'light' | 'regular';
745
+ interface EditProps extends IconBaseProps {
482
746
  /**
483
747
  * 아이콘 variant.
484
748
  * @default size <= 18 ? 'regular' : 'light'
485
749
  */
486
- type?: ErrorType;
750
+ type?: EditType;
487
751
  }
488
- declare const Error: ({ size, type, ...props }: ErrorProps) => react_jsx_runtime.JSX.Element;
752
+ declare const Edit: ({ size, type, ...props }: EditProps) => react_jsx_runtime.JSX.Element;
489
753
 
490
- declare const Expand: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
491
-
492
- type ExportType = 'light' | 'regular';
493
- interface ExportProps extends IconBaseProps {
754
+ type ErrorType = 'fill' | 'light' | 'regular';
755
+ interface ErrorProps extends IconBaseProps {
494
756
  /**
495
757
  * 아이콘 variant.
496
758
  * @default size <= 18 ? 'regular' : 'light'
497
759
  */
498
- type?: ExportType;
760
+ type?: ErrorType;
499
761
  }
500
- declare const Export: ({ size, type, ...props }: ExportProps) => react_jsx_runtime.JSX.Element;
762
+ declare const Error: ({ size, type, ...props }: ErrorProps) => react_jsx_runtime.JSX.Element;
501
763
 
502
764
  type FeedbackType = 'fill' | 'light' | 'regular';
503
765
  interface FeedbackProps extends IconBaseProps {
@@ -529,9 +791,35 @@ interface FileAddProps extends IconBaseProps {
529
791
  }
530
792
  declare const FileAdd: ({ size, type, ...props }: FileAddProps) => react_jsx_runtime.JSX.Element;
531
793
 
532
- declare const FilePdf: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
794
+ type FileCheckType = 'fill' | 'light' | 'regular';
795
+ interface FileCheckProps extends IconBaseProps {
796
+ /**
797
+ * 아이콘 variant.
798
+ * @default size <= 18 ? 'regular' : 'light'
799
+ */
800
+ type?: FileCheckType;
801
+ }
802
+ declare const FileCheck: ({ size, type, ...props }: FileCheckProps) => react_jsx_runtime.JSX.Element;
803
+
804
+ type FileDownloadType = 'fill' | 'light' | 'regular';
805
+ interface FileDownloadProps extends IconBaseProps {
806
+ /**
807
+ * 아이콘 variant.
808
+ * @default size <= 18 ? 'regular' : 'light'
809
+ */
810
+ type?: FileDownloadType;
811
+ }
812
+ declare const FileDownload: ({ size, type, ...props }: FileDownloadProps) => react_jsx_runtime.JSX.Element;
533
813
 
534
- declare const FileXls: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
814
+ type FileUploadType = 'fill' | 'light' | 'regular';
815
+ interface FileUploadProps extends IconBaseProps {
816
+ /**
817
+ * 아이콘 variant.
818
+ * @default size <= 18 ? 'regular' : 'light'
819
+ */
820
+ type?: FileUploadType;
821
+ }
822
+ declare const FileUpload: ({ size, type, ...props }: FileUploadProps) => react_jsx_runtime.JSX.Element;
535
823
 
536
824
  type FilterType = 'fill' | 'light' | 'regular';
537
825
  interface FilterProps extends IconBaseProps {
@@ -543,7 +831,25 @@ interface FilterProps extends IconBaseProps {
543
831
  }
544
832
  declare const Filter: ({ size, type, ...props }: FilterProps) => react_jsx_runtime.JSX.Element;
545
833
 
546
- declare const FilterList: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
834
+ type FilterListType = 'light' | 'regular';
835
+ interface FilterListProps extends IconBaseProps {
836
+ /**
837
+ * 아이콘 variant.
838
+ * @default size <= 18 ? 'regular' : 'light'
839
+ */
840
+ type?: FilterListType;
841
+ }
842
+ declare const FilterList: ({ size, type, ...props }: FilterListProps) => react_jsx_runtime.JSX.Element;
843
+
844
+ type FitScreenType = 'fill' | 'light' | 'regular';
845
+ interface FitScreenProps extends IconBaseProps {
846
+ /**
847
+ * 아이콘 variant.
848
+ * @default size <= 18 ? 'regular' : 'light'
849
+ */
850
+ type?: FitScreenType;
851
+ }
852
+ declare const FitScreen: ({ size, type, ...props }: FitScreenProps) => react_jsx_runtime.JSX.Element;
547
853
 
548
854
  type FlagType = 'fill' | 'light' | 'regular';
549
855
  interface FlagProps extends IconBaseProps {
@@ -555,6 +861,16 @@ interface FlagProps extends IconBaseProps {
555
861
  }
556
862
  declare const Flag: ({ size, type, ...props }: FlagProps) => react_jsx_runtime.JSX.Element;
557
863
 
864
+ type FlowchartType = 'fill' | 'light' | 'regular';
865
+ interface FlowchartProps extends IconBaseProps {
866
+ /**
867
+ * 아이콘 variant.
868
+ * @default size <= 18 ? 'regular' : 'light'
869
+ */
870
+ type?: FlowchartType;
871
+ }
872
+ declare const Flowchart: ({ size, type, ...props }: FlowchartProps) => react_jsx_runtime.JSX.Element;
873
+
558
874
  type FolderType = 'fill' | 'light' | 'regular';
559
875
  interface FolderProps extends IconBaseProps {
560
876
  /**
@@ -575,9 +891,35 @@ interface FolderOpenProps extends IconBaseProps {
575
891
  }
576
892
  declare const FolderOpen: ({ size, type, ...props }: FolderOpenProps) => react_jsx_runtime.JSX.Element;
577
893
 
578
- declare const Frame: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
894
+ type FowardType = 'fill' | 'light' | 'regular';
895
+ interface FowardProps extends IconBaseProps {
896
+ /**
897
+ * 아이콘 variant.
898
+ * @default size <= 18 ? 'regular' : 'light'
899
+ */
900
+ type?: FowardType;
901
+ }
902
+ declare const Foward: ({ size, type, ...props }: FowardProps) => react_jsx_runtime.JSX.Element;
903
+
904
+ type FrameType = 'fill' | 'light' | 'regular';
905
+ interface FrameProps extends IconBaseProps {
906
+ /**
907
+ * 아이콘 variant.
908
+ * @default size <= 18 ? 'regular' : 'light'
909
+ */
910
+ type?: FrameType;
911
+ }
912
+ declare const Frame: ({ size, type, ...props }: FrameProps) => react_jsx_runtime.JSX.Element;
579
913
 
580
- declare const Functions: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
914
+ type FunctionsType = 'light' | 'regular';
915
+ interface FunctionsProps extends IconBaseProps {
916
+ /**
917
+ * 아이콘 variant.
918
+ * @default size <= 18 ? 'regular' : 'light'
919
+ */
920
+ type?: FunctionsType;
921
+ }
922
+ declare const Functions: ({ size, type, ...props }: FunctionsProps) => react_jsx_runtime.JSX.Element;
581
923
 
582
924
  type GearType = 'fill' | 'light' | 'regular';
583
925
  interface GearProps extends IconBaseProps {
@@ -589,7 +931,35 @@ interface GearProps extends IconBaseProps {
589
931
  }
590
932
  declare const Gear: ({ size, type, ...props }: GearProps) => react_jsx_runtime.JSX.Element;
591
933
 
592
- declare const Group: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
934
+ type GridType = 'fill' | 'light' | 'regular';
935
+ interface GridProps extends IconBaseProps {
936
+ /**
937
+ * 아이콘 variant.
938
+ * @default size <= 18 ? 'regular' : 'light'
939
+ */
940
+ type?: GridType;
941
+ }
942
+ declare const Grid: ({ size, type, ...props }: GridProps) => react_jsx_runtime.JSX.Element;
943
+
944
+ type GroupType = 'fill' | 'light' | 'regular';
945
+ interface GroupProps extends IconBaseProps {
946
+ /**
947
+ * 아이콘 variant.
948
+ * @default size <= 18 ? 'regular' : 'light'
949
+ */
950
+ type?: GroupType;
951
+ }
952
+ declare const Group: ({ size, type, ...props }: GroupProps) => react_jsx_runtime.JSX.Element;
953
+
954
+ type HandType = 'fill' | 'light' | 'regular';
955
+ interface HandProps extends IconBaseProps {
956
+ /**
957
+ * 아이콘 variant.
958
+ * @default size <= 18 ? 'regular' : 'light'
959
+ */
960
+ type?: HandType;
961
+ }
962
+ declare const Hand: ({ size, type, ...props }: HandProps) => react_jsx_runtime.JSX.Element;
593
963
 
594
964
  type HelpType = 'fill' | 'light' | 'regular';
595
965
  interface HelpProps extends IconBaseProps {
@@ -601,23 +971,55 @@ interface HelpProps extends IconBaseProps {
601
971
  }
602
972
  declare const Help: ({ size, type, ...props }: HelpProps) => react_jsx_runtime.JSX.Element;
603
973
 
604
- declare const History: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
974
+ type HistoryType = 'light' | 'regular';
975
+ interface HistoryProps extends IconBaseProps {
976
+ /**
977
+ * 아이콘 variant.
978
+ * @default size <= 18 ? 'regular' : 'light'
979
+ */
980
+ type?: HistoryType;
981
+ }
982
+ declare const History: ({ size, type, ...props }: HistoryProps) => react_jsx_runtime.JSX.Element;
605
983
 
606
- declare const Home: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
984
+ type HomeType = 'fill' | 'light' | 'regular';
985
+ interface HomeProps extends IconBaseProps {
986
+ /**
987
+ * 아이콘 variant.
988
+ * @default size <= 18 ? 'regular' : 'light'
989
+ */
990
+ type?: HomeType;
991
+ }
992
+ declare const Home: ({ size, type, ...props }: HomeProps) => react_jsx_runtime.JSX.Element;
607
993
 
608
- type ImageType = 'fill' | 'regular';
994
+ type ImageType = 'fill' | 'light' | 'regular';
609
995
  interface ImageProps extends IconBaseProps {
610
996
  /**
611
997
  * 아이콘 variant.
612
- * @default size <= 18 ? 'regular' : 'regular'
998
+ * @default size <= 18 ? 'regular' : 'light'
613
999
  */
614
1000
  type?: ImageType;
615
1001
  }
616
1002
  declare const Image: ({ size, type, ...props }: ImageProps) => react_jsx_runtime.JSX.Element;
617
1003
 
618
- declare const ImageCollection: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1004
+ type ImageCollectionType = 'fill' | 'light' | 'regular';
1005
+ interface ImageCollectionProps extends IconBaseProps {
1006
+ /**
1007
+ * 아이콘 variant.
1008
+ * @default size <= 18 ? 'regular' : 'light'
1009
+ */
1010
+ type?: ImageCollectionType;
1011
+ }
1012
+ declare const ImageCollection: ({ size, type, ...props }: ImageCollectionProps) => react_jsx_runtime.JSX.Element;
619
1013
 
620
- declare const Inbox: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1014
+ type InboxType = 'fill' | 'light' | 'regular';
1015
+ interface InboxProps extends IconBaseProps {
1016
+ /**
1017
+ * 아이콘 variant.
1018
+ * @default size <= 18 ? 'regular' : 'light'
1019
+ */
1020
+ type?: InboxType;
1021
+ }
1022
+ declare const Inbox: ({ size, type, ...props }: InboxProps) => react_jsx_runtime.JSX.Element;
621
1023
 
622
1024
  type InfoType = 'fill' | 'light' | 'regular';
623
1025
  interface InfoProps extends IconBaseProps {
@@ -625,41 +1027,119 @@ interface InfoProps extends IconBaseProps {
625
1027
  * 아이콘 variant.
626
1028
  * @default size <= 18 ? 'regular' : 'light'
627
1029
  */
628
- type?: InfoType;
1030
+ type?: InfoType;
1031
+ }
1032
+ declare const Info: ({ size, type, ...props }: InfoProps) => react_jsx_runtime.JSX.Element;
1033
+
1034
+ type InterestsType = 'fill' | 'light' | 'regular';
1035
+ interface InterestsProps extends IconBaseProps {
1036
+ /**
1037
+ * 아이콘 variant.
1038
+ * @default size <= 18 ? 'regular' : 'light'
1039
+ */
1040
+ type?: InterestsType;
1041
+ }
1042
+ declare const Interests: ({ size, type, ...props }: InterestsProps) => react_jsx_runtime.JSX.Element;
1043
+
1044
+ type KeyType = 'fill' | 'light' | 'regular';
1045
+ interface KeyProps extends IconBaseProps {
1046
+ /**
1047
+ * 아이콘 variant.
1048
+ * @default size <= 18 ? 'regular' : 'light'
1049
+ */
1050
+ type?: KeyType;
1051
+ }
1052
+ declare const Key: ({ size, type, ...props }: KeyProps) => react_jsx_runtime.JSX.Element;
1053
+
1054
+ type KoreanEnglishType = 'light' | 'regular';
1055
+ interface KoreanEnglishProps extends IconBaseProps {
1056
+ /**
1057
+ * 아이콘 variant.
1058
+ * @default size <= 18 ? 'regular' : 'light'
1059
+ */
1060
+ type?: KoreanEnglishType;
1061
+ }
1062
+ declare const KoreanEnglish: ({ size, type, ...props }: KoreanEnglishProps) => react_jsx_runtime.JSX.Element;
1063
+
1064
+ type LabelType = 'fill' | 'light' | 'regular';
1065
+ interface LabelProps extends IconBaseProps {
1066
+ /**
1067
+ * 아이콘 variant.
1068
+ * @default size <= 18 ? 'regular' : 'light'
1069
+ */
1070
+ type?: LabelType;
1071
+ }
1072
+ declare const Label: ({ size, type, ...props }: LabelProps) => react_jsx_runtime.JSX.Element;
1073
+
1074
+ type LayerType = 'fill' | 'light' | 'regular';
1075
+ interface LayerProps extends IconBaseProps {
1076
+ /**
1077
+ * 아이콘 variant.
1078
+ * @default size <= 18 ? 'regular' : 'light'
1079
+ */
1080
+ type?: LayerType;
1081
+ }
1082
+ declare const Layer: ({ size, type, ...props }: LayerProps) => react_jsx_runtime.JSX.Element;
1083
+
1084
+ type LightModeType = 'fill' | 'light' | 'regular';
1085
+ interface LightModeProps extends IconBaseProps {
1086
+ /**
1087
+ * 아이콘 variant.
1088
+ * @default size <= 18 ? 'regular' : 'light'
1089
+ */
1090
+ type?: LightModeType;
1091
+ }
1092
+ declare const LightMode: ({ size, type, ...props }: LightModeProps) => react_jsx_runtime.JSX.Element;
1093
+
1094
+ type LineChartType = 'light' | 'regular';
1095
+ interface LineChartProps extends IconBaseProps {
1096
+ /**
1097
+ * 아이콘 variant.
1098
+ * @default size <= 18 ? 'regular' : 'light'
1099
+ */
1100
+ type?: LineChartType;
1101
+ }
1102
+ declare const LineChart: ({ size, type, ...props }: LineChartProps) => react_jsx_runtime.JSX.Element;
1103
+
1104
+ type LinkType = 'light' | 'regular';
1105
+ interface LinkProps extends IconBaseProps {
1106
+ /**
1107
+ * 아이콘 variant.
1108
+ * @default size <= 18 ? 'regular' : 'light'
1109
+ */
1110
+ type?: LinkType;
629
1111
  }
630
- declare const Info: ({ size, type, ...props }: InfoProps) => react_jsx_runtime.JSX.Element;
1112
+ declare const Link: ({ size, type, ...props }: LinkProps) => react_jsx_runtime.JSX.Element;
631
1113
 
632
- type KeyType = 'fill' | 'light' | 'regular';
633
- interface KeyProps extends IconBaseProps {
1114
+ type LinkOffType = 'light' | 'regular';
1115
+ interface LinkOffProps extends IconBaseProps {
634
1116
  /**
635
1117
  * 아이콘 variant.
636
1118
  * @default size <= 18 ? 'regular' : 'light'
637
1119
  */
638
- type?: KeyType;
1120
+ type?: LinkOffType;
639
1121
  }
640
- declare const Key: ({ size, type, ...props }: KeyProps) => react_jsx_runtime.JSX.Element;
1122
+ declare const LinkOff: ({ size, type, ...props }: LinkOffProps) => react_jsx_runtime.JSX.Element;
641
1123
 
642
- declare const Layer: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
643
-
644
- type LightModeType = 'fill' | 'light' | 'regular';
645
- interface LightModeProps extends IconBaseProps {
1124
+ type ListType = 'light' | 'regular';
1125
+ interface ListProps extends IconBaseProps {
646
1126
  /**
647
1127
  * 아이콘 variant.
648
1128
  * @default size <= 18 ? 'regular' : 'light'
649
1129
  */
650
- type?: LightModeType;
1130
+ type?: ListType;
651
1131
  }
652
- declare const LightMode: ({ size, type, ...props }: LightModeProps) => react_jsx_runtime.JSX.Element;
653
-
654
- declare const LineChart: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1132
+ declare const List: ({ size, type, ...props }: ListProps) => react_jsx_runtime.JSX.Element;
655
1133
 
656
- declare const Link: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
657
-
658
- declare const LinkBreak: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
659
-
660
- declare const List: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
661
-
662
- declare const Location: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1134
+ type LocationType = 'fill' | 'light' | 'regular';
1135
+ interface LocationProps extends IconBaseProps {
1136
+ /**
1137
+ * 아이콘 variant.
1138
+ * @default size <= 18 ? 'regular' : 'light'
1139
+ */
1140
+ type?: LocationType;
1141
+ }
1142
+ declare const Location: ({ size, type, ...props }: LocationProps) => react_jsx_runtime.JSX.Element;
663
1143
 
664
1144
  type LockType = 'fill' | 'light' | 'regular';
665
1145
  interface LockProps extends IconBaseProps {
@@ -701,9 +1181,25 @@ interface MailProps extends IconBaseProps {
701
1181
  }
702
1182
  declare const Mail: ({ size, type, ...props }: MailProps) => react_jsx_runtime.JSX.Element;
703
1183
 
704
- declare const MailOpen: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1184
+ type MailOpenType = 'fill' | 'light' | 'regular';
1185
+ interface MailOpenProps extends IconBaseProps {
1186
+ /**
1187
+ * 아이콘 variant.
1188
+ * @default size <= 18 ? 'regular' : 'light'
1189
+ */
1190
+ type?: MailOpenType;
1191
+ }
1192
+ declare const MailOpen: ({ size, type, ...props }: MailOpenProps) => react_jsx_runtime.JSX.Element;
705
1193
 
706
- declare const Mediation: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1194
+ type MediationType = 'light' | 'regular';
1195
+ interface MediationProps extends IconBaseProps {
1196
+ /**
1197
+ * 아이콘 variant.
1198
+ * @default size <= 18 ? 'regular' : 'light'
1199
+ */
1200
+ type?: MediationType;
1201
+ }
1202
+ declare const Mediation: ({ size, type, ...props }: MediationProps) => react_jsx_runtime.JSX.Element;
707
1203
 
708
1204
  type MemoryType = 'fill' | 'light' | 'regular';
709
1205
  interface MemoryProps extends IconBaseProps {
@@ -715,7 +1211,15 @@ interface MemoryProps extends IconBaseProps {
715
1211
  }
716
1212
  declare const Memory: ({ size, type, ...props }: MemoryProps) => react_jsx_runtime.JSX.Element;
717
1213
 
718
- declare const Menu: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1214
+ type MenuType = 'light' | 'regular';
1215
+ interface MenuProps extends IconBaseProps {
1216
+ /**
1217
+ * 아이콘 variant.
1218
+ * @default size <= 18 ? 'regular' : 'light'
1219
+ */
1220
+ type?: MenuType;
1221
+ }
1222
+ declare const Menu: ({ size, type, ...props }: MenuProps) => react_jsx_runtime.JSX.Element;
719
1223
 
720
1224
  type MinusType = 'light' | 'regular';
721
1225
  interface MinusProps extends IconBaseProps {
@@ -737,6 +1241,16 @@ interface MonitorProps extends IconBaseProps {
737
1241
  }
738
1242
  declare const Monitor: ({ size, type, ...props }: MonitorProps) => react_jsx_runtime.JSX.Element;
739
1243
 
1244
+ type MonitorHeartType = 'fill' | 'light' | 'regular';
1245
+ interface MonitorHeartProps extends IconBaseProps {
1246
+ /**
1247
+ * 아이콘 variant.
1248
+ * @default size <= 18 ? 'regular' : 'light'
1249
+ */
1250
+ type?: MonitorHeartType;
1251
+ }
1252
+ declare const MonitorHeart: ({ size, type, ...props }: MonitorHeartProps) => react_jsx_runtime.JSX.Element;
1253
+
740
1254
  type MoreHorizontalType = 'light' | 'regular';
741
1255
  interface MoreHorizontalProps extends IconBaseProps {
742
1256
  /**
@@ -757,11 +1271,25 @@ interface MoreVerticalProps extends IconBaseProps {
757
1271
  }
758
1272
  declare const MoreVertical: ({ size, type, ...props }: MoreVerticalProps) => react_jsx_runtime.JSX.Element;
759
1273
 
760
- declare const NextDouble: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
761
-
762
- declare const Note: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1274
+ type MyLocationType = 'light' | 'regular';
1275
+ interface MyLocationProps extends IconBaseProps {
1276
+ /**
1277
+ * 아이콘 variant.
1278
+ * @default size <= 18 ? 'regular' : 'light'
1279
+ */
1280
+ type?: MyLocationType;
1281
+ }
1282
+ declare const MyLocation: ({ size, type, ...props }: MyLocationProps) => react_jsx_runtime.JSX.Element;
763
1283
 
764
- declare const Notice: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1284
+ type NoteType = 'light' | 'regular';
1285
+ interface NoteProps extends IconBaseProps {
1286
+ /**
1287
+ * 아이콘 variant.
1288
+ * @default size <= 18 ? 'regular' : 'light'
1289
+ */
1290
+ type?: NoteType;
1291
+ }
1292
+ declare const Note: ({ size, type, ...props }: NoteProps) => react_jsx_runtime.JSX.Element;
765
1293
 
766
1294
  type NotificationType = 'fill' | 'light' | 'regular';
767
1295
  interface NotificationProps extends IconBaseProps {
@@ -773,23 +1301,17 @@ interface NotificationProps extends IconBaseProps {
773
1301
  }
774
1302
  declare const Notification: ({ size, type, ...props }: NotificationProps) => react_jsx_runtime.JSX.Element;
775
1303
 
776
- declare const Objects: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
777
-
778
- declare const Open: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
779
-
780
- declare const Oracle: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
781
-
782
- type OrderType = 'light' | 'regular';
783
- interface OrderProps extends IconBaseProps {
1304
+ type OpenType = 'light' | 'regular';
1305
+ interface OpenProps extends IconBaseProps {
784
1306
  /**
785
1307
  * 아이콘 variant.
786
1308
  * @default size <= 18 ? 'regular' : 'light'
787
1309
  */
788
- type?: OrderType;
1310
+ type?: OpenType;
789
1311
  }
790
- declare const Order: ({ size, type, ...props }: OrderProps) => react_jsx_runtime.JSX.Element;
1312
+ declare const Open: ({ size, type, ...props }: OpenProps) => react_jsx_runtime.JSX.Element;
791
1313
 
792
- declare const OrderRgular: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1314
+ declare const Oracle: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
793
1315
 
794
1316
  type PaletteType = 'fill' | 'light' | 'regular';
795
1317
  interface PaletteProps extends IconBaseProps {
@@ -811,9 +1333,25 @@ interface PaperBoardProps extends IconBaseProps {
811
1333
  }
812
1334
  declare const PaperBoard: ({ size, type, ...props }: PaperBoardProps) => react_jsx_runtime.JSX.Element;
813
1335
 
814
- declare const Partial: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1336
+ type PartialType = 'light' | 'regular';
1337
+ interface PartialProps extends IconBaseProps {
1338
+ /**
1339
+ * 아이콘 variant.
1340
+ * @default size <= 18 ? 'regular' : 'light'
1341
+ */
1342
+ type?: PartialType;
1343
+ }
1344
+ declare const Partial: ({ size, type, ...props }: PartialProps) => react_jsx_runtime.JSX.Element;
815
1345
 
816
- declare const Pause: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1346
+ type PauseType = 'fill' | 'light' | 'regular';
1347
+ interface PauseProps extends IconBaseProps {
1348
+ /**
1349
+ * 아이콘 variant.
1350
+ * @default size <= 18 ? 'regular' : 'light'
1351
+ */
1352
+ type?: PauseType;
1353
+ }
1354
+ declare const Pause: ({ size, type, ...props }: PauseProps) => react_jsx_runtime.JSX.Element;
817
1355
 
818
1356
  type PencilType = 'fill' | 'light' | 'regular';
819
1357
  interface PencilProps extends IconBaseProps {
@@ -825,7 +1363,15 @@ interface PencilProps extends IconBaseProps {
825
1363
  }
826
1364
  declare const Pencil: ({ size, type, ...props }: PencilProps) => react_jsx_runtime.JSX.Element;
827
1365
 
828
- declare const People: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1366
+ type PeopleType = 'fill' | 'light' | 'regular';
1367
+ interface PeopleProps extends IconBaseProps {
1368
+ /**
1369
+ * 아이콘 variant.
1370
+ * @default size <= 18 ? 'regular' : 'light'
1371
+ */
1372
+ type?: PeopleType;
1373
+ }
1374
+ declare const People: ({ size, type, ...props }: PeopleProps) => react_jsx_runtime.JSX.Element;
829
1375
 
830
1376
  type PersonType = 'fill' | 'light' | 'regular';
831
1377
  interface PersonProps extends IconBaseProps {
@@ -837,9 +1383,35 @@ interface PersonProps extends IconBaseProps {
837
1383
  }
838
1384
  declare const Person: ({ size, type, ...props }: PersonProps) => react_jsx_runtime.JSX.Element;
839
1385
 
840
- declare const PersonAdd: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1386
+ type PersonAddType = 'fill' | 'light' | 'regular';
1387
+ interface PersonAddProps extends IconBaseProps {
1388
+ /**
1389
+ * 아이콘 variant.
1390
+ * @default size <= 18 ? 'regular' : 'light'
1391
+ */
1392
+ type?: PersonAddType;
1393
+ }
1394
+ declare const PersonAdd: ({ size, type, ...props }: PersonAddProps) => react_jsx_runtime.JSX.Element;
1395
+
1396
+ type PhoneType = 'fill' | 'light' | 'regular';
1397
+ interface PhoneProps extends IconBaseProps {
1398
+ /**
1399
+ * 아이콘 variant.
1400
+ * @default size <= 18 ? 'regular' : 'light'
1401
+ */
1402
+ type?: PhoneType;
1403
+ }
1404
+ declare const Phone: ({ size, type, ...props }: PhoneProps) => react_jsx_runtime.JSX.Element;
841
1405
 
842
- declare const Phone: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1406
+ type PieChartType = 'fill' | 'light' | 'regular';
1407
+ interface PieChartProps extends IconBaseProps {
1408
+ /**
1409
+ * 아이콘 variant.
1410
+ * @default size <= 18 ? 'regular' : 'light'
1411
+ */
1412
+ type?: PieChartType;
1413
+ }
1414
+ declare const PieChart: ({ size, type, ...props }: PieChartProps) => react_jsx_runtime.JSX.Element;
843
1415
 
844
1416
  type PinType = 'fill' | 'light' | 'regular';
845
1417
  interface PinProps extends IconBaseProps {
@@ -871,11 +1443,11 @@ interface PlayProps extends IconBaseProps {
871
1443
  }
872
1444
  declare const Play: ({ size, type, ...props }: PlayProps) => react_jsx_runtime.JSX.Element;
873
1445
 
874
- type PlayCircleType = 'fill' | 'regular';
1446
+ type PlayCircleType = 'fill' | 'light' | 'regular';
875
1447
  interface PlayCircleProps extends IconBaseProps {
876
1448
  /**
877
1449
  * 아이콘 variant.
878
- * @default size <= 18 ? 'regular' : 'regular'
1450
+ * @default size <= 18 ? 'regular' : 'light'
879
1451
  */
880
1452
  type?: PlayCircleType;
881
1453
  }
@@ -891,7 +1463,25 @@ interface PlusProps extends IconBaseProps {
891
1463
  }
892
1464
  declare const Plus: ({ size, type, ...props }: PlusProps) => react_jsx_runtime.JSX.Element;
893
1465
 
894
- declare const Policy: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1466
+ type PointerType = 'fill' | 'light' | 'regular';
1467
+ interface PointerProps extends IconBaseProps {
1468
+ /**
1469
+ * 아이콘 variant.
1470
+ * @default size <= 18 ? 'regular' : 'light'
1471
+ */
1472
+ type?: PointerType;
1473
+ }
1474
+ declare const Pointer: ({ size, type, ...props }: PointerProps) => react_jsx_runtime.JSX.Element;
1475
+
1476
+ type PolicyType = 'fill' | 'light' | 'regular';
1477
+ interface PolicyProps extends IconBaseProps {
1478
+ /**
1479
+ * 아이콘 variant.
1480
+ * @default size <= 18 ? 'regular' : 'light'
1481
+ */
1482
+ type?: PolicyType;
1483
+ }
1484
+ declare const Policy: ({ size, type, ...props }: PolicyProps) => react_jsx_runtime.JSX.Element;
895
1485
 
896
1486
  type PolylineType = 'fill' | 'light' | 'regular';
897
1487
  interface PolylineProps extends IconBaseProps {
@@ -923,18 +1513,6 @@ interface PowerOffProps extends IconBaseProps {
923
1513
  }
924
1514
  declare const PowerOff: ({ size, type, ...props }: PowerOffProps) => react_jsx_runtime.JSX.Element;
925
1515
 
926
- declare const PreviousDouble: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
927
-
928
- type RecordType = 'fill' | 'regular';
929
- interface RecordProps extends IconBaseProps {
930
- /**
931
- * 아이콘 variant.
932
- * @default size <= 18 ? 'regular' : 'regular'
933
- */
934
- type?: RecordType;
935
- }
936
- declare const Record: ({ size, type, ...props }: RecordProps) => react_jsx_runtime.JSX.Element;
937
-
938
1516
  type RedoType = 'light' | 'regular';
939
1517
  interface RedoProps extends IconBaseProps {
940
1518
  /**
@@ -955,11 +1533,37 @@ interface RefreshProps extends IconBaseProps {
955
1533
  }
956
1534
  declare const Refresh: ({ size, type, ...props }: RefreshProps) => react_jsx_runtime.JSX.Element;
957
1535
 
958
- declare const Return: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1536
+ type ReturnType = 'light' | 'regular';
1537
+ interface ReturnProps extends IconBaseProps {
1538
+ /**
1539
+ * 아이콘 variant.
1540
+ * @default size <= 18 ? 'regular' : 'light'
1541
+ */
1542
+ type?: ReturnType;
1543
+ }
1544
+ declare const Return: ({ size, type, ...props }: ReturnProps) => react_jsx_runtime.JSX.Element;
1545
+
1546
+ type RewindType = 'fill' | 'light' | 'regular';
1547
+ interface RewindProps extends IconBaseProps {
1548
+ /**
1549
+ * 아이콘 variant.
1550
+ * @default size <= 18 ? 'regular' : 'light'
1551
+ */
1552
+ type?: RewindType;
1553
+ }
1554
+ declare const Rewind: ({ size, type, ...props }: RewindProps) => react_jsx_runtime.JSX.Element;
959
1555
 
960
1556
  declare const RootFinderSymbol: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
961
1557
 
962
- declare const Scatter: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1558
+ type ScatterType = 'fill' | 'light' | 'regular';
1559
+ interface ScatterProps extends IconBaseProps {
1560
+ /**
1561
+ * 아이콘 variant.
1562
+ * @default size <= 18 ? 'regular' : 'light'
1563
+ */
1564
+ type?: ScatterType;
1565
+ }
1566
+ declare const Scatter: ({ size, type, ...props }: ScatterProps) => react_jsx_runtime.JSX.Element;
963
1567
 
964
1568
  type SchemaType = 'fill' | 'light' | 'regular';
965
1569
  interface SchemaProps extends IconBaseProps {
@@ -991,7 +1595,15 @@ interface SearchProps extends IconBaseProps {
991
1595
  }
992
1596
  declare const Search: ({ size, type, ...props }: SearchProps) => react_jsx_runtime.JSX.Element;
993
1597
 
994
- declare const Send: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1598
+ type SendType = 'fill' | 'light' | 'regular';
1599
+ interface SendProps extends IconBaseProps {
1600
+ /**
1601
+ * 아이콘 variant.
1602
+ * @default size <= 18 ? 'regular' : 'light'
1603
+ */
1604
+ type?: SendType;
1605
+ }
1606
+ declare const Send: ({ size, type, ...props }: SendProps) => react_jsx_runtime.JSX.Element;
995
1607
 
996
1608
  type SidebarType = 'fill' | 'light' | 'regular';
997
1609
  interface SidebarProps extends IconBaseProps {
@@ -1003,28 +1615,76 @@ interface SidebarProps extends IconBaseProps {
1003
1615
  }
1004
1616
  declare const Sidebar: ({ size, type, ...props }: SidebarProps) => react_jsx_runtime.JSX.Element;
1005
1617
 
1006
- declare const SkipNext: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1618
+ type SkipNextType = 'fill' | 'light' | 'regular';
1619
+ interface SkipNextProps extends IconBaseProps {
1620
+ /**
1621
+ * 아이콘 variant.
1622
+ * @default size <= 18 ? 'regular' : 'light'
1623
+ */
1624
+ type?: SkipNextType;
1625
+ }
1626
+ declare const SkipNext: ({ size, type, ...props }: SkipNextProps) => react_jsx_runtime.JSX.Element;
1627
+
1628
+ type SkipPreviousType = 'fill' | 'light' | 'regular';
1629
+ interface SkipPreviousProps extends IconBaseProps {
1630
+ /**
1631
+ * 아이콘 variant.
1632
+ * @default size <= 18 ? 'regular' : 'light'
1633
+ */
1634
+ type?: SkipPreviousType;
1635
+ }
1636
+ declare const SkipPrevious: ({ size, type, ...props }: SkipPreviousProps) => react_jsx_runtime.JSX.Element;
1007
1637
 
1008
- declare const SkipPrevious: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1638
+ type SortDownType = 'light' | 'regular';
1639
+ interface SortDownProps extends IconBaseProps {
1640
+ /**
1641
+ * 아이콘 variant.
1642
+ * @default size <= 18 ? 'regular' : 'light'
1643
+ */
1644
+ type?: SortDownType;
1645
+ }
1646
+ declare const SortDown: ({ size, type, ...props }: SortDownProps) => react_jsx_runtime.JSX.Element;
1009
1647
 
1010
- declare const SortDown: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1648
+ type SortUpType = 'light' | 'regular';
1649
+ interface SortUpProps extends IconBaseProps {
1650
+ /**
1651
+ * 아이콘 variant.
1652
+ * @default size <= 18 ? 'regular' : 'light'
1653
+ */
1654
+ type?: SortUpType;
1655
+ }
1656
+ declare const SortUp: ({ size, type, ...props }: SortUpProps) => react_jsx_runtime.JSX.Element;
1011
1657
 
1012
- declare const SortUp: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1658
+ type SoundType = 'fill' | 'light' | 'regular';
1659
+ interface SoundProps extends IconBaseProps {
1660
+ /**
1661
+ * 아이콘 variant.
1662
+ * @default size <= 18 ? 'regular' : 'light'
1663
+ */
1664
+ type?: SoundType;
1665
+ }
1666
+ declare const Sound: ({ size, type, ...props }: SoundProps) => react_jsx_runtime.JSX.Element;
1013
1667
 
1014
- declare const Sparkle: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1668
+ type SparkleType = 'fill' | 'light' | 'regular';
1669
+ interface SparkleProps extends IconBaseProps {
1670
+ /**
1671
+ * 아이콘 variant.
1672
+ * @default size <= 18 ? 'regular' : 'light'
1673
+ */
1674
+ type?: SparkleType;
1675
+ }
1676
+ declare const Sparkle: ({ size, type, ...props }: SparkleProps) => react_jsx_runtime.JSX.Element;
1015
1677
 
1016
- type SpeechBubbleType = 'fill' | 'light';
1678
+ type SpeechBubbleType = 'fill' | 'light' | 'regular';
1017
1679
  interface SpeechBubbleProps extends IconBaseProps {
1018
1680
  /**
1019
1681
  * 아이콘 variant.
1020
- * @default size <= 18 ? 'fill' : 'light'
1682
+ * @default size <= 18 ? 'regular' : 'light'
1021
1683
  */
1022
1684
  type?: SpeechBubbleType;
1023
1685
  }
1024
1686
  declare const SpeechBubble: ({ size, type, ...props }: SpeechBubbleProps) => react_jsx_runtime.JSX.Element;
1025
1687
 
1026
- declare const SpeechBubbleRegualr: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1027
-
1028
1688
  type SplitType = 'light' | 'regular';
1029
1689
  interface SplitProps extends IconBaseProps {
1030
1690
  /**
@@ -1035,9 +1695,25 @@ interface SplitProps extends IconBaseProps {
1035
1695
  }
1036
1696
  declare const Split: ({ size, type, ...props }: SplitProps) => react_jsx_runtime.JSX.Element;
1037
1697
 
1038
- declare const SplitScene: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1698
+ type SplitSceneType = 'fill' | 'light' | 'regular';
1699
+ interface SplitSceneProps extends IconBaseProps {
1700
+ /**
1701
+ * 아이콘 variant.
1702
+ * @default size <= 18 ? 'regular' : 'light'
1703
+ */
1704
+ type?: SplitSceneType;
1705
+ }
1706
+ declare const SplitScene: ({ size, type, ...props }: SplitSceneProps) => react_jsx_runtime.JSX.Element;
1039
1707
 
1040
- declare const Square: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1708
+ type SquareType = 'fill' | 'light' | 'regular';
1709
+ interface SquareProps extends IconBaseProps {
1710
+ /**
1711
+ * 아이콘 variant.
1712
+ * @default size <= 18 ? 'regular' : 'light'
1713
+ */
1714
+ type?: SquareType;
1715
+ }
1716
+ declare const Square: ({ size, type, ...props }: SquareProps) => react_jsx_runtime.JSX.Element;
1041
1717
 
1042
1718
  type StarType = 'fill' | 'light' | 'regular';
1043
1719
  interface StarProps extends IconBaseProps {
@@ -1059,7 +1735,45 @@ interface StopProps extends IconBaseProps {
1059
1735
  }
1060
1736
  declare const Stop: ({ size, type, ...props }: StopProps) => react_jsx_runtime.JSX.Element;
1061
1737
 
1062
- declare const SupervisorAccount: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1738
+ type StopCircleType = 'fill' | 'light' | 'regular';
1739
+ interface StopCircleProps extends IconBaseProps {
1740
+ /**
1741
+ * 아이콘 variant.
1742
+ * @default size <= 18 ? 'regular' : 'light'
1743
+ */
1744
+ type?: StopCircleType;
1745
+ }
1746
+ declare const StopCircle: ({ size, type, ...props }: StopCircleProps) => react_jsx_runtime.JSX.Element;
1747
+
1748
+ type SwapHorizontalType = 'light' | 'regular';
1749
+ interface SwapHorizontalProps extends IconBaseProps {
1750
+ /**
1751
+ * 아이콘 variant.
1752
+ * @default size <= 18 ? 'regular' : 'light'
1753
+ */
1754
+ type?: SwapHorizontalType;
1755
+ }
1756
+ declare const SwapHorizontal: ({ size, type, ...props }: SwapHorizontalProps) => react_jsx_runtime.JSX.Element;
1757
+
1758
+ type SwapVerticalType = 'light' | 'regular';
1759
+ interface SwapVerticalProps extends IconBaseProps {
1760
+ /**
1761
+ * 아이콘 variant.
1762
+ * @default size <= 18 ? 'regular' : 'light'
1763
+ */
1764
+ type?: SwapVerticalType;
1765
+ }
1766
+ declare const SwapVertical: ({ size, type, ...props }: SwapVerticalProps) => react_jsx_runtime.JSX.Element;
1767
+
1768
+ type SyncType = 'light' | 'regular';
1769
+ interface SyncProps extends IconBaseProps {
1770
+ /**
1771
+ * 아이콘 variant.
1772
+ * @default size <= 18 ? 'regular' : 'light'
1773
+ */
1774
+ type?: SyncType;
1775
+ }
1776
+ declare const Sync: ({ size, type, ...props }: SyncProps) => react_jsx_runtime.JSX.Element;
1063
1777
 
1064
1778
  type TableType = 'fill' | 'light' | 'regular';
1065
1779
  interface TableProps extends IconBaseProps {
@@ -1071,10 +1785,6 @@ interface TableProps extends IconBaseProps {
1071
1785
  }
1072
1786
  declare const Table: ({ size, type, ...props }: TableProps) => react_jsx_runtime.JSX.Element;
1073
1787
 
1074
- declare const TableColumn: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1075
-
1076
- declare const TableRow: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1077
-
1078
1788
  type TacticsType = 'light' | 'regular';
1079
1789
  interface TacticsProps extends IconBaseProps {
1080
1790
  /**
@@ -1085,19 +1795,15 @@ interface TacticsProps extends IconBaseProps {
1085
1795
  }
1086
1796
  declare const Tactics: ({ size, type, ...props }: TacticsProps) => react_jsx_runtime.JSX.Element;
1087
1797
 
1088
- declare const Tag: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1089
-
1090
- type TaskType = 'fill' | 'regular';
1091
- interface TaskProps extends IconBaseProps {
1798
+ type TagType = 'fill' | 'light' | 'regular';
1799
+ interface TagProps extends IconBaseProps {
1092
1800
  /**
1093
1801
  * 아이콘 variant.
1094
- * @default size <= 18 ? 'regular' : 'regular'
1802
+ * @default size <= 18 ? 'regular' : 'light'
1095
1803
  */
1096
- type?: TaskType;
1804
+ type?: TagType;
1097
1805
  }
1098
- declare const Task: ({ size, type, ...props }: TaskProps) => react_jsx_runtime.JSX.Element;
1099
-
1100
- declare const TextEdit: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1806
+ declare const Tag: ({ size, type, ...props }: TagProps) => react_jsx_runtime.JSX.Element;
1101
1807
 
1102
1808
  type ThumbDownType = 'fill' | 'light' | 'regular';
1103
1809
  interface ThumbDownProps extends IconBaseProps {
@@ -1119,9 +1825,15 @@ interface ThumbUpProps extends IconBaseProps {
1119
1825
  }
1120
1826
  declare const ThumbUp: ({ size, type, ...props }: ThumbUpProps) => react_jsx_runtime.JSX.Element;
1121
1827
 
1122
- declare const Timeline: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1123
-
1124
- declare const Title: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1828
+ type TitleType = 'light' | 'regular';
1829
+ interface TitleProps extends IconBaseProps {
1830
+ /**
1831
+ * 아이콘 variant.
1832
+ * @default size <= 18 ? 'regular' : 'light'
1833
+ */
1834
+ type?: TitleType;
1835
+ }
1836
+ declare const Title: ({ size, type, ...props }: TitleProps) => react_jsx_runtime.JSX.Element;
1125
1837
 
1126
1838
  type ToolboxType = 'fill' | 'light' | 'regular';
1127
1839
  interface ToolboxProps extends IconBaseProps {
@@ -1165,6 +1877,16 @@ interface TuneSimpleProps extends IconBaseProps {
1165
1877
  }
1166
1878
  declare const TuneSimple: ({ size, type, ...props }: TuneSimpleProps) => react_jsx_runtime.JSX.Element;
1167
1879
 
1880
+ type UnarchiveType = 'fill' | 'light' | 'regular';
1881
+ interface UnarchiveProps extends IconBaseProps {
1882
+ /**
1883
+ * 아이콘 variant.
1884
+ * @default size <= 18 ? 'regular' : 'light'
1885
+ */
1886
+ type?: UnarchiveType;
1887
+ }
1888
+ declare const Unarchive: ({ size, type, ...props }: UnarchiveProps) => react_jsx_runtime.JSX.Element;
1889
+
1168
1890
  type UndoType = 'light' | 'regular';
1169
1891
  interface UndoProps extends IconBaseProps {
1170
1892
  /**
@@ -1185,13 +1907,55 @@ interface UploadProps extends IconBaseProps {
1185
1907
  }
1186
1908
  declare const Upload: ({ size, type, ...props }: UploadProps) => react_jsx_runtime.JSX.Element;
1187
1909
 
1188
- declare const UploadDocument: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1910
+ type ViewColumnType = 'fill' | 'light' | 'regular';
1911
+ interface ViewColumnProps extends IconBaseProps {
1912
+ /**
1913
+ * 아이콘 variant.
1914
+ * @default size <= 18 ? 'regular' : 'light'
1915
+ */
1916
+ type?: ViewColumnType;
1917
+ }
1918
+ declare const ViewColumn: ({ size, type, ...props }: ViewColumnProps) => react_jsx_runtime.JSX.Element;
1919
+
1920
+ type ViewHorizontalType = 'fill' | 'light' | 'regular';
1921
+ interface ViewHorizontalProps extends IconBaseProps {
1922
+ /**
1923
+ * 아이콘 variant.
1924
+ * @default size <= 18 ? 'regular' : 'light'
1925
+ */
1926
+ type?: ViewHorizontalType;
1927
+ }
1928
+ declare const ViewHorizontal: ({ size, type, ...props }: ViewHorizontalProps) => react_jsx_runtime.JSX.Element;
1189
1929
 
1190
- declare const ViewHorizontal: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1930
+ type ViewModuleType = 'fill' | 'light' | 'regular';
1931
+ interface ViewModuleProps extends IconBaseProps {
1932
+ /**
1933
+ * 아이콘 variant.
1934
+ * @default size <= 18 ? 'regular' : 'light'
1935
+ */
1936
+ type?: ViewModuleType;
1937
+ }
1938
+ declare const ViewModule: ({ size, type, ...props }: ViewModuleProps) => react_jsx_runtime.JSX.Element;
1191
1939
 
1192
- declare const ViewModule: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1940
+ type ViewRowType = 'fill' | 'light' | 'regular';
1941
+ interface ViewRowProps extends IconBaseProps {
1942
+ /**
1943
+ * 아이콘 variant.
1944
+ * @default size <= 18 ? 'regular' : 'light'
1945
+ */
1946
+ type?: ViewRowType;
1947
+ }
1948
+ declare const ViewRow: ({ size, type, ...props }: ViewRowProps) => react_jsx_runtime.JSX.Element;
1193
1949
 
1194
- declare const ViewVertical: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1950
+ type ViewVerticalType = 'fill' | 'light' | 'regular';
1951
+ interface ViewVerticalProps extends IconBaseProps {
1952
+ /**
1953
+ * 아이콘 variant.
1954
+ * @default size <= 18 ? 'regular' : 'light'
1955
+ */
1956
+ type?: ViewVerticalType;
1957
+ }
1958
+ declare const ViewVertical: ({ size, type, ...props }: ViewVerticalProps) => react_jsx_runtime.JSX.Element;
1195
1959
 
1196
1960
  type VisibilityType = 'fill' | 'light' | 'regular';
1197
1961
  interface VisibilityProps extends IconBaseProps {
@@ -1213,10 +1977,6 @@ interface VisibilityOffProps extends IconBaseProps {
1213
1977
  }
1214
1978
  declare const VisibilityOff: ({ size, type, ...props }: VisibilityOffProps) => react_jsx_runtime.JSX.Element;
1215
1979
 
1216
- declare const VisibilityVisibility: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1217
-
1218
- declare const VisibilityVisibilityOff: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1219
-
1220
1980
  type WarningType = 'fill' | 'light' | 'regular';
1221
1981
  interface WarningProps extends IconBaseProps {
1222
1982
  /**
@@ -1227,9 +1987,15 @@ interface WarningProps extends IconBaseProps {
1227
1987
  }
1228
1988
  declare const Warning: ({ size, type, ...props }: WarningProps) => react_jsx_runtime.JSX.Element;
1229
1989
 
1230
- declare const WiFi: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1231
-
1232
- declare const Widgetpack: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1990
+ type WiFiType = 'light' | 'regular';
1991
+ interface WiFiProps extends IconBaseProps {
1992
+ /**
1993
+ * 아이콘 variant.
1994
+ * @default size <= 18 ? 'regular' : 'light'
1995
+ */
1996
+ type?: WiFiType;
1997
+ }
1998
+ declare const WiFi: ({ size, type, ...props }: WiFiProps) => react_jsx_runtime.JSX.Element;
1233
1999
 
1234
2000
  type WidgetsType = 'fill' | 'light' | 'regular';
1235
2001
  interface WidgetsProps extends IconBaseProps {
@@ -1241,8 +2007,6 @@ interface WidgetsProps extends IconBaseProps {
1241
2007
  }
1242
2008
  declare const Widgets: ({ size, type, ...props }: WidgetsProps) => react_jsx_runtime.JSX.Element;
1243
2009
 
1244
- declare const Work: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
1245
-
1246
2010
  type XType = 'light' | 'regular';
1247
2011
  interface XProps extends IconBaseProps {
1248
2012
  /**
@@ -1253,6 +2017,24 @@ interface XProps extends IconBaseProps {
1253
2017
  }
1254
2018
  declare const X: ({ size, type, ...props }: XProps) => react_jsx_runtime.JSX.Element;
1255
2019
 
1256
- declare const Zoom: ({ size, ...props }: IconBaseProps) => react_jsx_runtime.JSX.Element;
2020
+ type ZoomInType = 'light' | 'regular';
2021
+ interface ZoomInProps extends IconBaseProps {
2022
+ /**
2023
+ * 아이콘 variant.
2024
+ * @default size <= 18 ? 'regular' : 'light'
2025
+ */
2026
+ type?: ZoomInType;
2027
+ }
2028
+ declare const ZoomIn: ({ size, type, ...props }: ZoomInProps) => react_jsx_runtime.JSX.Element;
2029
+
2030
+ type ZoomOutType = 'light' | 'regular';
2031
+ interface ZoomOutProps extends IconBaseProps {
2032
+ /**
2033
+ * 아이콘 variant.
2034
+ * @default size <= 18 ? 'regular' : 'light'
2035
+ */
2036
+ type?: ZoomOutType;
2037
+ }
2038
+ declare const ZoomOut: ({ size, type, ...props }: ZoomOutProps) => react_jsx_runtime.JSX.Element;
1257
2039
 
1258
- export { Account, Account as AccountIcon, AccountTree, AccountTree as AccountTreeIcon, Active, Active as ActiveIcon, AlignCenter, AlignCenter as AlignCenterIcon, AlignJustified, AlignJustified as AlignJustifiedIcon, AlignLeft, AlignLeft as AlignLeftIcon, AlignRight, AlignRight as AlignRightIcon, Apartment, Apartment as ApartmentIcon, AreaChart, AreaChart as AreaChartIcon, ArrowBottomRight, ArrowBottomRight as ArrowBottomRightIcon, ArrowDown, ArrowDown as ArrowDownIcon, ArrowLeft, ArrowLeft as ArrowLeftIcon, ArrowLeftRight, ArrowLeftRight as ArrowLeftRightIcon, ArrowRight, ArrowRight as ArrowRightIcon, ArrowRotate, ArrowRotate as ArrowRotateIcon, ArrowUp, ArrowUp as ArrowUpIcon, ArrowUpRight, ArrowUpRight as ArrowUpRightIcon, Back, Back as BackIcon, Badge, Badge as BadgeIcon, BarChart, BarChart as BarChartIcon, Blank, Blank as BlankIcon, Brain, Brain as BrainIcon, Build, Build as BuildIcon, Bulb, Bulb as BulbIcon, Calculate, Calculate as CalculateIcon, Calendar, CalendarDate, CalendarDate as CalendarDateIcon, CalendarEvent, CalendarEvent as CalendarEventIcon, Calendar as CalendarIcon, Cancel, Cancel as CancelIcon, CardView, CardView as CardViewIcon, CarrotDown, CarrotDown as CarrotDownIcon, CarrotLeft, CarrotLeft as CarrotLeftIcon, CarrotRight, CarrotRight as CarrotRightIcon, CarrotUp, CarrotUpDown, CarrotUpDown as CarrotUpDownIcon, CarrotUp as CarrotUpIcon, Category, Category as CategoryIcon, ChartPie, ChartPie as ChartPieIcon, Chat, Chat as ChatIcon, ChatLine, ChatLine as ChatLineIcon, Check, CheckCircle, CheckCircle as CheckCircleIcon, Check as CheckIcon, CheckboxChecked, CheckboxChecked as CheckboxCheckedIcon, CheckboxIndeterminate, CheckboxIndeterminate as CheckboxIndeterminateIcon, CheckboxUnchecked, CheckboxUnchecked as CheckboxUncheckedIcon, Checklist, Checklist as ChecklistIcon, ChevronDoubleDown, ChevronDoubleDown as ChevronDoubleDownIcon, ChevronDoubleLeft, ChevronDoubleLeft as ChevronDoubleLeftIcon, ChevronDoubleRight, ChevronDoubleRight as ChevronDoubleRightIcon, ChevronDoubleUp, ChevronDoubleUp as ChevronDoubleUpIcon, ChevronDown, ChevronDown as ChevronDownIcon, ChevronLeft, ChevronLeft as ChevronLeftIcon, ChevronRight, ChevronRight as ChevronRightIcon, ChevronUp, ChevronUpDown, ChevronUpDown as ChevronUpDownIcon, ChevronUp as ChevronUpIcon, CiTest, CiTest as CiTestIcon, Clock, Clock as ClockIcon, Cloud, Cloud as CloudIcon, Code, Code as CodeIcon, Copy, Copy as CopyIcon, Cpu, Cpu as CpuIcon, Cube, Cube as CubeIcon, DarkMode, DarkMode as DarkModeIcon, Dash, Dash as DashIcon, Dashboard, Dashboard as DashboardIcon, DashboardSymbol, DashboardSymbol as DashboardSymbolIcon, Database, Database as DatabaseIcon, DatabaseSearch, DatabaseSearch as DatabaseSearchIcon, Dataset, Dataset as DatasetIcon, Delete, Delete as DeleteIcon, DeployedCode, DeployedCode as DeployedCodeIcon, Disconnect, Disconnect as DisconnectIcon, Disk, Disk as DiskIcon, DomainVerification, DomainVerification as DomainVerificationIcon, DotsHorizontal, DotsHorizontal as DotsHorizontalIcon, DotsVertical, DotsVertical as DotsVerticalIcon, Download, DownloadDocument, DownloadDocument as DownloadDocumentIcon, Download as DownloadIcon, Ellipse, Ellipse as EllipseIcon, Error, Error as ErrorIcon, Expand, Expand as ExpandIcon, Export, Export as ExportIcon, Feedback, Feedback as FeedbackIcon, File, FileAdd, FileAdd as FileAddIcon, File as FileIcon, FilePdf, FilePdf as FilePdfIcon, FileXls, FileXls as FileXlsIcon, Filter, Filter as FilterIcon, FilterList, FilterList as FilterListIcon, Flag, Flag as FlagIcon, Folder, Folder as FolderIcon, FolderOpen, FolderOpen as FolderOpenIcon, Frame, Frame as FrameIcon, Functions, Functions as FunctionsIcon, Gear, Gear as GearIcon, Group, Group as GroupIcon, Help, Help as HelpIcon, History, History as HistoryIcon, Home, Home as HomeIcon, type IconBaseProps, type IconManifestEntry, type IconSize, Image, ImageCollection, ImageCollection as ImageCollectionIcon, Image as ImageIcon, Inbox, Inbox as InboxIcon, Info, Info as InfoIcon, Key, Key as KeyIcon, Layer, Layer as LayerIcon, LightMode, LightMode as LightModeIcon, LineChart, LineChart as LineChartIcon, Link, LinkBreak, LinkBreak as LinkBreakIcon, Link as LinkIcon, List, List as ListIcon, Location, Location as LocationIcon, Lock, Lock as LockIcon, Login, Login as LoginIcon, Logout, Logout as LogoutIcon, Mail, Mail as MailIcon, MailOpen, MailOpen as MailOpenIcon, Mediation, Mediation as MediationIcon, Memory, Memory as MemoryIcon, Menu, Menu as MenuIcon, Minus, Minus as MinusIcon, Monitor, Monitor as MonitorIcon, MoreHorizontal, MoreHorizontal as MoreHorizontalIcon, MoreVertical, MoreVertical as MoreVerticalIcon, NextDouble, NextDouble as NextDoubleIcon, Note, Note as NoteIcon, Notice, Notice as NoticeIcon, Notification, Notification as NotificationIcon, Objects, Objects as ObjectsIcon, Open, Open as OpenIcon, Oracle, Oracle as OracleIcon, Order, Order as OrderIcon, OrderRgular, OrderRgular as OrderRgularIcon, Palette, Palette as PaletteIcon, PaperBoard, PaperBoard as PaperBoardIcon, Partial, Partial as PartialIcon, Pause, Pause as PauseIcon, Pencil, Pencil as PencilIcon, People, People as PeopleIcon, Person, PersonAdd, PersonAdd as PersonAddIcon, Person as PersonIcon, Phone, Phone as PhoneIcon, Pin, Pin as PinIcon, PinOff, PinOff as PinOffIcon, Play, PlayCircle, PlayCircle as PlayCircleIcon, Play as PlayIcon, Plus, Plus as PlusIcon, Policy, Policy as PolicyIcon, Polyline, Polyline as PolylineIcon, Power, Power as PowerIcon, PowerOff, PowerOff as PowerOffIcon, PreviousDouble, PreviousDouble as PreviousDoubleIcon, Record, Record as RecordIcon, Redo, Redo as RedoIcon, Refresh, Refresh as RefreshIcon, Return, Return as ReturnIcon, RootFinderSymbol, RootFinderSymbol as RootFinderSymbolIcon, Scatter, Scatter as ScatterIcon, Schema, Schema as SchemaIcon, Sdk, Sdk as SdkIcon, Search, Search as SearchIcon, Send, Send as SendIcon, Sidebar, Sidebar as SidebarIcon, SkipNext, SkipNext as SkipNextIcon, SkipPrevious, SkipPrevious as SkipPreviousIcon, SortDown, SortDown as SortDownIcon, SortUp, SortUp as SortUpIcon, Sparkle, Sparkle as SparkleIcon, SpeechBubble, SpeechBubble as SpeechBubbleIcon, SpeechBubbleRegualr, SpeechBubbleRegualr as SpeechBubbleRegualrIcon, Split, Split as SplitIcon, SplitScene, SplitScene as SplitSceneIcon, Square, Square as SquareIcon, Star, Star as StarIcon, Stop, Stop as StopIcon, SupervisorAccount, SupervisorAccount as SupervisorAccountIcon, Table, TableColumn, TableColumn as TableColumnIcon, Table as TableIcon, TableRow, TableRow as TableRowIcon, Tactics, Tactics as TacticsIcon, Tag, Tag as TagIcon, Task, Task as TaskIcon, TextEdit, TextEdit as TextEditIcon, ThumbDown, ThumbDown as ThumbDownIcon, ThumbUp, ThumbUp as ThumbUpIcon, Timeline, Timeline as TimelineIcon, Title, Title as TitleIcon, Toolbox, Toolbox as ToolboxIcon, ToolsSymbol, ToolsSymbol as ToolsSymbolIcon, Translate, Translate as TranslateIcon, Tune, Tune as TuneIcon, TuneSimple, TuneSimple as TuneSimpleIcon, Undo, Undo as UndoIcon, Upload, UploadDocument, UploadDocument as UploadDocumentIcon, Upload as UploadIcon, ViewHorizontal, ViewHorizontal as ViewHorizontalIcon, ViewModule, ViewModule as ViewModuleIcon, ViewVertical, ViewVertical as ViewVerticalIcon, Visibility, Visibility as VisibilityIcon, VisibilityOff, VisibilityOff as VisibilityOffIcon, VisibilityVisibility, VisibilityVisibility as VisibilityVisibilityIcon, VisibilityVisibilityOff, VisibilityVisibilityOff as VisibilityVisibilityOffIcon, Warning, Warning as WarningIcon, WiFi, WiFi as WiFiIcon, Widgetpack, Widgetpack as WidgetpackIcon, Widgets, Widgets as WidgetsIcon, Work, Work as WorkIcon, X, X as XIcon, Zoom, Zoom as ZoomIcon, iconManifest, iconSizes };
2040
+ export { Account, Account as AccountIcon, AccountTree, AccountTree as AccountTreeIcon, AlignCenter, AlignCenter as AlignCenterIcon, AlignJustified, AlignJustified as AlignJustifiedIcon, AlignLeft, AlignLeft as AlignLeftIcon, AlignRight, AlignRight as AlignRightIcon, AreaChart, AreaChart as AreaChartIcon, ArrowBottomRight, ArrowBottomRight as ArrowBottomRightIcon, ArrowDown, ArrowDown as ArrowDownIcon, ArrowLeft, ArrowLeft as ArrowLeftIcon, ArrowRight, ArrowRight as ArrowRightIcon, ArrowUp, ArrowUp as ArrowUpIcon, ArrowUpRight, ArrowUpRight as ArrowUpRightIcon, Back, Back as BackIcon, Badge, Badge as BadgeIcon, BarChart, BarChart as BarChartIcon, Blank, Blank as BlankIcon, Book, Book as BookIcon, Brain, Brain as BrainIcon, Briefcase, Briefcase as BriefcaseIcon, Build, Build as BuildIcon, Building, Building as BuildingIcon, Bulb, Bulb as BulbIcon, Calculate, Calculate as CalculateIcon, Calendar, CalendarDate, CalendarDate as CalendarDateIcon, CalendarEvent, CalendarEvent as CalendarEventIcon, Calendar as CalendarIcon, CalendarView, CalendarView as CalendarViewIcon, Cancel, Cancel as CancelIcon, CarrotDown, CarrotDown as CarrotDownIcon, CarrotLeft, CarrotLeft as CarrotLeftIcon, CarrotRight, CarrotRight as CarrotRightIcon, CarrotUp, CarrotUpDown, CarrotUpDown as CarrotUpDownIcon, CarrotUp as CarrotUpIcon, Category, Category as CategoryIcon, Chat, Chat as ChatIcon, ChatLine, ChatLine as ChatLineIcon, Check, CheckCircle, CheckCircle as CheckCircleIcon, Check as CheckIcon, Checklist, Checklist as ChecklistIcon, ChevronDoubleDown, ChevronDoubleDown as ChevronDoubleDownIcon, ChevronDoubleLeft, ChevronDoubleLeft as ChevronDoubleLeftIcon, ChevronDoubleRight, ChevronDoubleRight as ChevronDoubleRightIcon, ChevronDoubleUp, ChevronDoubleUp as ChevronDoubleUpIcon, ChevronDown, ChevronDown as ChevronDownIcon, ChevronLeft, ChevronLeft as ChevronLeftIcon, ChevronRight, ChevronRight as ChevronRightIcon, ChevronUp, ChevronUpDown, ChevronUpDown as ChevronUpDownIcon, ChevronUp as ChevronUpIcon, Clock, Clock as ClockIcon, Cloud, Cloud as CloudIcon, Code, Code as CodeIcon, Copy, Copy as CopyIcon, Cpu, Cpu as CpuIcon, CreateFolder, CreateFolder as CreateFolderIcon, Cube, Cube as CubeIcon, DarkMode, DarkMode as DarkModeIcon, Dash, Dash as DashIcon, Dashboard, Dashboard as DashboardIcon, DashboardSymbol, DashboardSymbol as DashboardSymbolIcon, Database, Database as DatabaseIcon, DatabaseOff, DatabaseOff as DatabaseOffIcon, DatabaseSearch, DatabaseSearch as DatabaseSearchIcon, Dataset, Dataset as DatasetIcon, Delete, Delete as DeleteIcon, Disk, Disk as DiskIcon, DomainVerification, DomainVerification as DomainVerificationIcon, DotsHorizontal, DotsHorizontal as DotsHorizontalIcon, DotsVertical, DotsVertical as DotsVerticalIcon, Download, Download as DownloadIcon, Edit, Edit as EditIcon, Error, Error as ErrorIcon, Feedback, Feedback as FeedbackIcon, File, FileAdd, FileAdd as FileAddIcon, FileCheck, FileCheck as FileCheckIcon, FileDownload, FileDownload as FileDownloadIcon, File as FileIcon, FileUpload, FileUpload as FileUploadIcon, Filter, Filter as FilterIcon, FilterList, FilterList as FilterListIcon, FitScreen, FitScreen as FitScreenIcon, Flag, Flag as FlagIcon, Flowchart, Flowchart as FlowchartIcon, Folder, Folder as FolderIcon, FolderOpen, FolderOpen as FolderOpenIcon, Foward, Foward as FowardIcon, Frame, Frame as FrameIcon, Functions, Functions as FunctionsIcon, Gear, Gear as GearIcon, Grid, Grid as GridIcon, Group, Group as GroupIcon, Hand, Hand as HandIcon, Help, Help as HelpIcon, History, History as HistoryIcon, Home, Home as HomeIcon, type IconBaseProps, type IconManifestEntry, type IconSize, Image, ImageCollection, ImageCollection as ImageCollectionIcon, Image as ImageIcon, Inbox, Inbox as InboxIcon, Info, Info as InfoIcon, Interests, Interests as InterestsIcon, Key, Key as KeyIcon, KoreanEnglish, KoreanEnglish as KoreanEnglishIcon, Label, Label as LabelIcon, Layer, Layer as LayerIcon, LightMode, LightMode as LightModeIcon, LineChart, LineChart as LineChartIcon, Link, Link as LinkIcon, LinkOff, LinkOff as LinkOffIcon, List, List as ListIcon, Location, Location as LocationIcon, Lock, Lock as LockIcon, Login, Login as LoginIcon, Logout, Logout as LogoutIcon, Mail, Mail as MailIcon, MailOpen, MailOpen as MailOpenIcon, Mediation, Mediation as MediationIcon, Memory, Memory as MemoryIcon, Menu, Menu as MenuIcon, Minus, Minus as MinusIcon, Monitor, MonitorHeart, MonitorHeart as MonitorHeartIcon, Monitor as MonitorIcon, MoreHorizontal, MoreHorizontal as MoreHorizontalIcon, MoreVertical, MoreVertical as MoreVerticalIcon, MyLocation, MyLocation as MyLocationIcon, Note, Note as NoteIcon, Notification, Notification as NotificationIcon, Open, Open as OpenIcon, Oracle, Oracle as OracleIcon, Palette, Palette as PaletteIcon, PaperBoard, PaperBoard as PaperBoardIcon, Partial, Partial as PartialIcon, Pause, Pause as PauseIcon, Pencil, Pencil as PencilIcon, People, People as PeopleIcon, Person, PersonAdd, PersonAdd as PersonAddIcon, Person as PersonIcon, Phone, Phone as PhoneIcon, PieChart, PieChart as PieChartIcon, Pin, Pin as PinIcon, PinOff, PinOff as PinOffIcon, Play, PlayCircle, PlayCircle as PlayCircleIcon, Play as PlayIcon, Plus, Plus as PlusIcon, Pointer, Pointer as PointerIcon, Policy, Policy as PolicyIcon, Polyline, Polyline as PolylineIcon, Power, Power as PowerIcon, PowerOff, PowerOff as PowerOffIcon, Redo, Redo as RedoIcon, Refresh, Refresh as RefreshIcon, Return, Return as ReturnIcon, Rewind, Rewind as RewindIcon, RootFinderSymbol, RootFinderSymbol as RootFinderSymbolIcon, Scatter, Scatter as ScatterIcon, Schema, Schema as SchemaIcon, Sdk, Sdk as SdkIcon, Search, Search as SearchIcon, Send, Send as SendIcon, Sidebar, Sidebar as SidebarIcon, SkipNext, SkipNext as SkipNextIcon, SkipPrevious, SkipPrevious as SkipPreviousIcon, SortDown, SortDown as SortDownIcon, SortUp, SortUp as SortUpIcon, Sound, Sound as SoundIcon, Sparkle, Sparkle as SparkleIcon, SpeechBubble, SpeechBubble as SpeechBubbleIcon, Split, Split as SplitIcon, SplitScene, SplitScene as SplitSceneIcon, Square, Square as SquareIcon, Star, Star as StarIcon, Stop, StopCircle, StopCircle as StopCircleIcon, Stop as StopIcon, SwapHorizontal, SwapHorizontal as SwapHorizontalIcon, SwapVertical, SwapVertical as SwapVerticalIcon, Sync, Sync as SyncIcon, Table, Table as TableIcon, Tactics, Tactics as TacticsIcon, Tag, Tag as TagIcon, ThumbDown, ThumbDown as ThumbDownIcon, ThumbUp, ThumbUp as ThumbUpIcon, Title, Title as TitleIcon, Toolbox, Toolbox as ToolboxIcon, ToolsSymbol, ToolsSymbol as ToolsSymbolIcon, Translate, Translate as TranslateIcon, Tune, Tune as TuneIcon, TuneSimple, TuneSimple as TuneSimpleIcon, Unarchive, Unarchive as UnarchiveIcon, Undo, Undo as UndoIcon, Upload, Upload as UploadIcon, ViewColumn, ViewColumn as ViewColumnIcon, ViewHorizontal, ViewHorizontal as ViewHorizontalIcon, ViewModule, ViewModule as ViewModuleIcon, ViewRow, ViewRow as ViewRowIcon, ViewVertical, ViewVertical as ViewVerticalIcon, Visibility, Visibility as VisibilityIcon, VisibilityOff, VisibilityOff as VisibilityOffIcon, Warning, Warning as WarningIcon, WiFi, WiFi as WiFiIcon, Widgets, Widgets as WidgetsIcon, X, X as XIcon, ZoomIn, ZoomIn as ZoomInIcon, ZoomOut, ZoomOut as ZoomOutIcon, iconManifest, iconSizes };