@fichap/icons-react 1.0.3 → 1.0.5

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 CHANGED
@@ -26,18 +26,23 @@ export function Demo() {
26
26
  return (
27
27
  <>
28
28
  <ArrowLeftIcon size={24} className='text-white' />
29
- <Icon
30
- name='arrowLeft'
31
- variant='regular'
32
- size={24}
33
- className='text-red-500'
34
- />
29
+ <Icon name='arrowLeft' size={24} className='text-red-500' />
30
+ <Icon name='arrowLeft' variant='bold' size={24} />
35
31
  <p>Regular icons: {iconNamesByVariant.regular.length}</p>
36
32
  </>
37
33
  );
38
34
  }
39
35
  ```
40
36
 
37
+ ## Recommended usage
38
+
39
+ - For app consumers, prefer the `Icon` wrapper plus `name` when you want a single stable import.
40
+ - `variant` is optional and defaults to `regular`.
41
+ - For bold icons, keep the same canonical `name` and pass `variant="bold"`.
42
+ - Do not append `Bold` to the `name` prop unless that exact canonical icon name exists in the catalog.
43
+ - Use direct icon imports when you explicitly want component-level imports, custom wrappers, or tighter control over what is imported.
44
+ - Both styles share the same `IconSvgProps` contract.
45
+
41
46
  ## API
42
47
 
43
48
  - Each generated icon component accepts `IconSvgProps`:
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
  }
@@ -64,6 +68,8 @@ declare const UsersRegular: ({ size, width, height, className, ...props }: IconS
64
68
 
65
69
  declare const UsersGroupRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
66
70
 
71
+ declare const UserRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
72
+
67
73
  declare const UserLockRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
68
74
 
69
75
  declare const UserInformationRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -74,6 +80,8 @@ declare const UserContactRegular: ({ size, width, height, className, ...props }:
74
80
 
75
81
  declare const UserBoardRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
76
82
 
83
+ declare const UserBadgeRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
84
+
77
85
  declare const UploadRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
78
86
 
79
87
  declare const UpdateRightRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -130,6 +138,8 @@ declare const TextAlignLeftRegular: ({ size, width, height, className, ...props
130
138
 
131
139
  declare const TextAlignCenterRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
132
140
 
141
+ declare const TargetRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
142
+
133
143
  declare const TagRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
134
144
 
135
145
  declare const TableRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -212,6 +222,8 @@ declare const SadDateRegular: ({ size, width, height, className, ...props }: Ico
212
222
 
213
223
  declare const RotationRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
214
224
 
225
+ declare const RocketRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
226
+
215
227
  declare const RoadmapRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
216
228
 
217
229
  declare const RightUpSquareRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -228,6 +240,8 @@ declare const Refresh2Regular: ({ size, width, height, className, ...props }: Ic
228
240
 
229
241
  declare const QuestionsRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
230
242
 
243
+ declare const QuestionMarkSquareRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
244
+
231
245
  declare const QuestionMarkCircleRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
232
246
 
233
247
  declare const ProfileRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -328,6 +342,8 @@ declare const MenuCloseLeft2Regular: ({ size, width, height, className, ...props
328
342
 
329
343
  declare const Menu2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
330
344
 
345
+ declare const MedalRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
346
+
331
347
  declare const MarkerRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
332
348
 
333
349
  declare const Marker2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -392,6 +408,8 @@ declare const ImageUpRegular: ({ size, width, height, className, ...props }: Ico
392
408
 
393
409
  declare const ImageUp2Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
394
410
 
411
+ declare const ImageRecognitionRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
412
+
395
413
  declare const ImageDownRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
396
414
 
397
415
  declare const ImageAiRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -546,6 +564,10 @@ declare const DownSquareLineRegular: ({ size, width, height, className, ...props
546
564
 
547
565
  declare const DownLineRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
548
566
 
567
+ declare const DoubleHeart3Regular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
568
+
569
+ declare const DollarDocumentRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
570
+
549
571
  declare const DollarAddRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
550
572
 
551
573
  declare const DocumentRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -616,6 +638,8 @@ declare const ClockAddPlusRegular: ({ size, width, height, className, ...props }
616
638
 
617
639
  declare const CircleMessage2UpRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
618
640
 
641
+ declare const CircleMessage2TextRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
642
+
619
643
  declare const CircleGridInterfaceRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
620
644
 
621
645
  declare const ChevronExpandVericalRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -778,6 +802,8 @@ declare const AlignLeftRegular: ({ size, width, height, className, ...props }: I
778
802
 
779
803
  declare const AlarmSpeakerRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
780
804
 
805
+ declare const AiBrainLikeRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
806
+
781
807
  declare const AiBrainIdeaRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
782
808
 
783
809
  declare const AddUserRegular: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -926,6 +952,8 @@ declare const Minus3Bold: ({ size, width, height, className, ...props }: IconSvg
926
952
 
927
953
  declare const Minus2Bold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
928
954
 
955
+ declare const MessagesBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
956
+
929
957
  declare const MessageBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
930
958
 
931
959
  declare const MediumBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1002,6 +1030,10 @@ declare const DollarCircle3Bold: ({ size, width, height, className, ...props }:
1002
1030
 
1003
1031
  declare const DocumentBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1004
1032
 
1033
+ declare const DocumentPin2LinesBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1034
+
1035
+ declare const DocumentPencilBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1036
+
1005
1037
  declare const DocumentPdfBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1006
1038
 
1007
1039
  declare const DocumentBadgePlusBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1042,6 +1074,10 @@ declare const ChartBold: ({ size, width, height, className, ...props }: IconSvgP
1042
1074
 
1043
1075
  declare const CategoryBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1044
1076
 
1077
+ declare const CaptchaQuestionMarkSquareBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1078
+
1079
+ declare const CaptchaDiamondStarBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1080
+
1045
1081
  declare const CameraBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1046
1082
 
1047
1083
  declare const CallingBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1122,13 +1158,18 @@ declare const Icon3UserBold: ({ size, width, height, className, ...props }: Icon
1122
1158
 
1123
1159
  declare const Icon2UserBold: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1124
1160
 
1161
+ /** Base component type shared by generated icons. */
1125
1162
  type IconComponent = (props: IconSvgProps) => React.ReactElement;
1163
+ /** Supported visual variants for Fichap icons. */
1126
1164
  type IconVariant = 'regular' | 'bold';
1165
+ /** Icon names grouped by variant. */
1127
1166
  declare const iconNamesByVariant: {
1128
- readonly regular: readonly ["accident", "activity", "activity2", "addUser", "aiBrainIdea", "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", "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", "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", "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", "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", "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", "starsCircle", "stopCircle", "stopwatchSpeed", "strikethrough", "successDocuments", "sun", "sunvector", "swap", "swapHorizontal", "switchList", "symbolpng", "table", "tag", "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", "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"];
1129
- 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"];
1167
+ 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", "dollarDocument", "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", "user", "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"];
1168
+ 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"];
1130
1169
  };
1131
- declare const iconNames: readonly ["accident", "activity", "activity2", "addUser", "aiBrainIdea", "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", "carCrash", "catSquare", "categories", "category", "centerLayout", "chart", "chart3BarRefresh", "chart3BarTime", "chartAnalysish", "chartInformation", "chat", "chatQuote", "checkCircle", "checkmark", "chevronExpandVerical", "circleGridInterface", "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", "documentPin", "documentRemove", "documentStar", "documentVerified", "dollarAdd", "dollarCircle3", "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", "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", "medium", "menu", "menu2", "menuCloseLeft", "menuCloseLeft2", "menuhorizontal", "message", "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", "questions", "refresh", "refresh2", "removeCircle", "removeUser", "reverseLeft", "reverseRight", "rightUpSquare", "roadmap", "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", "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"];
1170
+ /** Flat list of all valid icon names accepted by the Icon wrapper. */
1171
+ 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", "dollarDocument", "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", "user", "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"];
1172
+ /** All valid icon names accepted by the Icon wrapper. */
1132
1173
  type IconName = (typeof iconNames)[number];
1133
1174
  declare const iconsByVariant: {
1134
1175
  readonly regular: {
@@ -1162,11 +1203,13 @@ declare const iconsByVariant: {
1162
1203
  readonly vectorcalendar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1163
1204
  readonly users: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1164
1205
  readonly usersGroup: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1206
+ readonly user: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1165
1207
  readonly userLock: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1166
1208
  readonly userInformation: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1167
1209
  readonly userInformation2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1168
1210
  readonly userContact: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1169
1211
  readonly userBoard: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1212
+ readonly userBadge: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1170
1213
  readonly upload: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1171
1214
  readonly updateRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1172
1215
  readonly updateRight2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1195,6 +1238,7 @@ declare const iconsByVariant: {
1195
1238
  readonly textAlignRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1196
1239
  readonly textAlignLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1197
1240
  readonly textAlignCenter: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1241
+ readonly target: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1198
1242
  readonly tag: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1199
1243
  readonly table: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1200
1244
  readonly symbolpng: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1236,6 +1280,7 @@ declare const iconsByVariant: {
1236
1280
  readonly save: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1237
1281
  readonly sadDate: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1238
1282
  readonly rotation: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1283
+ readonly rocket: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1239
1284
  readonly roadmap: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1240
1285
  readonly rightUpSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1241
1286
  readonly reverseRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1244,6 +1289,7 @@ declare const iconsByVariant: {
1244
1289
  readonly refresh: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1245
1290
  readonly refresh2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1246
1291
  readonly questions: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1292
+ readonly questionMarkSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1247
1293
  readonly questionMarkCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1248
1294
  readonly profile: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1249
1295
  readonly printer: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1294,6 +1340,7 @@ declare const iconsByVariant: {
1294
1340
  readonly menuCloseLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1295
1341
  readonly menuCloseLeft2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1296
1342
  readonly menu2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1343
+ readonly medal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1297
1344
  readonly marker: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1298
1345
  readonly marker2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1299
1346
  readonly map: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1326,6 +1373,7 @@ declare const iconsByVariant: {
1326
1373
  readonly image: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1327
1374
  readonly imageUp: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1328
1375
  readonly imageUp2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1376
+ readonly imageRecognition: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1329
1377
  readonly imageDown: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1330
1378
  readonly imageAi: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1331
1379
  readonly imageAi2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1403,6 +1451,8 @@ declare const iconsByVariant: {
1403
1451
  readonly download: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1404
1452
  readonly downSquareLine: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1405
1453
  readonly downLine: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1454
+ readonly doubleHeart3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1455
+ readonly dollarDocument: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1406
1456
  readonly dollarAdd: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1407
1457
  readonly document: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1408
1458
  readonly documentVerified: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1438,6 +1488,7 @@ declare const iconsByVariant: {
1438
1488
  readonly clockClose: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1439
1489
  readonly clockAddPlus: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1440
1490
  readonly circleMessage2Up: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1491
+ readonly circleMessage2Text: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1441
1492
  readonly circleGridInterface: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1442
1493
  readonly chevronExpandVerical: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1443
1494
  readonly checkmark: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1519,6 +1570,7 @@ declare const iconsByVariant: {
1519
1570
  readonly anthropic: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1520
1571
  readonly alignLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1521
1572
  readonly alarmSpeaker: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1573
+ readonly aiBrainLike: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1522
1574
  readonly aiBrainIdea: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1523
1575
  readonly addUser: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1524
1576
  readonly activity: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1595,6 +1647,7 @@ declare const iconsByVariant: {
1595
1647
  readonly moon: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1596
1648
  readonly minus3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1597
1649
  readonly minus2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1650
+ readonly messages: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1598
1651
  readonly message: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1599
1652
  readonly medium: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1600
1653
  readonly mapClose: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1633,6 +1686,8 @@ declare const iconsByVariant: {
1633
1686
  readonly download: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1634
1687
  readonly dollarCircle3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1635
1688
  readonly document: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1689
+ readonly documentPin2Lines: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1690
+ readonly documentPencil: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1636
1691
  readonly documentPdf: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1637
1692
  readonly documentBadgePlus: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1638
1693
  readonly discovery: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1653,6 +1708,8 @@ declare const iconsByVariant: {
1653
1708
  readonly chatQuote: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1654
1709
  readonly chart: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1655
1710
  readonly category: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1711
+ readonly captchaQuestionMarkSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1712
+ readonly captchaDiamondStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1656
1713
  readonly camera: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1657
1714
  readonly calling: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1658
1715
  readonly call: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1763,6 +1820,7 @@ declare const icons: {
1763
1820
  readonly moon: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1764
1821
  readonly minus3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1765
1822
  readonly minus2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1823
+ readonly messages: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1766
1824
  readonly message: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1767
1825
  readonly medium: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1768
1826
  readonly mapClose: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1801,6 +1859,8 @@ declare const icons: {
1801
1859
  readonly download: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1802
1860
  readonly dollarCircle3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1803
1861
  readonly document: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1862
+ readonly documentPin2Lines: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1863
+ readonly documentPencil: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1804
1864
  readonly documentPdf: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1805
1865
  readonly documentBadgePlus: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1806
1866
  readonly discovery: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1821,6 +1881,8 @@ declare const icons: {
1821
1881
  readonly chatQuote: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1822
1882
  readonly chart: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1823
1883
  readonly category: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1884
+ readonly captchaQuestionMarkSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1885
+ readonly captchaDiamondStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1824
1886
  readonly camera: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1825
1887
  readonly calling: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1826
1888
  readonly call: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1884,6 +1946,7 @@ declare const icons: {
1884
1946
  readonly vectorcalendar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1885
1947
  readonly users: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1886
1948
  readonly usersGroup: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1949
+ readonly user: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1887
1950
  readonly userLock: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1888
1951
  readonly userInformation: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1889
1952
  readonly userInformation2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1907,6 +1970,7 @@ declare const icons: {
1907
1970
  readonly textAlignRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1908
1971
  readonly textAlignLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1909
1972
  readonly textAlignCenter: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1973
+ readonly target: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1910
1974
  readonly table: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1911
1975
  readonly symbolpng: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1912
1976
  readonly switchList: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1936,6 +2000,7 @@ declare const icons: {
1936
2000
  readonly save: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1937
2001
  readonly sadDate: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1938
2002
  readonly rotation: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2003
+ readonly rocket: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1939
2004
  readonly roadmap: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1940
2005
  readonly rightUpSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1941
2006
  readonly reverseRight: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1943,6 +2008,7 @@ declare const icons: {
1943
2008
  readonly refresh: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1944
2009
  readonly refresh2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1945
2010
  readonly questions: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2011
+ readonly questionMarkSquare: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1946
2012
  readonly questionMarkCircle: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1947
2013
  readonly printer: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1948
2014
  readonly plus4: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -1977,6 +2043,7 @@ declare const icons: {
1977
2043
  readonly menuCloseLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1978
2044
  readonly menuCloseLeft2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1979
2045
  readonly menu2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2046
+ readonly medal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1980
2047
  readonly marker: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1981
2048
  readonly marker2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
1982
2049
  readonly map: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -2000,6 +2067,7 @@ declare const icons: {
2000
2067
  readonly inbox: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2001
2068
  readonly imageUp: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2002
2069
  readonly imageUp2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2070
+ readonly imageRecognition: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2003
2071
  readonly imageDown: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2004
2072
  readonly imageAi: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2005
2073
  readonly imageAi2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -2064,6 +2132,8 @@ declare const icons: {
2064
2132
  readonly draghorizontal: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2065
2133
  readonly downSquareLine: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2066
2134
  readonly downLine: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2135
+ readonly doubleHeart3: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2136
+ readonly dollarDocument: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2067
2137
  readonly dollarAdd: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2068
2138
  readonly documentVerified: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2069
2139
  readonly documentStar: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -2091,6 +2161,7 @@ declare const icons: {
2091
2161
  readonly clockFire: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2092
2162
  readonly clockClose: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2093
2163
  readonly circleMessage2Up: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2164
+ readonly circleMessage2Text: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2094
2165
  readonly circleGridInterface: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2095
2166
  readonly chevronExpandVerical: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2096
2167
  readonly checkmark: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
@@ -2133,15 +2204,21 @@ declare const icons: {
2133
2204
  readonly anthropic: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2134
2205
  readonly alignLeft: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2135
2206
  readonly alarmSpeaker: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2207
+ readonly aiBrainLike: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2136
2208
  readonly aiBrainIdea: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2137
2209
  readonly activity2: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2138
2210
  readonly accident: ({ size, width, height, className, ...props }: IconSvgProps) => React.JSX.Element;
2139
2211
  };
2140
2212
 
2213
+ /** Props accepted by the Icon wrapper component. */
2141
2214
  type FichapIconProps = IconSvgProps & {
2142
2215
  name: IconName;
2216
+ /** Defaults to 'regular' when omitted. */
2143
2217
  variant?: IconVariant;
2144
2218
  };
2219
+ /**
2220
+ * Resolves a generated icon by name and variant while preserving the shared SVG props contract.
2221
+ */
2145
2222
  declare function Icon({ name, variant, ...props }: FichapIconProps): React.JSX.Element | null;
2146
2223
 
2147
- export { AccidentRegular, Activity2Regular, ActivityBold, ActivityRegular, AddUserBold, AddUserRegular, AiBrainIdeaRegular, 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, CarCrashRegular, CatSquareRegular, CategoriesRegular, CategoryBold, CategoryRegular, CenterLayoutRegular, Chart3BarRefreshRegular, Chart3BarTimeRegular, ChartAnalysishRegular, ChartBold, ChartInformationRegular, ChartRegular, ChatBold, ChatQuoteBold, ChatQuoteRegular, ChatRegular, CheckCircleBold, CheckCircleRegular, CheckmarkRegular, ChevronExpandVericalRegular, CircleGridInterfaceRegular, 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, DocumentPinRegular, DocumentRegular, DocumentRemoveRegular, DocumentStarRegular, DocumentVerifiedRegular, 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, 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, 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, MediumBold, Menu2Regular, MenuCloseLeft2Regular, MenuCloseLeftRegular, MenuRegular, MenuhorizontalRegular, MessageBold, MessageRegular, 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, 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, StarsCircleRegular, StickerAddBold, StopCircleRegular, StopwatchPlayBold, StopwatchSpeedRegular, StopwatchStopBold, StrikethroughRegular, SuccessDocumentsRegular, Sun2Bold, SunBold, SunRegular, SunvectorRegular, SwapBold, SwapHorizontalRegular, SwapRegular, SwitchListRegular, SymbolpngRegular, 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, Triangle2Regular, 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, WorldRegular, WrenchRegular, XcomBold, XcomRegular, YoutubeBold, ZoomInRegular, ZoomOutRegular, iconNames, iconNamesByVariant, icons, iconsByVariant };
2224
+ 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, DollarDocumentRegular, 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, UserRegular, 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 };