@fichap/icons-react 1.0.2 → 1.0.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.
- package/README.md +6 -0
- package/dist/index.d.mts +148 -7
- package/dist/index.d.ts +148 -7
- package/dist/index.js +2004 -1119
- package/dist/index.mjs +1971 -1118
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Shared SVG props for generated Fichap icon components.
|
|
5
|
+
* size acts as a shorthand for width and height when explicit values are not provided.
|
|
6
|
+
*/
|
|
3
7
|
interface IconSvgProps extends React.SVGProps<SVGSVGElement> {
|
|
4
8
|
size?: number;
|
|
5
9
|
}
|
|
@@ -14,8 +18,6 @@ declare const WrenchRegular: ({ size, width, height, className, ...props }: Icon
|
|
|
14
18
|
|
|
15
19
|
declare const WorldRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
16
20
|
|
|
17
|
-
declare const WorkRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
18
|
-
|
|
19
21
|
declare const Wheelchair2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
20
22
|
|
|
21
23
|
declare const WheelchairRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -76,6 +78,8 @@ declare const UserContactRegular: ({ size, width, height, className, ...props }:
|
|
|
76
78
|
|
|
77
79
|
declare const UserBoardRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
78
80
|
|
|
81
|
+
declare const UserBadgeRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
82
|
+
|
|
79
83
|
declare const UploadRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
80
84
|
|
|
81
85
|
declare const UpdateRightRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -96,6 +100,8 @@ declare const UnderlineRegular: ({ size, width, height, className, ...props }: I
|
|
|
96
100
|
|
|
97
101
|
declare const TypeRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
98
102
|
|
|
103
|
+
declare const Triangle2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
104
|
+
|
|
99
105
|
declare const TranslateVectorRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
100
106
|
|
|
101
107
|
declare const TranslateLanguageRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -130,10 +136,14 @@ declare const TextAlignLeftRegular: ({ size, width, height, className, ...props
|
|
|
130
136
|
|
|
131
137
|
declare const TextAlignCenterRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
132
138
|
|
|
139
|
+
declare const TargetRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
140
|
+
|
|
133
141
|
declare const TagRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
134
142
|
|
|
135
143
|
declare const TableRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
136
144
|
|
|
145
|
+
declare const SymbolpngRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
146
|
+
|
|
137
147
|
declare const SwitchListRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
138
148
|
|
|
139
149
|
declare const SwapRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -144,12 +154,16 @@ declare const SunvectorRegular: ({ size, width, height, className, ...props }: I
|
|
|
144
154
|
|
|
145
155
|
declare const SunRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
146
156
|
|
|
157
|
+
declare const SuccessDocumentsRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
158
|
+
|
|
147
159
|
declare const StrikethroughRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
148
160
|
|
|
149
161
|
declare const StopwatchSpeedRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
150
162
|
|
|
151
163
|
declare const StopCircleRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
152
164
|
|
|
165
|
+
declare const StarsCircleRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
166
|
+
|
|
153
167
|
declare const StarRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
154
168
|
|
|
155
169
|
declare const StarRemoveRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -206,6 +220,8 @@ declare const SadDateRegular: ({ size, width, height, className, ...props }: Ico
|
|
|
206
220
|
|
|
207
221
|
declare const RotationRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
208
222
|
|
|
223
|
+
declare const RocketRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
224
|
+
|
|
209
225
|
declare const RoadmapRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
210
226
|
|
|
211
227
|
declare const RightUpSquareRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -222,6 +238,8 @@ declare const Refresh2Regular: ({ size, width, height, className, ...props }: Ic
|
|
|
222
238
|
|
|
223
239
|
declare const QuestionsRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
224
240
|
|
|
241
|
+
declare const QuestionMarkSquareRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
242
|
+
|
|
225
243
|
declare const QuestionMarkCircleRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
226
244
|
|
|
227
245
|
declare const ProfileRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -272,12 +290,16 @@ declare const OutdentRegular: ({ size, width, height, className, ...props }: Ico
|
|
|
272
290
|
|
|
273
291
|
declare const OrderedListRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
274
292
|
|
|
293
|
+
declare const OpenaiRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
294
|
+
|
|
275
295
|
declare const OfficechairRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
276
296
|
|
|
277
297
|
declare const NumberedlistRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
278
298
|
|
|
279
299
|
declare const NotificationRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
280
300
|
|
|
301
|
+
declare const NoteLockRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
302
|
+
|
|
281
303
|
declare const NewNotificationRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
282
304
|
|
|
283
305
|
declare const MovieTimeRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -312,8 +334,14 @@ declare const MenuhorizontalRegular: ({ size, width, height, className, ...props
|
|
|
312
334
|
|
|
313
335
|
declare const MenuRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
314
336
|
|
|
337
|
+
declare const MenuCloseLeftRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
338
|
+
|
|
339
|
+
declare const MenuCloseLeft2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
340
|
+
|
|
315
341
|
declare const Menu2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
316
342
|
|
|
343
|
+
declare const MedalRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
344
|
+
|
|
317
345
|
declare const MarkerRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
318
346
|
|
|
319
347
|
declare const Marker2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -330,6 +358,8 @@ declare const LogoutRegular: ({ size, width, height, className, ...props }: Icon
|
|
|
330
358
|
|
|
331
359
|
declare const LoginRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
332
360
|
|
|
361
|
+
declare const LoginUserRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
362
|
+
|
|
333
363
|
declare const LockRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
334
364
|
|
|
335
365
|
declare const LocationRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -376,10 +406,14 @@ declare const ImageUpRegular: ({ size, width, height, className, ...props }: Ico
|
|
|
376
406
|
|
|
377
407
|
declare const ImageUp2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
378
408
|
|
|
409
|
+
declare const ImageRecognitionRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
410
|
+
|
|
379
411
|
declare const ImageDownRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
380
412
|
|
|
381
413
|
declare const ImageAiRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
382
414
|
|
|
415
|
+
declare const ImageAi2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
416
|
+
|
|
383
417
|
declare const Image3Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
384
418
|
|
|
385
419
|
declare const IconlyRegularLighExternalLinkRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -440,6 +474,8 @@ declare const HospitalRegular: ({ size, width, height, className, ...props }: Ic
|
|
|
440
474
|
|
|
441
475
|
declare const HomeRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
442
476
|
|
|
477
|
+
declare const HomeStarRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
478
|
+
|
|
443
479
|
declare const Home2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
444
480
|
|
|
445
481
|
declare const HideRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -526,18 +562,28 @@ declare const DownSquareLineRegular: ({ size, width, height, className, ...props
|
|
|
526
562
|
|
|
527
563
|
declare const DownLineRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
528
564
|
|
|
565
|
+
declare const DoubleHeart3Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
566
|
+
|
|
529
567
|
declare const DollarAddRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
530
568
|
|
|
531
569
|
declare const DocumentRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
532
570
|
|
|
571
|
+
declare const DocumentVerifiedRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
572
|
+
|
|
533
573
|
declare const DocumentStarRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
534
574
|
|
|
575
|
+
declare const DocumentRemoveRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
576
|
+
|
|
535
577
|
declare const DocumentPinRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
536
578
|
|
|
537
579
|
declare const DocumentPdfRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
538
580
|
|
|
581
|
+
declare const DocumentExploreRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
582
|
+
|
|
539
583
|
declare const DocumentErrorRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
540
584
|
|
|
585
|
+
declare const DocumentCheckRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
586
|
+
|
|
541
587
|
declare const Docuemtn2LineEditRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
542
588
|
|
|
543
589
|
declare const DiscoveryRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -586,6 +632,10 @@ declare const ClockCloseRegular: ({ size, width, height, className, ...props }:
|
|
|
586
632
|
|
|
587
633
|
declare const ClockAddPlusRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
588
634
|
|
|
635
|
+
declare const CircleMessage2UpRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
636
|
+
|
|
637
|
+
declare const CircleMessage2TextRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
638
|
+
|
|
589
639
|
declare const CircleGridInterfaceRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
590
640
|
|
|
591
641
|
declare const ChevronExpandVericalRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -654,6 +704,8 @@ declare const CalendarDashRegular: ({ size, width, height, className, ...props }
|
|
|
654
704
|
|
|
655
705
|
declare const CalendarCheckRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
656
706
|
|
|
707
|
+
declare const CalendarArrowRightRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
708
|
+
|
|
657
709
|
declare const CalendarAddRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
658
710
|
|
|
659
711
|
declare const Calendar2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -670,6 +722,8 @@ declare const BuildingOffice3Regular: ({ size, width, height, className, ...prop
|
|
|
670
722
|
|
|
671
723
|
declare const BuildingOffice2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
672
724
|
|
|
725
|
+
declare const BotRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
726
|
+
|
|
673
727
|
declare const BookmarkRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
674
728
|
|
|
675
729
|
declare const BookRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -738,10 +792,14 @@ declare const ArrowDown3Regular: ({ size, width, height, className, ...props }:
|
|
|
738
792
|
|
|
739
793
|
declare const ArrowDown2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
740
794
|
|
|
795
|
+
declare const AnthropicRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
796
|
+
|
|
741
797
|
declare const AlignLeftRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
742
798
|
|
|
743
799
|
declare const AlarmSpeakerRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
744
800
|
|
|
801
|
+
declare const AiBrainLikeRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
802
|
+
|
|
745
803
|
declare const AiBrainIdeaRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
746
804
|
|
|
747
805
|
declare const AddUserRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -890,6 +948,8 @@ declare const Minus3Bold: ({ size, width, height, className, ...props }: IconSvg
|
|
|
890
948
|
|
|
891
949
|
declare const Minus2Bold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
892
950
|
|
|
951
|
+
declare const MessagesBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
952
|
+
|
|
893
953
|
declare const MessageBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
894
954
|
|
|
895
955
|
declare const MediumBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -966,6 +1026,10 @@ declare const DollarCircle3Bold: ({ size, width, height, className, ...props }:
|
|
|
966
1026
|
|
|
967
1027
|
declare const DocumentBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
968
1028
|
|
|
1029
|
+
declare const DocumentPin2LinesBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1030
|
+
|
|
1031
|
+
declare const DocumentPencilBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1032
|
+
|
|
969
1033
|
declare const DocumentPdfBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
970
1034
|
|
|
971
1035
|
declare const DocumentBadgePlusBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1006,6 +1070,10 @@ declare const ChartBold: ({ size, width, height, className, ...props }: IconSvgP
|
|
|
1006
1070
|
|
|
1007
1071
|
declare const CategoryBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1008
1072
|
|
|
1073
|
+
declare const CaptchaQuestionMarkSquareBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1074
|
+
|
|
1075
|
+
declare const CaptchaDiamondStarBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1076
|
+
|
|
1009
1077
|
declare const CameraBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1010
1078
|
|
|
1011
1079
|
declare const CallingBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1086,13 +1154,18 @@ declare const Icon3UserBold: ({ size, width, height, className, ...props }: Icon
|
|
|
1086
1154
|
|
|
1087
1155
|
declare const Icon2UserBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1088
1156
|
|
|
1157
|
+
/** Base component type shared by generated icons. */
|
|
1089
1158
|
type IconComponent = (props: IconSvgProps) => React.ReactElement;
|
|
1159
|
+
/** Supported visual variants for Fichap icons. */
|
|
1090
1160
|
type IconVariant = 'regular' | 'bold';
|
|
1161
|
+
/** Icon names grouped by variant. */
|
|
1091
1162
|
declare const iconNamesByVariant: {
|
|
1092
|
-
readonly regular: readonly ["accident", "activity", "activity2", "addUser", "aiBrainIdea", "alarmSpeaker", "alignLeft", "arrowDown", "arrowDown2", "arrowDown3", "arrowDownCircle", "arrowDownRightsm", "arrowDownSquare", "arrowLeft", "arrowLeft2", "arrowLeft22", "arrowLeft3", "arrowLeftCircle", "arrowLeftSquare", "arrowRight", "arrowRight2", "arrowRight22", "arrowRight3", "arrowRightCircle", "arrowRightSm", "arrowRightSquare", "arrowUp", "arrowUp2", "arrowUp3", "arrowUpCircle", "arrowUpRightsm", "arrowUpSquare", "arrowsDiagonalContract", "attach", "bag", "bag3", "bankCardInformation", "boardTasks", "bold", "book", "bookmark", "building", "buildingOffice", "buildingOffice2", "buildingOffice3", "bulletedList", "buy", "calendar", "calendar2", "calendarAdd", "calendarCheck", "calendarDash", "calendarDone", "calendarDone2", "calendarEdit", "calendarHourglass", "calendarSettings", "calendarTick", "calendarTime", "calendarTimeBold", "call", "callMissed", "callSilent", "calling", "camera", "cameraAuto", "cameraPlus", "carCrash", "catSquare", "categories", "category", "centerLayout", "chart", "chart3BarRefresh", "chart3BarTime", "chartAnalysish", "chartInformation", "chat", "chatQuote", "checkCircle", "checkmark", "chevronExpandVerical", "circleGridInterface", "clockAddPlus", "clockClose", "clockFire", "close", "closeSquare", "closeSquare2", "cloudUpload", "code", "code2", "comment", "comments", "copyLineEdit", "creativeQuoteOpenSquare", "crecimiento", "dangerCircle", "dangerTriangle", "darkAndLight", "darkAndLight2", "dcoument3Lines", "decrecimiento", "delete", "discount", "discovery", "docuemtn2LineEdit", "document", "documentError", "documentPdf", "documentPin", "documentStar", "dollarAdd", "downLine", "downSquareLine", "download", "draghorizontal", "earth", "edit", "editSquare", "expand", "faceIdFail", "faceIdSucces", "film2", "filter", "filter3", "flag", "flash", "flipBackward", "flipForward", "flipcalendarBlank", "flipcalendarPercent", "flipcalendarTime", "flowChart", "folder", "folderFileAddPlus", "folderFileUp", "frame", "galleryView", "game", "ggift", "gift", "giveDocument", "graph", "gridInterface", "gridInterface2", "gridInterface3", "gridInterface4", "gridInterfaceAddPlus", "gridInterfaceTick", "happyDate", "hashtag", "healthClipboard", "heart", "hide", "home", "home2", "hospital", "hotDrink", "hourglass", "icon2User", "icon3User", "iconSeparate", "iconlyRegularBoldArrowsDiagonalMaximize", "iconlyRegularBoldBoardPin", "iconlyRegularBoldCharityCoins", "iconlyRegularBoldChevronExpandVerical", "iconlyRegularBoldCircleGridInterface", "iconlyRegularBoldCircleGridInterface2", "iconlyRegularBoldContacts2", "iconlyRegularBoldController1", "iconlyRegularBoldCup", "iconlyRegularBoldDocumentPencil", "iconlyRegularBoldExit", "iconlyRegularBoldExpandLeftStop", "iconlyRegularBoldEye2", "iconlyRegularBoldHamburgerMenu", "iconlyRegularBoldHashtagSquare", "iconlyRegularBoldSalary", "iconlyRegularBoldServersConnect7", "iconlyRegularBoldSidebarClose", "iconlyRegularBoldSidebarClose2", "iconlyRegularBoldThumbLike", "iconlyRegularBoldUserChecked", "iconlyRegularBoldUserSearch", "iconlyRegularBoldVectoruserChecked", "iconlyRegularLighExternalLink", "image", "image3", "imageAi", "imageDown", "imageUp", "imageUp2", "inbox", "indent", "infoCircle", "infoSquare", "information", "insuranceHand", "insuranceHand2", "italic", "journey", "leaves", "less", "lineChartUpward", "link", "link2", "listCheck", "loading", "loading2", "loadingCircle3", "location", "lock", "login", "logout", "macNotebook", "magicWand", "map", "mapClose", "marker", "marker2", "menu", "menu2", "menuhorizontal", "message", "microsoftExel", "microsoftWord", "minus1", "minus2", "minus2Vector", "minus4", "monitor2", "moonvector", "moreCircle", "moreSquare", "move", "movieTime", "movieTime2", "newNotification", "notification", "numberedlist", "officechair", "orderedList", "outdent", "paintingPalette", "paper", "paperDownload", "paperFail", "paperNegative", "paperPlus", "paperPlus2", "paperUpload", "password", "pauseCircle", "pen", "pen2", "photo", "pinMap", "planeCheck", "play", "plus", "plus1", "plus2", "plus4", "printer", "profile", "questionMarkCircle", "questions", "refresh", "refresh2", "removeUser", "reverseLeft", "reverseRight", "rightUpSquare", "roadmap", "rotation", "sadDate", "save", "scale", "scan", "screenSize", "search", "searchDiscountPercent", "send", "setting", "settingSquare", "settingToolCircle", "share", "share2", "shieldDone", "shieldFail", "show", "sign1", "sign2", "smiling", "smilingAdd", "sort", "sortDown", "soundWave", "speakerMegaphone", "speakerMegaphone5", "star", "starRemove", "stopCircle", "stopwatchSpeed", "strikethrough", "sun", "sunvector", "swap", "swapHorizontal", "switchList", "table", "tag", "textAlignCenter", "textAlignLeft", "textAlignRight", "textColor", "textField", "thumbDislike", "tickSquare", "ticket", "ticketStar", "timeCircle", "timeSquare", "timer", "tired", "toggle", "tools", "translateLanguage", "translateVector", "type", "underline", "university", "unlock", "unorderedList", "upLine", "upSquareLine", "updateRight", "updateRight2", "upload", "userBoard", "userContact", "userInformation", "userInformation2", "userLock", "users", "usersGroup", "vectorcalendar", "vectorhome", "vectorinfoSquare", "vectorprofile", "vectorsetting", "vectorstar", "vectorwork", "verticalBarChart2", "video", "voice", "voice3", "volumeDown", "volumeOff", "volumeUp", "wallet", "webPage2", "webPage4", "webPageEdit", "webPageEdit2", "weight1", "whatsapp", "wheelchair", "wheelchair2", "
|
|
1093
|
-
readonly bold: readonly ["activity", "addUser", "arrowDown", "arrowDown2", "arrowDown3", "arrowDownCircle", "arrowDownSquare", "arrowLeft", "arrowLeft2", "arrowLeft3", "arrowLeftCircle", "arrowLeftSquare", "arrowRight", "arrowRight2", "arrowRight3", "arrowRightCircle", "arrowRightSquare", "arrowUp", "arrowUp2", "arrowUp3", "arrowUpCircle", "arrowUpSquare", "bag", "bag2", "book", "bookmark", "buy", "calendar", "calendar2", "calendarCheck", "calendarEdit", "calendarForward", "calendarTime", "call", "callMissed", "callSilent", "calling", "camera", "category", "chart", "chat", "chatQuote", "checkCircle", "clockAddPlus", "clockOffSleep", "closeSquare", "cloudRemove", "code", "colorPalette", "counterClockwiseUndo", "danger", "dashboardcustomize24Dp000000Fill1Wght400Grad0Opsz241", "dcoumentAnalyze", "delete", "discount", "discovery", "document", "documentBadgePlus", "documentPdf", "dollarCircle3", "download", "edit", "editSquare", "eye2", "facebook", "filter", "filter2", "flag", "flash", "folder", "folderFile", "folderFileSearch", "forwardClockTimer10", "game", "graph", "heart", "heart2", "heartPlus", "hide", "home", "hotDrink", "icon2User", "icon3User", "image", "image2", "infoCircle", "infoCircle2", "infoSquare", "instagram", "linkedin", "location", "lock", "login", "logout", "macNotebook", "mapClose", "medium", "message", "minus2", "minus3", "moon", "moreCircle", "moreSquare", "notification", "paper", "paperDownload", "paperFail", "paperNegative", "paperPlus", "paperUpload", "password", "planeCheck", "play", "plus", "profile", "removeCircle", "removeUser", "scan", "search", "send", "send2", "setting", "shieldDone", "shieldFail", "show", "slightlyFrowning", "speakerMegaphone5", "square", "star", "stickerAdd", "stopwatchPlay", "stopwatchStop", "sun", "sun2", "swap", "tag", "thumbDislike", "thumbLike", "tickSquare", "ticket", "ticketStar", "tiktok", "timeCircle", "timeCircle2", "timeSquare", "timerPlus", "tired", "translateLanguage", "twitter", "unlock", "upload", "userBadge", "userChecked", "userDelete", "userSearch", "video", "voice", "voice2", "volumeDown", "volumeOff", "volumeUp", "wallet", "work", "xcom", "youtube"];
|
|
1163
|
+
readonly regular: readonly ["accident", "activity", "activity2", "addUser", "aiBrainIdea", "aiBrainLike", "alarmSpeaker", "alignLeft", "anthropic", "arrowDown", "arrowDown2", "arrowDown3", "arrowDownCircle", "arrowDownRightsm", "arrowDownSquare", "arrowLeft", "arrowLeft2", "arrowLeft22", "arrowLeft3", "arrowLeftCircle", "arrowLeftSquare", "arrowRight", "arrowRight2", "arrowRight22", "arrowRight3", "arrowRightCircle", "arrowRightSm", "arrowRightSquare", "arrowUp", "arrowUp2", "arrowUp3", "arrowUpCircle", "arrowUpRightsm", "arrowUpSquare", "arrowsDiagonalContract", "attach", "bag", "bag3", "bankCardInformation", "boardTasks", "bold", "book", "bookmark", "bot", "building", "buildingOffice", "buildingOffice2", "buildingOffice3", "bulletedList", "buy", "calendar", "calendar2", "calendarAdd", "calendarArrowRight", "calendarCheck", "calendarDash", "calendarDone", "calendarDone2", "calendarEdit", "calendarHourglass", "calendarSettings", "calendarTick", "calendarTime", "calendarTimeBold", "call", "callMissed", "callSilent", "calling", "camera", "cameraAuto", "cameraPlus", "carCrash", "catSquare", "categories", "category", "centerLayout", "chart", "chart3BarRefresh", "chart3BarTime", "chartAnalysish", "chartInformation", "chat", "chatQuote", "checkCircle", "checkmark", "chevronExpandVerical", "circleGridInterface", "circleMessage2Text", "circleMessage2Up", "clockAddPlus", "clockClose", "clockFire", "close", "closeSquare", "closeSquare2", "cloudUpload", "code", "code2", "comment", "comments", "copyLineEdit", "creativeQuoteOpenSquare", "crecimiento", "dangerCircle", "dangerTriangle", "darkAndLight", "darkAndLight2", "dcoument3Lines", "decrecimiento", "delete", "discount", "discovery", "docuemtn2LineEdit", "document", "documentCheck", "documentError", "documentExplore", "documentPdf", "documentPin", "documentRemove", "documentStar", "documentVerified", "dollarAdd", "doubleHeart3", "downLine", "downSquareLine", "download", "draghorizontal", "earth", "edit", "editSquare", "expand", "faceIdFail", "faceIdSucces", "film2", "filter", "filter3", "flag", "flash", "flipBackward", "flipForward", "flipcalendarBlank", "flipcalendarPercent", "flipcalendarTime", "flowChart", "folder", "folderFileAddPlus", "folderFileUp", "frame", "galleryView", "game", "ggift", "gift", "giveDocument", "graph", "gridInterface", "gridInterface2", "gridInterface3", "gridInterface4", "gridInterfaceAddPlus", "gridInterfaceTick", "happyDate", "hashtag", "healthClipboard", "heart", "hide", "home", "home2", "homeStar", "hospital", "hotDrink", "hourglass", "icon2User", "icon3User", "iconSeparate", "iconlyRegularBoldArrowsDiagonalMaximize", "iconlyRegularBoldBoardPin", "iconlyRegularBoldCharityCoins", "iconlyRegularBoldChevronExpandVerical", "iconlyRegularBoldCircleGridInterface", "iconlyRegularBoldCircleGridInterface2", "iconlyRegularBoldContacts2", "iconlyRegularBoldController1", "iconlyRegularBoldCup", "iconlyRegularBoldDocumentPencil", "iconlyRegularBoldExit", "iconlyRegularBoldExpandLeftStop", "iconlyRegularBoldEye2", "iconlyRegularBoldHamburgerMenu", "iconlyRegularBoldHashtagSquare", "iconlyRegularBoldSalary", "iconlyRegularBoldServersConnect7", "iconlyRegularBoldSidebarClose", "iconlyRegularBoldSidebarClose2", "iconlyRegularBoldThumbLike", "iconlyRegularBoldUserChecked", "iconlyRegularBoldUserSearch", "iconlyRegularBoldVectoruserChecked", "iconlyRegularLighExternalLink", "image", "image3", "imageAi", "imageAi2", "imageDown", "imageRecognition", "imageUp", "imageUp2", "inbox", "indent", "infoCircle", "infoSquare", "information", "insuranceHand", "insuranceHand2", "italic", "journey", "leaves", "less", "lineChartUpward", "link", "link2", "listCheck", "loading", "loading2", "loadingCircle3", "location", "lock", "login", "loginUser", "logout", "macNotebook", "magicWand", "map", "mapClose", "marker", "marker2", "medal", "menu", "menu2", "menuCloseLeft", "menuCloseLeft2", "menuhorizontal", "message", "microsoftExel", "microsoftWord", "minus1", "minus2", "minus2Vector", "minus4", "monitor2", "moonvector", "moreCircle", "moreSquare", "move", "movieTime", "movieTime2", "newNotification", "noteLock", "notification", "numberedlist", "officechair", "openai", "orderedList", "outdent", "paintingPalette", "paper", "paperDownload", "paperFail", "paperNegative", "paperPlus", "paperPlus2", "paperUpload", "password", "pauseCircle", "pen", "pen2", "photo", "pinMap", "planeCheck", "play", "plus", "plus1", "plus2", "plus4", "printer", "profile", "questionMarkCircle", "questionMarkSquare", "questions", "refresh", "refresh2", "removeUser", "reverseLeft", "reverseRight", "rightUpSquare", "roadmap", "rocket", "rotation", "sadDate", "save", "scale", "scan", "screenSize", "search", "searchDiscountPercent", "send", "setting", "settingSquare", "settingToolCircle", "share", "share2", "shieldDone", "shieldFail", "show", "sign1", "sign2", "smiling", "smilingAdd", "sort", "sortDown", "soundWave", "speakerMegaphone", "speakerMegaphone5", "star", "starRemove", "starsCircle", "stopCircle", "stopwatchSpeed", "strikethrough", "successDocuments", "sun", "sunvector", "swap", "swapHorizontal", "switchList", "symbolpng", "table", "tag", "target", "textAlignCenter", "textAlignLeft", "textAlignRight", "textColor", "textField", "thumbDislike", "tickSquare", "ticket", "ticketStar", "timeCircle", "timeSquare", "timer", "tired", "toggle", "tools", "translateLanguage", "translateVector", "triangle2", "type", "underline", "university", "unlock", "unorderedList", "upLine", "upSquareLine", "updateRight", "updateRight2", "upload", "userBadge", "userBoard", "userContact", "userInformation", "userInformation2", "userLock", "users", "usersGroup", "vectorcalendar", "vectorhome", "vectorinfoSquare", "vectorprofile", "vectorsetting", "vectorstar", "vectorwork", "verticalBarChart2", "video", "voice", "voice3", "volumeDown", "volumeOff", "volumeUp", "wallet", "webPage2", "webPage4", "webPageEdit", "webPageEdit2", "weight1", "whatsapp", "wheelchair", "wheelchair2", "world", "wrench", "xcom", "zoomIn", "zoomOut"];
|
|
1164
|
+
readonly bold: readonly ["activity", "addUser", "arrowDown", "arrowDown2", "arrowDown3", "arrowDownCircle", "arrowDownSquare", "arrowLeft", "arrowLeft2", "arrowLeft3", "arrowLeftCircle", "arrowLeftSquare", "arrowRight", "arrowRight2", "arrowRight3", "arrowRightCircle", "arrowRightSquare", "arrowUp", "arrowUp2", "arrowUp3", "arrowUpCircle", "arrowUpSquare", "bag", "bag2", "book", "bookmark", "buy", "calendar", "calendar2", "calendarCheck", "calendarEdit", "calendarForward", "calendarTime", "call", "callMissed", "callSilent", "calling", "camera", "captchaDiamondStar", "captchaQuestionMarkSquare", "category", "chart", "chat", "chatQuote", "checkCircle", "clockAddPlus", "clockOffSleep", "closeSquare", "cloudRemove", "code", "colorPalette", "counterClockwiseUndo", "danger", "dashboardcustomize24Dp000000Fill1Wght400Grad0Opsz241", "dcoumentAnalyze", "delete", "discount", "discovery", "document", "documentBadgePlus", "documentPdf", "documentPencil", "documentPin2Lines", "dollarCircle3", "download", "edit", "editSquare", "eye2", "facebook", "filter", "filter2", "flag", "flash", "folder", "folderFile", "folderFileSearch", "forwardClockTimer10", "game", "graph", "heart", "heart2", "heartPlus", "hide", "home", "hotDrink", "icon2User", "icon3User", "image", "image2", "infoCircle", "infoCircle2", "infoSquare", "instagram", "linkedin", "location", "lock", "login", "logout", "macNotebook", "mapClose", "medium", "message", "messages", "minus2", "minus3", "moon", "moreCircle", "moreSquare", "notification", "paper", "paperDownload", "paperFail", "paperNegative", "paperPlus", "paperUpload", "password", "planeCheck", "play", "plus", "profile", "removeCircle", "removeUser", "scan", "search", "send", "send2", "setting", "shieldDone", "shieldFail", "show", "slightlyFrowning", "speakerMegaphone5", "square", "star", "stickerAdd", "stopwatchPlay", "stopwatchStop", "sun", "sun2", "swap", "tag", "thumbDislike", "thumbLike", "tickSquare", "ticket", "ticketStar", "tiktok", "timeCircle", "timeCircle2", "timeSquare", "timerPlus", "tired", "translateLanguage", "twitter", "unlock", "upload", "userBadge", "userChecked", "userDelete", "userSearch", "video", "voice", "voice2", "volumeDown", "volumeOff", "volumeUp", "wallet", "work", "xcom", "youtube"];
|
|
1094
1165
|
};
|
|
1095
|
-
|
|
1166
|
+
/** Flat list of all valid icon names accepted by the Icon wrapper. */
|
|
1167
|
+
declare const iconNames: readonly ["accident", "activity", "activity2", "addUser", "aiBrainIdea", "aiBrainLike", "alarmSpeaker", "alignLeft", "anthropic", "arrowDown", "arrowDown2", "arrowDown3", "arrowDownCircle", "arrowDownRightsm", "arrowDownSquare", "arrowLeft", "arrowLeft2", "arrowLeft22", "arrowLeft3", "arrowLeftCircle", "arrowLeftSquare", "arrowRight", "arrowRight2", "arrowRight22", "arrowRight3", "arrowRightCircle", "arrowRightSm", "arrowRightSquare", "arrowUp", "arrowUp2", "arrowUp3", "arrowUpCircle", "arrowUpRightsm", "arrowUpSquare", "arrowsDiagonalContract", "attach", "bag", "bag2", "bag3", "bankCardInformation", "boardTasks", "bold", "book", "bookmark", "bot", "building", "buildingOffice", "buildingOffice2", "buildingOffice3", "bulletedList", "buy", "calendar", "calendar2", "calendarAdd", "calendarArrowRight", "calendarCheck", "calendarDash", "calendarDone", "calendarDone2", "calendarEdit", "calendarForward", "calendarHourglass", "calendarSettings", "calendarTick", "calendarTime", "calendarTimeBold", "call", "callMissed", "callSilent", "calling", "camera", "cameraAuto", "cameraPlus", "captchaDiamondStar", "captchaQuestionMarkSquare", "carCrash", "catSquare", "categories", "category", "centerLayout", "chart", "chart3BarRefresh", "chart3BarTime", "chartAnalysish", "chartInformation", "chat", "chatQuote", "checkCircle", "checkmark", "chevronExpandVerical", "circleGridInterface", "circleMessage2Text", "circleMessage2Up", "clockAddPlus", "clockClose", "clockFire", "clockOffSleep", "close", "closeSquare", "closeSquare2", "cloudRemove", "cloudUpload", "code", "code2", "colorPalette", "comment", "comments", "copyLineEdit", "counterClockwiseUndo", "creativeQuoteOpenSquare", "crecimiento", "danger", "dangerCircle", "dangerTriangle", "darkAndLight", "darkAndLight2", "dashboardcustomize24Dp000000Fill1Wght400Grad0Opsz241", "dcoument3Lines", "dcoumentAnalyze", "decrecimiento", "delete", "discount", "discovery", "docuemtn2LineEdit", "document", "documentBadgePlus", "documentCheck", "documentError", "documentExplore", "documentPdf", "documentPencil", "documentPin", "documentPin2Lines", "documentRemove", "documentStar", "documentVerified", "dollarAdd", "dollarCircle3", "doubleHeart3", "downLine", "downSquareLine", "download", "draghorizontal", "earth", "edit", "editSquare", "expand", "eye2", "faceIdFail", "faceIdSucces", "facebook", "film2", "filter", "filter2", "filter3", "flag", "flash", "flipBackward", "flipForward", "flipcalendarBlank", "flipcalendarPercent", "flipcalendarTime", "flowChart", "folder", "folderFile", "folderFileAddPlus", "folderFileSearch", "folderFileUp", "forwardClockTimer10", "frame", "galleryView", "game", "ggift", "gift", "giveDocument", "graph", "gridInterface", "gridInterface2", "gridInterface3", "gridInterface4", "gridInterfaceAddPlus", "gridInterfaceTick", "happyDate", "hashtag", "healthClipboard", "heart", "heart2", "heartPlus", "hide", "home", "home2", "homeStar", "hospital", "hotDrink", "hourglass", "icon2User", "icon3User", "iconSeparate", "iconlyRegularBoldArrowsDiagonalMaximize", "iconlyRegularBoldBoardPin", "iconlyRegularBoldCharityCoins", "iconlyRegularBoldChevronExpandVerical", "iconlyRegularBoldCircleGridInterface", "iconlyRegularBoldCircleGridInterface2", "iconlyRegularBoldContacts2", "iconlyRegularBoldController1", "iconlyRegularBoldCup", "iconlyRegularBoldDocumentPencil", "iconlyRegularBoldExit", "iconlyRegularBoldExpandLeftStop", "iconlyRegularBoldEye2", "iconlyRegularBoldHamburgerMenu", "iconlyRegularBoldHashtagSquare", "iconlyRegularBoldSalary", "iconlyRegularBoldServersConnect7", "iconlyRegularBoldSidebarClose", "iconlyRegularBoldSidebarClose2", "iconlyRegularBoldThumbLike", "iconlyRegularBoldUserChecked", "iconlyRegularBoldUserSearch", "iconlyRegularBoldVectoruserChecked", "iconlyRegularLighExternalLink", "image", "image2", "image3", "imageAi", "imageAi2", "imageDown", "imageRecognition", "imageUp", "imageUp2", "inbox", "indent", "infoCircle", "infoCircle2", "infoSquare", "information", "instagram", "insuranceHand", "insuranceHand2", "italic", "journey", "leaves", "less", "lineChartUpward", "link", "link2", "linkedin", "listCheck", "loading", "loading2", "loadingCircle3", "location", "lock", "login", "loginUser", "logout", "macNotebook", "magicWand", "map", "mapClose", "marker", "marker2", "medal", "medium", "menu", "menu2", "menuCloseLeft", "menuCloseLeft2", "menuhorizontal", "message", "messages", "microsoftExel", "microsoftWord", "minus1", "minus2", "minus2Vector", "minus3", "minus4", "monitor2", "moon", "moonvector", "moreCircle", "moreSquare", "move", "movieTime", "movieTime2", "newNotification", "noteLock", "notification", "numberedlist", "officechair", "openai", "orderedList", "outdent", "paintingPalette", "paper", "paperDownload", "paperFail", "paperNegative", "paperPlus", "paperPlus2", "paperUpload", "password", "pauseCircle", "pen", "pen2", "photo", "pinMap", "planeCheck", "play", "plus", "plus1", "plus2", "plus4", "printer", "profile", "questionMarkCircle", "questionMarkSquare", "questions", "refresh", "refresh2", "removeCircle", "removeUser", "reverseLeft", "reverseRight", "rightUpSquare", "roadmap", "rocket", "rotation", "sadDate", "save", "scale", "scan", "screenSize", "search", "searchDiscountPercent", "send", "send2", "setting", "settingSquare", "settingToolCircle", "share", "share2", "shieldDone", "shieldFail", "show", "sign1", "sign2", "slightlyFrowning", "smiling", "smilingAdd", "sort", "sortDown", "soundWave", "speakerMegaphone", "speakerMegaphone5", "square", "star", "starRemove", "starsCircle", "stickerAdd", "stopCircle", "stopwatchPlay", "stopwatchSpeed", "stopwatchStop", "strikethrough", "successDocuments", "sun", "sun2", "sunvector", "swap", "swapHorizontal", "switchList", "symbolpng", "table", "tag", "target", "textAlignCenter", "textAlignLeft", "textAlignRight", "textColor", "textField", "thumbDislike", "thumbLike", "tickSquare", "ticket", "ticketStar", "tiktok", "timeCircle", "timeCircle2", "timeSquare", "timer", "timerPlus", "tired", "toggle", "tools", "translateLanguage", "translateVector", "triangle2", "twitter", "type", "underline", "university", "unlock", "unorderedList", "upLine", "upSquareLine", "updateRight", "updateRight2", "upload", "userBadge", "userBoard", "userChecked", "userContact", "userDelete", "userInformation", "userInformation2", "userLock", "userSearch", "users", "usersGroup", "vectorcalendar", "vectorhome", "vectorinfoSquare", "vectorprofile", "vectorsetting", "vectorstar", "vectorwork", "verticalBarChart2", "video", "voice", "voice2", "voice3", "volumeDown", "volumeOff", "volumeUp", "wallet", "webPage2", "webPage4", "webPageEdit", "webPageEdit2", "weight1", "whatsapp", "wheelchair", "wheelchair2", "work", "world", "wrench", "xcom", "youtube", "zoomIn", "zoomOut"];
|
|
1168
|
+
/** All valid icon names accepted by the Icon wrapper. */
|
|
1096
1169
|
type IconName = (typeof iconNames)[number];
|
|
1097
1170
|
declare const iconsByVariant: {
|
|
1098
1171
|
readonly regular: {
|
|
@@ -1101,7 +1174,6 @@ declare const iconsByVariant: {
|
|
|
1101
1174
|
readonly xcom: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1102
1175
|
readonly wrench: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1103
1176
|
readonly world: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1104
|
-
readonly work: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1105
1177
|
readonly wheelchair2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1106
1178
|
readonly wheelchair: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1107
1179
|
readonly whatsapp: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1132,6 +1204,7 @@ declare const iconsByVariant: {
|
|
|
1132
1204
|
readonly userInformation2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1133
1205
|
readonly userContact: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1134
1206
|
readonly userBoard: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1207
|
+
readonly userBadge: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1135
1208
|
readonly upload: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1136
1209
|
readonly updateRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1137
1210
|
readonly updateRight2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1142,6 +1215,7 @@ declare const iconsByVariant: {
|
|
|
1142
1215
|
readonly university: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1143
1216
|
readonly underline: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1144
1217
|
readonly type: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1218
|
+
readonly triangle2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1145
1219
|
readonly translateVector: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1146
1220
|
readonly translateLanguage: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1147
1221
|
readonly tools: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1159,16 +1233,20 @@ declare const iconsByVariant: {
|
|
|
1159
1233
|
readonly textAlignRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1160
1234
|
readonly textAlignLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1161
1235
|
readonly textAlignCenter: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1236
|
+
readonly target: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1162
1237
|
readonly tag: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1163
1238
|
readonly table: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1239
|
+
readonly symbolpng: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1164
1240
|
readonly switchList: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1165
1241
|
readonly swap: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1166
1242
|
readonly swapHorizontal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1167
1243
|
readonly sunvector: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1168
1244
|
readonly sun: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1245
|
+
readonly successDocuments: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1169
1246
|
readonly strikethrough: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1170
1247
|
readonly stopwatchSpeed: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1171
1248
|
readonly stopCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1249
|
+
readonly starsCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1172
1250
|
readonly star: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1173
1251
|
readonly starRemove: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1174
1252
|
readonly speakerMegaphone: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1197,6 +1275,7 @@ declare const iconsByVariant: {
|
|
|
1197
1275
|
readonly save: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1198
1276
|
readonly sadDate: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1199
1277
|
readonly rotation: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1278
|
+
readonly rocket: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1200
1279
|
readonly roadmap: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1201
1280
|
readonly rightUpSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1202
1281
|
readonly reverseRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1205,6 +1284,7 @@ declare const iconsByVariant: {
|
|
|
1205
1284
|
readonly refresh: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1206
1285
|
readonly refresh2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1207
1286
|
readonly questions: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1287
|
+
readonly questionMarkSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1208
1288
|
readonly questionMarkCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1209
1289
|
readonly profile: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1210
1290
|
readonly printer: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1230,9 +1310,11 @@ declare const iconsByVariant: {
|
|
|
1230
1310
|
readonly paintingPalette: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1231
1311
|
readonly outdent: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1232
1312
|
readonly orderedList: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1313
|
+
readonly openai: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1233
1314
|
readonly officechair: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1234
1315
|
readonly numberedlist: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1235
1316
|
readonly notification: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1317
|
+
readonly noteLock: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1236
1318
|
readonly newNotification: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1237
1319
|
readonly movieTime: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1238
1320
|
readonly movieTime2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1250,7 +1332,10 @@ declare const iconsByVariant: {
|
|
|
1250
1332
|
readonly message: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1251
1333
|
readonly menuhorizontal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1252
1334
|
readonly menu: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1335
|
+
readonly menuCloseLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1336
|
+
readonly menuCloseLeft2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1253
1337
|
readonly menu2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1338
|
+
readonly medal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1254
1339
|
readonly marker: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1255
1340
|
readonly marker2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1256
1341
|
readonly map: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1259,6 +1344,7 @@ declare const iconsByVariant: {
|
|
|
1259
1344
|
readonly macNotebook: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1260
1345
|
readonly logout: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1261
1346
|
readonly login: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1347
|
+
readonly loginUser: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1262
1348
|
readonly lock: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1263
1349
|
readonly location: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1264
1350
|
readonly loading: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1282,8 +1368,10 @@ declare const iconsByVariant: {
|
|
|
1282
1368
|
readonly image: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1283
1369
|
readonly imageUp: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1284
1370
|
readonly imageUp2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1371
|
+
readonly imageRecognition: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1285
1372
|
readonly imageDown: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1286
1373
|
readonly imageAi: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1374
|
+
readonly imageAi2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1287
1375
|
readonly image3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1288
1376
|
readonly iconlyRegularLighExternalLink: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1289
1377
|
readonly iconlyRegularBoldVectoruserChecked: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1314,6 +1402,7 @@ declare const iconsByVariant: {
|
|
|
1314
1402
|
readonly hotDrink: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1315
1403
|
readonly hospital: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1316
1404
|
readonly home: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1405
|
+
readonly homeStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1317
1406
|
readonly home2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1318
1407
|
readonly hide: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1319
1408
|
readonly heart: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1357,12 +1446,17 @@ declare const iconsByVariant: {
|
|
|
1357
1446
|
readonly download: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1358
1447
|
readonly downSquareLine: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1359
1448
|
readonly downLine: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1449
|
+
readonly doubleHeart3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1360
1450
|
readonly dollarAdd: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1361
1451
|
readonly document: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1452
|
+
readonly documentVerified: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1362
1453
|
readonly documentStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1454
|
+
readonly documentRemove: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1363
1455
|
readonly documentPin: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1364
1456
|
readonly documentPdf: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1457
|
+
readonly documentExplore: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1365
1458
|
readonly documentError: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1459
|
+
readonly documentCheck: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1366
1460
|
readonly docuemtn2LineEdit: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1367
1461
|
readonly discovery: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1368
1462
|
readonly discount: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1387,6 +1481,8 @@ declare const iconsByVariant: {
|
|
|
1387
1481
|
readonly clockFire: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1388
1482
|
readonly clockClose: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1389
1483
|
readonly clockAddPlus: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1484
|
+
readonly circleMessage2Up: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1485
|
+
readonly circleMessage2Text: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1390
1486
|
readonly circleGridInterface: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1391
1487
|
readonly chevronExpandVerical: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1392
1488
|
readonly checkmark: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1421,6 +1517,7 @@ declare const iconsByVariant: {
|
|
|
1421
1517
|
readonly calendarDone2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1422
1518
|
readonly calendarDash: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1423
1519
|
readonly calendarCheck: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1520
|
+
readonly calendarArrowRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1424
1521
|
readonly calendarAdd: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1425
1522
|
readonly calendar2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1426
1523
|
readonly buy: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1429,6 +1526,7 @@ declare const iconsByVariant: {
|
|
|
1429
1526
|
readonly buildingOffice: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1430
1527
|
readonly buildingOffice3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1431
1528
|
readonly buildingOffice2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1529
|
+
readonly bot: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1432
1530
|
readonly bookmark: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1433
1531
|
readonly book: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1434
1532
|
readonly bold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1463,8 +1561,10 @@ declare const iconsByVariant: {
|
|
|
1463
1561
|
readonly arrowDownCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1464
1562
|
readonly arrowDown3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1465
1563
|
readonly arrowDown2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1564
|
+
readonly anthropic: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1466
1565
|
readonly alignLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1467
1566
|
readonly alarmSpeaker: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1567
|
+
readonly aiBrainLike: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1468
1568
|
readonly aiBrainIdea: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1469
1569
|
readonly addUser: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1470
1570
|
readonly activity: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1541,6 +1641,7 @@ declare const iconsByVariant: {
|
|
|
1541
1641
|
readonly moon: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1542
1642
|
readonly minus3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1543
1643
|
readonly minus2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1644
|
+
readonly messages: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1544
1645
|
readonly message: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1545
1646
|
readonly medium: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1546
1647
|
readonly mapClose: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1579,6 +1680,8 @@ declare const iconsByVariant: {
|
|
|
1579
1680
|
readonly download: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1580
1681
|
readonly dollarCircle3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1581
1682
|
readonly document: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1683
|
+
readonly documentPin2Lines: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1684
|
+
readonly documentPencil: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1582
1685
|
readonly documentPdf: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1583
1686
|
readonly documentBadgePlus: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1584
1687
|
readonly discovery: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1599,6 +1702,8 @@ declare const iconsByVariant: {
|
|
|
1599
1702
|
readonly chatQuote: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1600
1703
|
readonly chart: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1601
1704
|
readonly category: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1705
|
+
readonly captchaQuestionMarkSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1706
|
+
readonly captchaDiamondStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1602
1707
|
readonly camera: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1603
1708
|
readonly calling: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1604
1709
|
readonly call: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1709,6 +1814,7 @@ declare const icons: {
|
|
|
1709
1814
|
readonly moon: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1710
1815
|
readonly minus3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1711
1816
|
readonly minus2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1817
|
+
readonly messages: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1712
1818
|
readonly message: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1713
1819
|
readonly medium: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1714
1820
|
readonly mapClose: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1747,6 +1853,8 @@ declare const icons: {
|
|
|
1747
1853
|
readonly download: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1748
1854
|
readonly dollarCircle3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1749
1855
|
readonly document: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1856
|
+
readonly documentPin2Lines: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1857
|
+
readonly documentPencil: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1750
1858
|
readonly documentPdf: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1751
1859
|
readonly documentBadgePlus: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1752
1860
|
readonly discovery: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1767,6 +1875,8 @@ declare const icons: {
|
|
|
1767
1875
|
readonly chatQuote: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1768
1876
|
readonly chart: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1769
1877
|
readonly category: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1878
|
+
readonly captchaQuestionMarkSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1879
|
+
readonly captchaDiamondStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1770
1880
|
readonly camera: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1771
1881
|
readonly calling: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1772
1882
|
readonly call: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1843,6 +1953,7 @@ declare const icons: {
|
|
|
1843
1953
|
readonly university: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1844
1954
|
readonly underline: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1845
1955
|
readonly type: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1956
|
+
readonly triangle2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1846
1957
|
readonly translateVector: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1847
1958
|
readonly tools: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1848
1959
|
readonly toggle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1852,13 +1963,17 @@ declare const icons: {
|
|
|
1852
1963
|
readonly textAlignRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1853
1964
|
readonly textAlignLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1854
1965
|
readonly textAlignCenter: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1966
|
+
readonly target: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1855
1967
|
readonly table: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1968
|
+
readonly symbolpng: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1856
1969
|
readonly switchList: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1857
1970
|
readonly swapHorizontal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1858
1971
|
readonly sunvector: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1972
|
+
readonly successDocuments: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1859
1973
|
readonly strikethrough: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1860
1974
|
readonly stopwatchSpeed: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1861
1975
|
readonly stopCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1976
|
+
readonly starsCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1862
1977
|
readonly starRemove: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1863
1978
|
readonly speakerMegaphone: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1864
1979
|
readonly soundWave: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1878,6 +1993,7 @@ declare const icons: {
|
|
|
1878
1993
|
readonly save: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1879
1994
|
readonly sadDate: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1880
1995
|
readonly rotation: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1996
|
+
readonly rocket: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1881
1997
|
readonly roadmap: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1882
1998
|
readonly rightUpSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1883
1999
|
readonly reverseRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1885,6 +2001,7 @@ declare const icons: {
|
|
|
1885
2001
|
readonly refresh: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1886
2002
|
readonly refresh2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1887
2003
|
readonly questions: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2004
|
+
readonly questionMarkSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1888
2005
|
readonly questionMarkCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1889
2006
|
readonly printer: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1890
2007
|
readonly plus4: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1899,8 +2016,10 @@ declare const icons: {
|
|
|
1899
2016
|
readonly paintingPalette: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1900
2017
|
readonly outdent: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1901
2018
|
readonly orderedList: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2019
|
+
readonly openai: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1902
2020
|
readonly officechair: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1903
2021
|
readonly numberedlist: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2022
|
+
readonly noteLock: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1904
2023
|
readonly newNotification: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1905
2024
|
readonly movieTime: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1906
2025
|
readonly movieTime2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1914,11 +2033,15 @@ declare const icons: {
|
|
|
1914
2033
|
readonly microsoftExel: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1915
2034
|
readonly menuhorizontal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1916
2035
|
readonly menu: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2036
|
+
readonly menuCloseLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2037
|
+
readonly menuCloseLeft2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1917
2038
|
readonly menu2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2039
|
+
readonly medal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1918
2040
|
readonly marker: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1919
2041
|
readonly marker2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1920
2042
|
readonly map: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1921
2043
|
readonly magicWand: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2044
|
+
readonly loginUser: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1922
2045
|
readonly loading: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1923
2046
|
readonly loadingCircle3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1924
2047
|
readonly loading2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1937,8 +2060,10 @@ declare const icons: {
|
|
|
1937
2060
|
readonly inbox: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1938
2061
|
readonly imageUp: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1939
2062
|
readonly imageUp2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2063
|
+
readonly imageRecognition: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1940
2064
|
readonly imageDown: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1941
2065
|
readonly imageAi: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2066
|
+
readonly imageAi2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1942
2067
|
readonly image3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1943
2068
|
readonly iconlyRegularLighExternalLink: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1944
2069
|
readonly iconlyRegularBoldVectoruserChecked: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1967,6 +2092,7 @@ declare const icons: {
|
|
|
1967
2092
|
readonly iconSeparate: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1968
2093
|
readonly hourglass: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1969
2094
|
readonly hospital: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2095
|
+
readonly homeStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1970
2096
|
readonly home2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1971
2097
|
readonly healthClipboard: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
1972
2098
|
readonly hashtag: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -1999,10 +2125,15 @@ declare const icons: {
|
|
|
1999
2125
|
readonly draghorizontal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2000
2126
|
readonly downSquareLine: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2001
2127
|
readonly downLine: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2128
|
+
readonly doubleHeart3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2002
2129
|
readonly dollarAdd: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2130
|
+
readonly documentVerified: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2003
2131
|
readonly documentStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2132
|
+
readonly documentRemove: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2004
2133
|
readonly documentPin: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2134
|
+
readonly documentExplore: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2005
2135
|
readonly documentError: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2136
|
+
readonly documentCheck: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2006
2137
|
readonly docuemtn2LineEdit: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2007
2138
|
readonly decrecimiento: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2008
2139
|
readonly dcoument3Lines: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -2021,6 +2152,8 @@ declare const icons: {
|
|
|
2021
2152
|
readonly closeSquare2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2022
2153
|
readonly clockFire: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2023
2154
|
readonly clockClose: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2155
|
+
readonly circleMessage2Up: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2156
|
+
readonly circleMessage2Text: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2024
2157
|
readonly circleGridInterface: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2025
2158
|
readonly chevronExpandVerical: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2026
2159
|
readonly checkmark: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -2041,12 +2174,14 @@ declare const icons: {
|
|
|
2041
2174
|
readonly calendarDone: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2042
2175
|
readonly calendarDone2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2043
2176
|
readonly calendarDash: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2177
|
+
readonly calendarArrowRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2044
2178
|
readonly calendarAdd: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2045
2179
|
readonly bulletedList: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2046
2180
|
readonly building: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2047
2181
|
readonly buildingOffice: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2048
2182
|
readonly buildingOffice3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2049
2183
|
readonly buildingOffice2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2184
|
+
readonly bot: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2050
2185
|
readonly bold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2051
2186
|
readonly boardTasks: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2052
2187
|
readonly bankCardInformation: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
@@ -2058,17 +2193,23 @@ declare const icons: {
|
|
|
2058
2193
|
readonly arrowRight22: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2059
2194
|
readonly arrowLeft22: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2060
2195
|
readonly arrowDownRightsm: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2196
|
+
readonly anthropic: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2061
2197
|
readonly alignLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2062
2198
|
readonly alarmSpeaker: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2199
|
+
readonly aiBrainLike: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2063
2200
|
readonly aiBrainIdea: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2064
2201
|
readonly activity2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2065
2202
|
readonly accident: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
|
|
2066
2203
|
};
|
|
2067
2204
|
|
|
2205
|
+
/** Props accepted by the Icon wrapper component. */
|
|
2068
2206
|
type FichapIconProps = IconSvgProps & {
|
|
2069
2207
|
name: IconName;
|
|
2070
2208
|
variant?: IconVariant;
|
|
2071
2209
|
};
|
|
2210
|
+
/**
|
|
2211
|
+
* Resolves a generated icon by name and variant while preserving the shared SVG props contract.
|
|
2212
|
+
*/
|
|
2072
2213
|
declare function Icon({ name, variant, ...props }: FichapIconProps): React.JSX.Element | null;
|
|
2073
2214
|
|
|
2074
|
-
export { AccidentRegular, Activity2Regular, ActivityBold, ActivityRegular, AddUserBold, AddUserRegular, AiBrainIdeaRegular, AlarmSpeakerRegular, AlignLeftRegular, ArrowDown2Bold, ArrowDown2Regular, ArrowDown3Bold, ArrowDown3Regular, ArrowDownBold, ArrowDownCircleBold, ArrowDownCircleRegular, ArrowDownRegular, ArrowDownRightsmRegular, ArrowDownSquareBold, ArrowDownSquareRegular, ArrowLeft22Regular, ArrowLeft2Bold, ArrowLeft2Regular, ArrowLeft3Bold, ArrowLeft3Regular, ArrowLeftBold, ArrowLeftCircleBold, ArrowLeftCircleRegular, ArrowLeftRegular, ArrowLeftSquareBold, ArrowLeftSquareRegular, ArrowRight22Regular, ArrowRight2Bold, ArrowRight2Regular, ArrowRight3Bold, ArrowRight3Regular, ArrowRightBold, ArrowRightCircleBold, ArrowRightCircleRegular, ArrowRightRegular, ArrowRightSmRegular, ArrowRightSquareBold, ArrowRightSquareRegular, ArrowUp2Bold, ArrowUp2Regular, ArrowUp3Bold, ArrowUp3Regular, ArrowUpBold, ArrowUpCircleBold, ArrowUpCircleRegular, ArrowUpRegular, ArrowUpRightsmRegular, ArrowUpSquareBold, ArrowUpSquareRegular, ArrowsDiagonalContractRegular, AttachRegular, Bag2Bold, Bag3Regular, BagBold, BagRegular, BankCardInformationRegular, BoardTasksRegular, BoldRegular, BookBold, BookRegular, BookmarkBold, BookmarkRegular, BuildingOffice2Regular, BuildingOffice3Regular, BuildingOfficeRegular, BuildingRegular, BulletedListRegular, BuyBold, BuyRegular, Calendar2Bold, Calendar2Regular, CalendarAddRegular, CalendarBold, CalendarCheckBold, CalendarCheckRegular, CalendarDashRegular, CalendarDone2Regular, CalendarDoneRegular, CalendarEditBold, CalendarEditRegular, CalendarForwardBold, CalendarHourglassRegular, CalendarRegular, CalendarSettingsRegular, CalendarTickRegular, CalendarTimeBold, CalendarTimeBoldRegular, CalendarTimeRegular, CallBold, CallMissedBold, CallMissedRegular, CallRegular, CallSilentBold, CallSilentRegular, CallingBold, CallingRegular, CameraAutoRegular, CameraBold, CameraPlusRegular, CameraRegular, CarCrashRegular, CatSquareRegular, CategoriesRegular, CategoryBold, CategoryRegular, CenterLayoutRegular, Chart3BarRefreshRegular, Chart3BarTimeRegular, ChartAnalysishRegular, ChartBold, ChartInformationRegular, ChartRegular, ChatBold, ChatQuoteBold, ChatQuoteRegular, ChatRegular, CheckCircleBold, CheckCircleRegular, CheckmarkRegular, ChevronExpandVericalRegular, CircleGridInterfaceRegular, ClockAddPlusBold, ClockAddPlusRegular, ClockCloseRegular, ClockFireRegular, ClockOffSleepBold, CloseRegular, CloseSquare2Regular, CloseSquareBold, CloseSquareRegular, CloudRemoveBold, CloudUploadRegular, Code2Regular, CodeBold, CodeRegular, ColorPaletteBold, CommentRegular, CommentsRegular, CopyLineEditRegular, CounterClockwiseUndoBold, CreativeQuoteOpenSquareRegular, CrecimientoRegular, DangerBold, DangerCircleRegular, DangerTriangleRegular, DarkAndLight2Regular, DarkAndLightRegular, Dashboardcustomize24Dp000000Fill1Wght400Grad0Opsz241Bold, Dcoument3LinesRegular, DcoumentAnalyzeBold, DecrecimientoRegular, DeleteBold, DeleteRegular, DiscountBold, DiscountRegular, DiscoveryBold, DiscoveryRegular, Docuemtn2LineEditRegular, DocumentBadgePlusBold, DocumentBold, DocumentErrorRegular, DocumentPdfBold, DocumentPdfRegular, DocumentPinRegular, DocumentRegular, DocumentStarRegular, DollarAddRegular, DollarCircle3Bold, DownLineRegular, DownSquareLineRegular, DownloadBold, DownloadRegular, DraghorizontalRegular, EarthRegular, EditBold, EditRegular, EditSquareBold, EditSquareRegular, ExpandRegular, Eye2Bold, FaceIdFailRegular, FaceIdSuccesRegular, FacebookBold, type FichapIconProps, Film2Regular, Filter2Bold, Filter3Regular, FilterBold, FilterRegular, FlagBold, FlagRegular, FlashBold, FlashRegular, FlipBackwardRegular, FlipForwardRegular, FlipcalendarBlankRegular, FlipcalendarPercentRegular, FlipcalendarTimeRegular, FlowChartRegular, FolderBold, FolderFileAddPlusRegular, FolderFileBold, FolderFileSearchBold, FolderFileUpRegular, FolderRegular, ForwardClockTimer10Bold, FrameRegular, GalleryViewRegular, GameBold, GameRegular, GgiftRegular, GiftRegular, GiveDocumentRegular, GraphBold, GraphRegular, GridInterface2Regular, GridInterface3Regular, GridInterface4Regular, GridInterfaceAddPlusRegular, GridInterfaceRegular, GridInterfaceTickRegular, HappyDateRegular, HashtagRegular, HealthClipboardRegular, Heart2Bold, HeartBold, HeartPlusBold, HeartRegular, HideBold, HideRegular, Home2Regular, HomeBold, HomeRegular, HospitalRegular, HotDrinkBold, HotDrinkRegular, HourglassRegular, Icon, Icon2UserBold, Icon2UserRegular, Icon3UserBold, Icon3UserRegular, type IconComponent, type IconName, IconSeparateRegular, type IconSvgProps, type IconVariant, IconlyRegularBoldArrowsDiagonalMaximizeRegular, IconlyRegularBoldBoardPinRegular, IconlyRegularBoldCharityCoinsRegular, IconlyRegularBoldChevronExpandVericalRegular, IconlyRegularBoldCircleGridInterface2Regular, IconlyRegularBoldCircleGridInterfaceRegular, IconlyRegularBoldContacts2Regular, IconlyRegularBoldController1Regular, IconlyRegularBoldCupRegular, IconlyRegularBoldDocumentPencilRegular, IconlyRegularBoldExitRegular, IconlyRegularBoldExpandLeftStopRegular, IconlyRegularBoldEye2Regular, IconlyRegularBoldHamburgerMenuRegular, IconlyRegularBoldHashtagSquareRegular, IconlyRegularBoldSalaryRegular, IconlyRegularBoldServersConnect7Regular, IconlyRegularBoldSidebarClose2Regular, IconlyRegularBoldSidebarCloseRegular, IconlyRegularBoldThumbLikeRegular, IconlyRegularBoldUserCheckedRegular, IconlyRegularBoldUserSearchRegular, IconlyRegularBoldVectoruserCheckedRegular, IconlyRegularLighExternalLinkRegular, Image2Bold, Image3Regular, ImageAiRegular, ImageBold, ImageDownRegular, ImageRegular, ImageUp2Regular, ImageUpRegular, InboxRegular, IndentRegular, InfoCircle2Bold, InfoCircleBold, InfoCircleRegular, InfoSquareBold, InfoSquareRegular, InformationRegular, InstagramBold, InsuranceHand2Regular, InsuranceHandRegular, ItalicRegular, JourneyRegular, LeavesRegular, LessRegular, LineChartUpwardRegular, Link2Regular, LinkRegular, LinkedinBold, ListCheckRegular, Loading2Regular, LoadingCircle3Regular, LoadingRegular, LocationBold, LocationRegular, LockBold, LockRegular, LoginBold, LoginRegular, LogoutBold, LogoutRegular, MacNotebookBold, MacNotebookRegular, MagicWandRegular, MapCloseBold, MapCloseRegular, MapRegular, Marker2Regular, MarkerRegular, MediumBold, Menu2Regular, MenuRegular, MenuhorizontalRegular, MessageBold, MessageRegular, MicrosoftExelRegular, MicrosoftWordRegular, Minus1Regular, Minus2Bold, Minus2Regular, Minus2VectorRegular, Minus3Bold, Minus4Regular, Monitor2Regular, MoonBold, MoonvectorRegular, MoreCircleBold, MoreCircleRegular, MoreSquareBold, MoreSquareRegular, MoveRegular, MovieTime2Regular, MovieTimeRegular, NewNotificationRegular, NotificationBold, NotificationRegular, NumberedlistRegular, OfficechairRegular, OrderedListRegular, OutdentRegular, PaintingPaletteRegular, PaperBold, PaperDownloadBold, PaperDownloadRegular, PaperFailBold, PaperFailRegular, PaperNegativeBold, PaperNegativeRegular, PaperPlus2Regular, PaperPlusBold, PaperPlusRegular, PaperRegular, PaperUploadBold, PaperUploadRegular, PasswordBold, PasswordRegular, PauseCircleRegular, Pen2Regular, PenRegular, PhotoRegular, PinMapRegular, PlaneCheckBold, PlaneCheckRegular, PlayBold, PlayRegular, Plus1Regular, Plus2Regular, Plus4Regular, PlusBold, PlusRegular, PrinterRegular, ProfileBold, ProfileRegular, QuestionMarkCircleRegular, QuestionsRegular, Refresh2Regular, RefreshRegular, RemoveCircleBold, RemoveUserBold, RemoveUserRegular, ReverseLeftRegular, ReverseRightRegular, RightUpSquareRegular, RoadmapRegular, RotationRegular, SadDateRegular, SaveRegular, ScaleRegular, ScanBold, ScanRegular, ScreenSizeRegular, SearchBold, SearchDiscountPercentRegular, SearchRegular, Send2Bold, SendBold, SendRegular, SettingBold, SettingRegular, SettingSquareRegular, SettingToolCircleRegular, Share2Regular, ShareRegular, ShieldDoneBold, ShieldDoneRegular, ShieldFailBold, ShieldFailRegular, ShowBold, ShowRegular, Sign1Regular, Sign2Regular, SlightlyFrowningBold, SmilingAddRegular, SmilingRegular, SortDownRegular, SortRegular, SoundWaveRegular, SpeakerMegaphone5Bold, SpeakerMegaphone5Regular, SpeakerMegaphoneRegular, SquareBold, StarBold, StarRegular, StarRemoveRegular, StickerAddBold, StopCircleRegular, StopwatchPlayBold, StopwatchSpeedRegular, StopwatchStopBold, StrikethroughRegular, Sun2Bold, SunBold, SunRegular, SunvectorRegular, SwapBold, SwapHorizontalRegular, SwapRegular, SwitchListRegular, TableRegular, TagBold, TagRegular, TextAlignCenterRegular, TextAlignLeftRegular, TextAlignRightRegular, TextColorRegular, TextFieldRegular, ThumbDislikeBold, ThumbDislikeRegular, ThumbLikeBold, TickSquareBold, TickSquareRegular, TicketBold, TicketRegular, TicketStarBold, TicketStarRegular, TiktokBold, TimeCircle2Bold, TimeCircleBold, TimeCircleRegular, TimeSquareBold, TimeSquareRegular, TimerPlusBold, TimerRegular, TiredBold, TiredRegular, ToggleRegular, ToolsRegular, TranslateLanguageBold, TranslateLanguageRegular, TranslateVectorRegular, TwitterBold, TypeRegular, UnderlineRegular, UniversityRegular, UnlockBold, UnlockRegular, UnorderedListRegular, UpLineRegular, UpSquareLineRegular, UpdateRight2Regular, UpdateRightRegular, UploadBold, UploadRegular, UserBadgeBold, UserBoardRegular, UserCheckedBold, UserContactRegular, UserDeleteBold, UserInformation2Regular, UserInformationRegular, UserLockRegular, UserSearchBold, UsersGroupRegular, UsersRegular, VectorcalendarRegular, VectorhomeRegular, VectorinfoSquareRegular, VectorprofileRegular, VectorsettingRegular, VectorstarRegular, VectorworkRegular, VerticalBarChart2Regular, VideoBold, VideoRegular, Voice2Bold, Voice3Regular, VoiceBold, VoiceRegular, VolumeDownBold, VolumeDownRegular, VolumeOffBold, VolumeOffRegular, VolumeUpBold, VolumeUpRegular, WalletBold, WalletRegular, WebPage2Regular, WebPage4Regular, WebPageEdit2Regular, WebPageEditRegular, Weight1Regular, WhatsappRegular, Wheelchair2Regular, WheelchairRegular, WorkBold, WorkRegular, WorldRegular, WrenchRegular, XcomBold, XcomRegular, YoutubeBold, ZoomInRegular, ZoomOutRegular, iconNames, iconNamesByVariant, icons, iconsByVariant };
|
|
2215
|
+
export { AccidentRegular, Activity2Regular, ActivityBold, ActivityRegular, AddUserBold, AddUserRegular, AiBrainIdeaRegular, AiBrainLikeRegular, AlarmSpeakerRegular, AlignLeftRegular, AnthropicRegular, ArrowDown2Bold, ArrowDown2Regular, ArrowDown3Bold, ArrowDown3Regular, ArrowDownBold, ArrowDownCircleBold, ArrowDownCircleRegular, ArrowDownRegular, ArrowDownRightsmRegular, ArrowDownSquareBold, ArrowDownSquareRegular, ArrowLeft22Regular, ArrowLeft2Bold, ArrowLeft2Regular, ArrowLeft3Bold, ArrowLeft3Regular, ArrowLeftBold, ArrowLeftCircleBold, ArrowLeftCircleRegular, ArrowLeftRegular, ArrowLeftSquareBold, ArrowLeftSquareRegular, ArrowRight22Regular, ArrowRight2Bold, ArrowRight2Regular, ArrowRight3Bold, ArrowRight3Regular, ArrowRightBold, ArrowRightCircleBold, ArrowRightCircleRegular, ArrowRightRegular, ArrowRightSmRegular, ArrowRightSquareBold, ArrowRightSquareRegular, ArrowUp2Bold, ArrowUp2Regular, ArrowUp3Bold, ArrowUp3Regular, ArrowUpBold, ArrowUpCircleBold, ArrowUpCircleRegular, ArrowUpRegular, ArrowUpRightsmRegular, ArrowUpSquareBold, ArrowUpSquareRegular, ArrowsDiagonalContractRegular, AttachRegular, Bag2Bold, Bag3Regular, BagBold, BagRegular, BankCardInformationRegular, BoardTasksRegular, BoldRegular, BookBold, BookRegular, BookmarkBold, BookmarkRegular, BotRegular, BuildingOffice2Regular, BuildingOffice3Regular, BuildingOfficeRegular, BuildingRegular, BulletedListRegular, BuyBold, BuyRegular, Calendar2Bold, Calendar2Regular, CalendarAddRegular, CalendarArrowRightRegular, CalendarBold, CalendarCheckBold, CalendarCheckRegular, CalendarDashRegular, CalendarDone2Regular, CalendarDoneRegular, CalendarEditBold, CalendarEditRegular, CalendarForwardBold, CalendarHourglassRegular, CalendarRegular, CalendarSettingsRegular, CalendarTickRegular, CalendarTimeBold, CalendarTimeBoldRegular, CalendarTimeRegular, CallBold, CallMissedBold, CallMissedRegular, CallRegular, CallSilentBold, CallSilentRegular, CallingBold, CallingRegular, CameraAutoRegular, CameraBold, CameraPlusRegular, CameraRegular, CaptchaDiamondStarBold, CaptchaQuestionMarkSquareBold, CarCrashRegular, CatSquareRegular, CategoriesRegular, CategoryBold, CategoryRegular, CenterLayoutRegular, Chart3BarRefreshRegular, Chart3BarTimeRegular, ChartAnalysishRegular, ChartBold, ChartInformationRegular, ChartRegular, ChatBold, ChatQuoteBold, ChatQuoteRegular, ChatRegular, CheckCircleBold, CheckCircleRegular, CheckmarkRegular, ChevronExpandVericalRegular, CircleGridInterfaceRegular, CircleMessage2TextRegular, CircleMessage2UpRegular, ClockAddPlusBold, ClockAddPlusRegular, ClockCloseRegular, ClockFireRegular, ClockOffSleepBold, CloseRegular, CloseSquare2Regular, CloseSquareBold, CloseSquareRegular, CloudRemoveBold, CloudUploadRegular, Code2Regular, CodeBold, CodeRegular, ColorPaletteBold, CommentRegular, CommentsRegular, CopyLineEditRegular, CounterClockwiseUndoBold, CreativeQuoteOpenSquareRegular, CrecimientoRegular, DangerBold, DangerCircleRegular, DangerTriangleRegular, DarkAndLight2Regular, DarkAndLightRegular, Dashboardcustomize24Dp000000Fill1Wght400Grad0Opsz241Bold, Dcoument3LinesRegular, DcoumentAnalyzeBold, DecrecimientoRegular, DeleteBold, DeleteRegular, DiscountBold, DiscountRegular, DiscoveryBold, DiscoveryRegular, Docuemtn2LineEditRegular, DocumentBadgePlusBold, DocumentBold, DocumentCheckRegular, DocumentErrorRegular, DocumentExploreRegular, DocumentPdfBold, DocumentPdfRegular, DocumentPencilBold, DocumentPin2LinesBold, DocumentPinRegular, DocumentRegular, DocumentRemoveRegular, DocumentStarRegular, DocumentVerifiedRegular, DollarAddRegular, DollarCircle3Bold, DoubleHeart3Regular, DownLineRegular, DownSquareLineRegular, DownloadBold, DownloadRegular, DraghorizontalRegular, EarthRegular, EditBold, EditRegular, EditSquareBold, EditSquareRegular, ExpandRegular, Eye2Bold, FaceIdFailRegular, FaceIdSuccesRegular, FacebookBold, type FichapIconProps, Film2Regular, Filter2Bold, Filter3Regular, FilterBold, FilterRegular, FlagBold, FlagRegular, FlashBold, FlashRegular, FlipBackwardRegular, FlipForwardRegular, FlipcalendarBlankRegular, FlipcalendarPercentRegular, FlipcalendarTimeRegular, FlowChartRegular, FolderBold, FolderFileAddPlusRegular, FolderFileBold, FolderFileSearchBold, FolderFileUpRegular, FolderRegular, ForwardClockTimer10Bold, FrameRegular, GalleryViewRegular, GameBold, GameRegular, GgiftRegular, GiftRegular, GiveDocumentRegular, GraphBold, GraphRegular, GridInterface2Regular, GridInterface3Regular, GridInterface4Regular, GridInterfaceAddPlusRegular, GridInterfaceRegular, GridInterfaceTickRegular, HappyDateRegular, HashtagRegular, HealthClipboardRegular, Heart2Bold, HeartBold, HeartPlusBold, HeartRegular, HideBold, HideRegular, Home2Regular, HomeBold, HomeRegular, HomeStarRegular, HospitalRegular, HotDrinkBold, HotDrinkRegular, HourglassRegular, Icon, Icon2UserBold, Icon2UserRegular, Icon3UserBold, Icon3UserRegular, type IconComponent, type IconName, IconSeparateRegular, type IconSvgProps, type IconVariant, IconlyRegularBoldArrowsDiagonalMaximizeRegular, IconlyRegularBoldBoardPinRegular, IconlyRegularBoldCharityCoinsRegular, IconlyRegularBoldChevronExpandVericalRegular, IconlyRegularBoldCircleGridInterface2Regular, IconlyRegularBoldCircleGridInterfaceRegular, IconlyRegularBoldContacts2Regular, IconlyRegularBoldController1Regular, IconlyRegularBoldCupRegular, IconlyRegularBoldDocumentPencilRegular, IconlyRegularBoldExitRegular, IconlyRegularBoldExpandLeftStopRegular, IconlyRegularBoldEye2Regular, IconlyRegularBoldHamburgerMenuRegular, IconlyRegularBoldHashtagSquareRegular, IconlyRegularBoldSalaryRegular, IconlyRegularBoldServersConnect7Regular, IconlyRegularBoldSidebarClose2Regular, IconlyRegularBoldSidebarCloseRegular, IconlyRegularBoldThumbLikeRegular, IconlyRegularBoldUserCheckedRegular, IconlyRegularBoldUserSearchRegular, IconlyRegularBoldVectoruserCheckedRegular, IconlyRegularLighExternalLinkRegular, Image2Bold, Image3Regular, ImageAi2Regular, ImageAiRegular, ImageBold, ImageDownRegular, ImageRecognitionRegular, ImageRegular, ImageUp2Regular, ImageUpRegular, InboxRegular, IndentRegular, InfoCircle2Bold, InfoCircleBold, InfoCircleRegular, InfoSquareBold, InfoSquareRegular, InformationRegular, InstagramBold, InsuranceHand2Regular, InsuranceHandRegular, ItalicRegular, JourneyRegular, LeavesRegular, LessRegular, LineChartUpwardRegular, Link2Regular, LinkRegular, LinkedinBold, ListCheckRegular, Loading2Regular, LoadingCircle3Regular, LoadingRegular, LocationBold, LocationRegular, LockBold, LockRegular, LoginBold, LoginRegular, LoginUserRegular, LogoutBold, LogoutRegular, MacNotebookBold, MacNotebookRegular, MagicWandRegular, MapCloseBold, MapCloseRegular, MapRegular, Marker2Regular, MarkerRegular, MedalRegular, MediumBold, Menu2Regular, MenuCloseLeft2Regular, MenuCloseLeftRegular, MenuRegular, MenuhorizontalRegular, MessageBold, MessageRegular, MessagesBold, MicrosoftExelRegular, MicrosoftWordRegular, Minus1Regular, Minus2Bold, Minus2Regular, Minus2VectorRegular, Minus3Bold, Minus4Regular, Monitor2Regular, MoonBold, MoonvectorRegular, MoreCircleBold, MoreCircleRegular, MoreSquareBold, MoreSquareRegular, MoveRegular, MovieTime2Regular, MovieTimeRegular, NewNotificationRegular, NoteLockRegular, NotificationBold, NotificationRegular, NumberedlistRegular, OfficechairRegular, OpenaiRegular, OrderedListRegular, OutdentRegular, PaintingPaletteRegular, PaperBold, PaperDownloadBold, PaperDownloadRegular, PaperFailBold, PaperFailRegular, PaperNegativeBold, PaperNegativeRegular, PaperPlus2Regular, PaperPlusBold, PaperPlusRegular, PaperRegular, PaperUploadBold, PaperUploadRegular, PasswordBold, PasswordRegular, PauseCircleRegular, Pen2Regular, PenRegular, PhotoRegular, PinMapRegular, PlaneCheckBold, PlaneCheckRegular, PlayBold, PlayRegular, Plus1Regular, Plus2Regular, Plus4Regular, PlusBold, PlusRegular, PrinterRegular, ProfileBold, ProfileRegular, QuestionMarkCircleRegular, QuestionMarkSquareRegular, QuestionsRegular, Refresh2Regular, RefreshRegular, RemoveCircleBold, RemoveUserBold, RemoveUserRegular, ReverseLeftRegular, ReverseRightRegular, RightUpSquareRegular, RoadmapRegular, RocketRegular, RotationRegular, SadDateRegular, SaveRegular, ScaleRegular, ScanBold, ScanRegular, ScreenSizeRegular, SearchBold, SearchDiscountPercentRegular, SearchRegular, Send2Bold, SendBold, SendRegular, SettingBold, SettingRegular, SettingSquareRegular, SettingToolCircleRegular, Share2Regular, ShareRegular, ShieldDoneBold, ShieldDoneRegular, ShieldFailBold, ShieldFailRegular, ShowBold, ShowRegular, Sign1Regular, Sign2Regular, SlightlyFrowningBold, SmilingAddRegular, SmilingRegular, SortDownRegular, SortRegular, SoundWaveRegular, SpeakerMegaphone5Bold, SpeakerMegaphone5Regular, SpeakerMegaphoneRegular, SquareBold, StarBold, StarRegular, StarRemoveRegular, StarsCircleRegular, StickerAddBold, StopCircleRegular, StopwatchPlayBold, StopwatchSpeedRegular, StopwatchStopBold, StrikethroughRegular, SuccessDocumentsRegular, Sun2Bold, SunBold, SunRegular, SunvectorRegular, SwapBold, SwapHorizontalRegular, SwapRegular, SwitchListRegular, SymbolpngRegular, TableRegular, TagBold, TagRegular, TargetRegular, TextAlignCenterRegular, TextAlignLeftRegular, TextAlignRightRegular, TextColorRegular, TextFieldRegular, ThumbDislikeBold, ThumbDislikeRegular, ThumbLikeBold, TickSquareBold, TickSquareRegular, TicketBold, TicketRegular, TicketStarBold, TicketStarRegular, TiktokBold, TimeCircle2Bold, TimeCircleBold, TimeCircleRegular, TimeSquareBold, TimeSquareRegular, TimerPlusBold, TimerRegular, TiredBold, TiredRegular, ToggleRegular, ToolsRegular, TranslateLanguageBold, TranslateLanguageRegular, TranslateVectorRegular, Triangle2Regular, TwitterBold, TypeRegular, UnderlineRegular, UniversityRegular, UnlockBold, UnlockRegular, UnorderedListRegular, UpLineRegular, UpSquareLineRegular, UpdateRight2Regular, UpdateRightRegular, UploadBold, UploadRegular, UserBadgeBold, UserBadgeRegular, UserBoardRegular, UserCheckedBold, UserContactRegular, UserDeleteBold, UserInformation2Regular, UserInformationRegular, UserLockRegular, UserSearchBold, UsersGroupRegular, UsersRegular, VectorcalendarRegular, VectorhomeRegular, VectorinfoSquareRegular, VectorprofileRegular, VectorsettingRegular, VectorstarRegular, VectorworkRegular, VerticalBarChart2Regular, VideoBold, VideoRegular, Voice2Bold, Voice3Regular, VoiceBold, VoiceRegular, VolumeDownBold, VolumeDownRegular, VolumeOffBold, VolumeOffRegular, VolumeUpBold, VolumeUpRegular, WalletBold, WalletRegular, WebPage2Regular, WebPage4Regular, WebPageEdit2Regular, WebPageEditRegular, Weight1Regular, WhatsappRegular, Wheelchair2Regular, WheelchairRegular, WorkBold, WorldRegular, WrenchRegular, XcomBold, XcomRegular, YoutubeBold, ZoomInRegular, ZoomOutRegular, iconNames, iconNamesByVariant, icons, iconsByVariant };
|