@heartpace/icons 0.1.12 → 0.1.14

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.
@@ -267,6 +267,11 @@
267
267
  "relativePath": "Bold/Eye.svg",
268
268
  "fileName": "Eye.svg"
269
269
  },
270
+ {
271
+ "componentName": "BoldFeatures",
272
+ "relativePath": "Bold/Features.svg",
273
+ "fileName": "Features.svg"
274
+ },
270
275
  {
271
276
  "componentName": "BoldFilter",
272
277
  "relativePath": "Bold/Filter.svg",
@@ -317,6 +322,11 @@
317
322
  "relativePath": "Bold/Instruction.svg",
318
323
  "fileName": "Instruction.svg"
319
324
  },
325
+ {
326
+ "componentName": "BoldIntegrations",
327
+ "relativePath": "Bold/Integrations.svg",
328
+ "fileName": "Integrations.svg"
329
+ },
320
330
  {
321
331
  "componentName": "BoldIntercom",
322
332
  "relativePath": "Bold/Intercom.svg",
@@ -372,6 +382,11 @@
372
382
  "relativePath": "Bold/Open in sidebar.svg",
373
383
  "fileName": "Open in sidebar.svg"
374
384
  },
385
+ {
386
+ "componentName": "BoldOpen",
387
+ "relativePath": "Bold/Open.svg",
388
+ "fileName": "Open.svg"
389
+ },
375
390
  {
376
391
  "componentName": "BoldPlace",
377
392
  "relativePath": "Bold/Place.svg",
@@ -1497,11 +1512,26 @@
1497
1512
  }
1498
1513
  ],
1499
1514
  "Statuses": [
1515
+ {
1516
+ "componentName": "StatusesCheckFilled",
1517
+ "relativePath": "Statuses/check filled.svg",
1518
+ "fileName": "check filled.svg"
1519
+ },
1500
1520
  {
1501
1521
  "componentName": "StatusesCross",
1502
1522
  "relativePath": "Statuses/cross.svg",
1503
1523
  "fileName": "cross.svg"
1504
1524
  },
1525
+ {
1526
+ "componentName": "StatusesDangerFilled",
1527
+ "relativePath": "Statuses/danger filled.svg",
1528
+ "fileName": "danger filled.svg"
1529
+ },
1530
+ {
1531
+ "componentName": "StatusesDangerOutline",
1532
+ "relativePath": "Statuses/danger outline.svg",
1533
+ "fileName": "danger outline.svg"
1534
+ },
1505
1535
  {
1506
1536
  "componentName": "StatusesError",
1507
1537
  "relativePath": "Statuses/error.svg",
@@ -1517,6 +1547,16 @@
1517
1547
  "relativePath": "Statuses/success.svg",
1518
1548
  "fileName": "success.svg"
1519
1549
  },
1550
+ {
1551
+ "componentName": "StatusesWarningFilled",
1552
+ "relativePath": "Statuses/warning filled.svg",
1553
+ "fileName": "warning filled.svg"
1554
+ },
1555
+ {
1556
+ "componentName": "StatusesWarningOutline",
1557
+ "relativePath": "Statuses/warning outline.svg",
1558
+ "fileName": "warning outline.svg"
1559
+ },
1520
1560
  {
1521
1561
  "componentName": "StatusesWarning",
1522
1562
  "relativePath": "Statuses/warning.svg",
package/dist/index.d.mts CHANGED
@@ -212,6 +212,10 @@ interface BoldEyeProps extends React.SVGProps<SVGSVGElement> {
212
212
  }
213
213
  declare const BoldEye: (props: BoldEyeProps) => React.JSX.Element;
214
214
 
215
+ interface BoldFeaturesProps extends React.SVGProps<SVGSVGElement> {
216
+ }
217
+ declare const BoldFeatures: (props: BoldFeaturesProps) => React.JSX.Element;
218
+
215
219
  interface BoldFilterProps extends React.SVGProps<SVGSVGElement> {
216
220
  }
217
221
  declare const BoldFilter: (props: BoldFilterProps) => React.JSX.Element;
@@ -252,6 +256,10 @@ interface BoldInstructionProps extends React.SVGProps<SVGSVGElement> {
252
256
  }
253
257
  declare const BoldInstruction: (props: BoldInstructionProps) => React.JSX.Element;
254
258
 
259
+ interface BoldIntegrationsProps extends React.SVGProps<SVGSVGElement> {
260
+ }
261
+ declare const BoldIntegrations: (props: BoldIntegrationsProps) => React.JSX.Element;
262
+
255
263
  interface BoldIntercomProps extends React.SVGProps<SVGSVGElement> {
256
264
  }
257
265
  declare const BoldIntercom: (props: BoldIntercomProps) => React.JSX.Element;
@@ -296,6 +304,10 @@ interface BoldOpenInSidebarProps extends React.SVGProps<SVGSVGElement> {
296
304
  }
297
305
  declare const BoldOpenInSidebar: (props: BoldOpenInSidebarProps) => React.JSX.Element;
298
306
 
307
+ interface BoldOpenProps extends React.SVGProps<SVGSVGElement> {
308
+ }
309
+ declare const BoldOpen: (props: BoldOpenProps) => React.JSX.Element;
310
+
299
311
  interface BoldPlaceProps extends React.SVGProps<SVGSVGElement> {
300
312
  }
301
313
  declare const BoldPlace: (props: BoldPlaceProps) => React.JSX.Element;
@@ -1188,10 +1200,22 @@ interface SrTypeSalaryProps extends React.SVGProps<SVGSVGElement> {
1188
1200
  }
1189
1201
  declare const SrTypeSalary: (props: SrTypeSalaryProps) => React.JSX.Element;
1190
1202
 
1203
+ interface StatusesCheckFilledProps extends React.SVGProps<SVGSVGElement> {
1204
+ }
1205
+ declare const StatusesCheckFilled: (props: StatusesCheckFilledProps) => React.JSX.Element;
1206
+
1191
1207
  interface StatusesCrossProps extends React.SVGProps<SVGSVGElement> {
1192
1208
  }
1193
1209
  declare const StatusesCross: (props: StatusesCrossProps) => React.JSX.Element;
1194
1210
 
1211
+ interface StatusesDangerFilledProps extends React.SVGProps<SVGSVGElement> {
1212
+ }
1213
+ declare const StatusesDangerFilled: (props: StatusesDangerFilledProps) => React.JSX.Element;
1214
+
1215
+ interface StatusesDangerOutlineProps extends React.SVGProps<SVGSVGElement> {
1216
+ }
1217
+ declare const StatusesDangerOutline: (props: StatusesDangerOutlineProps) => React.JSX.Element;
1218
+
1195
1219
  interface StatusesErrorProps extends React.SVGProps<SVGSVGElement> {
1196
1220
  }
1197
1221
  declare const StatusesError: (props: StatusesErrorProps) => React.JSX.Element;
@@ -1204,8 +1228,16 @@ interface StatusesSuccessProps extends React.SVGProps<SVGSVGElement> {
1204
1228
  }
1205
1229
  declare const StatusesSuccess: (props: StatusesSuccessProps) => React.JSX.Element;
1206
1230
 
1231
+ interface StatusesWarningFilledProps extends React.SVGProps<SVGSVGElement> {
1232
+ }
1233
+ declare const StatusesWarningFilled: (props: StatusesWarningFilledProps) => React.JSX.Element;
1234
+
1235
+ interface StatusesWarningOutlineProps extends React.SVGProps<SVGSVGElement> {
1236
+ }
1237
+ declare const StatusesWarningOutline: (props: StatusesWarningOutlineProps) => React.JSX.Element;
1238
+
1207
1239
  interface StatusesWarningProps extends React.SVGProps<SVGSVGElement> {
1208
1240
  }
1209
1241
  declare const StatusesWarning: (props: StatusesWarningProps) => React.JSX.Element;
1210
1242
 
1211
- export { ArrowArrow2, ArrowArrow3, ArrowArrowDown, ArrowArrowLeft, ArrowArrowRight, ArrowArrowUp, ArrowChevronDown, ArrowChevronLeft, ArrowChevronRight, ArrowChevronUp, ArrowCloseMenu, ArrowDown, ArrowOpenInNewTab, ArrowOpenMenu, ArrowRedo, ArrowRefresh, ArrowRefresh2, ArrowRepeat, ArrowResetTimer, ArrowRotateLeft, ArrowRotateRight, ArrowSwap, ArrowSwap2, ArrowTriangleDown, ArrowTriangleLeft, ArrowTriangleRight, ArrowTriangleUp, ArrowUndo, ArrowUp, BoldAdd, BoldAddUser, BoldAdvice, BoldAiAssistant, BoldArchive, BoldBoard, BoldBonus, BoldCalendar, BoldChair, BoldChart, BoldColour, BoldColumn, BoldComment, BoldCopy, BoldDelete, BoldDetails, BoldDislike, BoldDot, BoldDragDrop, BoldEdit, BoldEducation, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldHiring, BoldImage, BoldInstruction, BoldInstruction2, BoldIntercom, BoldKebab, BoldLayer, BoldLike, BoldLink, BoldList, BoldLoader, BoldLocation, BoldLock, BoldLoseUser, BoldMap, BoldNotification, BoldOpenInSidebar, BoldPaintbucket, BoldPlace, BoldResend, BoldRow, BoldSend, BoldSettings, BoldStar, BoldTile, BoldTime, BoldTreemap, BoldUser, BoldUsers, BoldWallet, BoldWork, FlagsAustria, FlagsBelgium, FlagsBulgaria, FlagsCroatia, FlagsCyprus, FlagsCzechia, FlagsDenmark, FlagsEstonia, FlagsEu, FlagsFinland, FlagsFrance, FlagsGermany, FlagsGreece, FlagsHungary, FlagsIceland, FlagsIreland, FlagsItaly, FlagsLatvia, FlagsLithuania, FlagsLuxembourg, FlagsMalta, FlagsNetherlands, FlagsNorway, FlagsPoland, FlagsPortugal, FlagsRomaniaChad, FlagsSlovakia, FlagsSlovenia, FlagsSpain, FlagsSweden, FlagsSwitzerland, FlagsUk, FlagsUsa, Light2User, Light3User, LightActivity, LightAdd, LightAddUser, LightAlignment, LightArchive, LightAttach, LightAutomation, LightBank, LightBarChart, LightBarChart2, LightBookmark, LightBriefcase, LightBuilding, LightBuy, LightCalendar, LightCamera, LightCandidateAnonymous, LightCategory, LightChair, LightChart, LightChat, LightClock, LightCloseSquare, LightColumns, LightCompetence, LightCopy, LightCreateNewItem, LightCross, LightCustomField, LightDeadlineDate, LightDelete, LightDelete1, LightDensity, LightDiscount, LightDiscovery, LightDocument, LightDownload, LightEdit, LightEditSquare, LightEducation, LightExport, LightExport1, LightFiles, LightFilter, LightFilter3, LightFlag, LightFlag1, LightFolder, LightFolder1, LightFullscreen, LightFullscreenExit, LightGalleryAdd, LightGalleryEdit, LightGift, LightGlobalSettings, LightGraph, LightHeart, LightHelpCenter, LightHide, LightHome, LightHrm, LightIceContacts, LightIdea, LightImage, LightImport, LightInfo, LightIntegrations, LightIntercom, LightKey, LightLearningHubRegister, LightLink, LightLink2, LightList, LightLocation, LightLock, LightLogin, LightLogout, LightMagicpen, LightMessage, LightMessage1, LightMessageAdd, LightMoreCircle, LightMoreSquare, LightNewChat, LightNotification, LightOtherSettings, LightPaper, LightPaperDownload, LightPaperFail, LightPaperNegative, LightPaperPlus, LightPaperUpload, LightPassword, LightPercentage, LightPieChart, LightPlus, LightPoBox, LightPrinter, LightProfile, LightRemoveArchive, LightSaveFavourite, LightSaveRemove, LightScan, LightScheduleTalk, LightSearch, LightSend, LightSetting, LightSetting2, LightShieldDone, LightShieldFail, LightShow, LightShuffle, LightSignpost, LightSms, LightStar, LightStrategy, LightSuccess, LightSun, LightTarget, LightTasks, LightTick, LightTimeCircle, LightTimerPause, LightTimerReset, LightUnlock, LightUpload, LightUser, LightUser2, LightVideo, LightWallet, LightWarning, LightWebhooks, LightWebsite, LightWork, MenuAlingment, MenuBurgerMenu, MenuCompetence, MenuDashboard, MenuDataSource, MenuDocuments, MenuEqualPay, MenuEsign, MenuEvaluation, MenuIntegrations, MenuIntercom, MenuOkr, MenuOldDocuments, MenuOnboarding, MenuOrganization, MenuPace, MenuPeopleAnalytics, MenuProfile, MenuPulse, MenuRecruiter, MenuReports, MenuSalaryReview, MenuSms, MenuSurvey, MenuTalks, MenuWorkforce, SrTypeBenefit, SrTypeBonus, SrTypeCustomAtributes, SrTypeEmployment, SrTypeEmployment2, SrTypeExclusion, SrTypeIndexes, SrTypeKpi, SrTypePersonal, SrTypeSalary, StatusesCross, StatusesError, StatusesInfo, StatusesSuccess, StatusesWarning };
1243
+ export { ArrowArrow2, ArrowArrow3, ArrowArrowDown, ArrowArrowLeft, ArrowArrowRight, ArrowArrowUp, ArrowChevronDown, ArrowChevronLeft, ArrowChevronRight, ArrowChevronUp, ArrowCloseMenu, ArrowDown, ArrowOpenInNewTab, ArrowOpenMenu, ArrowRedo, ArrowRefresh, ArrowRefresh2, ArrowRepeat, ArrowResetTimer, ArrowRotateLeft, ArrowRotateRight, ArrowSwap, ArrowSwap2, ArrowTriangleDown, ArrowTriangleLeft, ArrowTriangleRight, ArrowTriangleUp, ArrowUndo, ArrowUp, BoldAdd, BoldAddUser, BoldAdvice, BoldAiAssistant, BoldArchive, BoldBoard, BoldBonus, BoldCalendar, BoldChair, BoldChart, BoldColour, BoldColumn, BoldComment, BoldCopy, BoldDelete, BoldDetails, BoldDislike, BoldDot, BoldDragDrop, BoldEdit, BoldEducation, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFeatures, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldHiring, BoldImage, BoldInstruction, BoldInstruction2, BoldIntegrations, BoldIntercom, BoldKebab, BoldLayer, BoldLike, BoldLink, BoldList, BoldLoader, BoldLocation, BoldLock, BoldLoseUser, BoldMap, BoldNotification, BoldOpen, BoldOpenInSidebar, BoldPaintbucket, BoldPlace, BoldResend, BoldRow, BoldSend, BoldSettings, BoldStar, BoldTile, BoldTime, BoldTreemap, BoldUser, BoldUsers, BoldWallet, BoldWork, FlagsAustria, FlagsBelgium, FlagsBulgaria, FlagsCroatia, FlagsCyprus, FlagsCzechia, FlagsDenmark, FlagsEstonia, FlagsEu, FlagsFinland, FlagsFrance, FlagsGermany, FlagsGreece, FlagsHungary, FlagsIceland, FlagsIreland, FlagsItaly, FlagsLatvia, FlagsLithuania, FlagsLuxembourg, FlagsMalta, FlagsNetherlands, FlagsNorway, FlagsPoland, FlagsPortugal, FlagsRomaniaChad, FlagsSlovakia, FlagsSlovenia, FlagsSpain, FlagsSweden, FlagsSwitzerland, FlagsUk, FlagsUsa, Light2User, Light3User, LightActivity, LightAdd, LightAddUser, LightAlignment, LightArchive, LightAttach, LightAutomation, LightBank, LightBarChart, LightBarChart2, LightBookmark, LightBriefcase, LightBuilding, LightBuy, LightCalendar, LightCamera, LightCandidateAnonymous, LightCategory, LightChair, LightChart, LightChat, LightClock, LightCloseSquare, LightColumns, LightCompetence, LightCopy, LightCreateNewItem, LightCross, LightCustomField, LightDeadlineDate, LightDelete, LightDelete1, LightDensity, LightDiscount, LightDiscovery, LightDocument, LightDownload, LightEdit, LightEditSquare, LightEducation, LightExport, LightExport1, LightFiles, LightFilter, LightFilter3, LightFlag, LightFlag1, LightFolder, LightFolder1, LightFullscreen, LightFullscreenExit, LightGalleryAdd, LightGalleryEdit, LightGift, LightGlobalSettings, LightGraph, LightHeart, LightHelpCenter, LightHide, LightHome, LightHrm, LightIceContacts, LightIdea, LightImage, LightImport, LightInfo, LightIntegrations, LightIntercom, LightKey, LightLearningHubRegister, LightLink, LightLink2, LightList, LightLocation, LightLock, LightLogin, LightLogout, LightMagicpen, LightMessage, LightMessage1, LightMessageAdd, LightMoreCircle, LightMoreSquare, LightNewChat, LightNotification, LightOtherSettings, LightPaper, LightPaperDownload, LightPaperFail, LightPaperNegative, LightPaperPlus, LightPaperUpload, LightPassword, LightPercentage, LightPieChart, LightPlus, LightPoBox, LightPrinter, LightProfile, LightRemoveArchive, LightSaveFavourite, LightSaveRemove, LightScan, LightScheduleTalk, LightSearch, LightSend, LightSetting, LightSetting2, LightShieldDone, LightShieldFail, LightShow, LightShuffle, LightSignpost, LightSms, LightStar, LightStrategy, LightSuccess, LightSun, LightTarget, LightTasks, LightTick, LightTimeCircle, LightTimerPause, LightTimerReset, LightUnlock, LightUpload, LightUser, LightUser2, LightVideo, LightWallet, LightWarning, LightWebhooks, LightWebsite, LightWork, MenuAlingment, MenuBurgerMenu, MenuCompetence, MenuDashboard, MenuDataSource, MenuDocuments, MenuEqualPay, MenuEsign, MenuEvaluation, MenuIntegrations, MenuIntercom, MenuOkr, MenuOldDocuments, MenuOnboarding, MenuOrganization, MenuPace, MenuPeopleAnalytics, MenuProfile, MenuPulse, MenuRecruiter, MenuReports, MenuSalaryReview, MenuSms, MenuSurvey, MenuTalks, MenuWorkforce, SrTypeBenefit, SrTypeBonus, SrTypeCustomAtributes, SrTypeEmployment, SrTypeEmployment2, SrTypeExclusion, SrTypeIndexes, SrTypeKpi, SrTypePersonal, SrTypeSalary, StatusesCheckFilled, StatusesCross, StatusesDangerFilled, StatusesDangerOutline, StatusesError, StatusesInfo, StatusesSuccess, StatusesWarning, StatusesWarningFilled, StatusesWarningOutline };
package/dist/index.d.ts CHANGED
@@ -212,6 +212,10 @@ interface BoldEyeProps extends React.SVGProps<SVGSVGElement> {
212
212
  }
213
213
  declare const BoldEye: (props: BoldEyeProps) => React.JSX.Element;
214
214
 
215
+ interface BoldFeaturesProps extends React.SVGProps<SVGSVGElement> {
216
+ }
217
+ declare const BoldFeatures: (props: BoldFeaturesProps) => React.JSX.Element;
218
+
215
219
  interface BoldFilterProps extends React.SVGProps<SVGSVGElement> {
216
220
  }
217
221
  declare const BoldFilter: (props: BoldFilterProps) => React.JSX.Element;
@@ -252,6 +256,10 @@ interface BoldInstructionProps extends React.SVGProps<SVGSVGElement> {
252
256
  }
253
257
  declare const BoldInstruction: (props: BoldInstructionProps) => React.JSX.Element;
254
258
 
259
+ interface BoldIntegrationsProps extends React.SVGProps<SVGSVGElement> {
260
+ }
261
+ declare const BoldIntegrations: (props: BoldIntegrationsProps) => React.JSX.Element;
262
+
255
263
  interface BoldIntercomProps extends React.SVGProps<SVGSVGElement> {
256
264
  }
257
265
  declare const BoldIntercom: (props: BoldIntercomProps) => React.JSX.Element;
@@ -296,6 +304,10 @@ interface BoldOpenInSidebarProps extends React.SVGProps<SVGSVGElement> {
296
304
  }
297
305
  declare const BoldOpenInSidebar: (props: BoldOpenInSidebarProps) => React.JSX.Element;
298
306
 
307
+ interface BoldOpenProps extends React.SVGProps<SVGSVGElement> {
308
+ }
309
+ declare const BoldOpen: (props: BoldOpenProps) => React.JSX.Element;
310
+
299
311
  interface BoldPlaceProps extends React.SVGProps<SVGSVGElement> {
300
312
  }
301
313
  declare const BoldPlace: (props: BoldPlaceProps) => React.JSX.Element;
@@ -1188,10 +1200,22 @@ interface SrTypeSalaryProps extends React.SVGProps<SVGSVGElement> {
1188
1200
  }
1189
1201
  declare const SrTypeSalary: (props: SrTypeSalaryProps) => React.JSX.Element;
1190
1202
 
1203
+ interface StatusesCheckFilledProps extends React.SVGProps<SVGSVGElement> {
1204
+ }
1205
+ declare const StatusesCheckFilled: (props: StatusesCheckFilledProps) => React.JSX.Element;
1206
+
1191
1207
  interface StatusesCrossProps extends React.SVGProps<SVGSVGElement> {
1192
1208
  }
1193
1209
  declare const StatusesCross: (props: StatusesCrossProps) => React.JSX.Element;
1194
1210
 
1211
+ interface StatusesDangerFilledProps extends React.SVGProps<SVGSVGElement> {
1212
+ }
1213
+ declare const StatusesDangerFilled: (props: StatusesDangerFilledProps) => React.JSX.Element;
1214
+
1215
+ interface StatusesDangerOutlineProps extends React.SVGProps<SVGSVGElement> {
1216
+ }
1217
+ declare const StatusesDangerOutline: (props: StatusesDangerOutlineProps) => React.JSX.Element;
1218
+
1195
1219
  interface StatusesErrorProps extends React.SVGProps<SVGSVGElement> {
1196
1220
  }
1197
1221
  declare const StatusesError: (props: StatusesErrorProps) => React.JSX.Element;
@@ -1204,8 +1228,16 @@ interface StatusesSuccessProps extends React.SVGProps<SVGSVGElement> {
1204
1228
  }
1205
1229
  declare const StatusesSuccess: (props: StatusesSuccessProps) => React.JSX.Element;
1206
1230
 
1231
+ interface StatusesWarningFilledProps extends React.SVGProps<SVGSVGElement> {
1232
+ }
1233
+ declare const StatusesWarningFilled: (props: StatusesWarningFilledProps) => React.JSX.Element;
1234
+
1235
+ interface StatusesWarningOutlineProps extends React.SVGProps<SVGSVGElement> {
1236
+ }
1237
+ declare const StatusesWarningOutline: (props: StatusesWarningOutlineProps) => React.JSX.Element;
1238
+
1207
1239
  interface StatusesWarningProps extends React.SVGProps<SVGSVGElement> {
1208
1240
  }
1209
1241
  declare const StatusesWarning: (props: StatusesWarningProps) => React.JSX.Element;
1210
1242
 
1211
- export { ArrowArrow2, ArrowArrow3, ArrowArrowDown, ArrowArrowLeft, ArrowArrowRight, ArrowArrowUp, ArrowChevronDown, ArrowChevronLeft, ArrowChevronRight, ArrowChevronUp, ArrowCloseMenu, ArrowDown, ArrowOpenInNewTab, ArrowOpenMenu, ArrowRedo, ArrowRefresh, ArrowRefresh2, ArrowRepeat, ArrowResetTimer, ArrowRotateLeft, ArrowRotateRight, ArrowSwap, ArrowSwap2, ArrowTriangleDown, ArrowTriangleLeft, ArrowTriangleRight, ArrowTriangleUp, ArrowUndo, ArrowUp, BoldAdd, BoldAddUser, BoldAdvice, BoldAiAssistant, BoldArchive, BoldBoard, BoldBonus, BoldCalendar, BoldChair, BoldChart, BoldColour, BoldColumn, BoldComment, BoldCopy, BoldDelete, BoldDetails, BoldDislike, BoldDot, BoldDragDrop, BoldEdit, BoldEducation, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldHiring, BoldImage, BoldInstruction, BoldInstruction2, BoldIntercom, BoldKebab, BoldLayer, BoldLike, BoldLink, BoldList, BoldLoader, BoldLocation, BoldLock, BoldLoseUser, BoldMap, BoldNotification, BoldOpenInSidebar, BoldPaintbucket, BoldPlace, BoldResend, BoldRow, BoldSend, BoldSettings, BoldStar, BoldTile, BoldTime, BoldTreemap, BoldUser, BoldUsers, BoldWallet, BoldWork, FlagsAustria, FlagsBelgium, FlagsBulgaria, FlagsCroatia, FlagsCyprus, FlagsCzechia, FlagsDenmark, FlagsEstonia, FlagsEu, FlagsFinland, FlagsFrance, FlagsGermany, FlagsGreece, FlagsHungary, FlagsIceland, FlagsIreland, FlagsItaly, FlagsLatvia, FlagsLithuania, FlagsLuxembourg, FlagsMalta, FlagsNetherlands, FlagsNorway, FlagsPoland, FlagsPortugal, FlagsRomaniaChad, FlagsSlovakia, FlagsSlovenia, FlagsSpain, FlagsSweden, FlagsSwitzerland, FlagsUk, FlagsUsa, Light2User, Light3User, LightActivity, LightAdd, LightAddUser, LightAlignment, LightArchive, LightAttach, LightAutomation, LightBank, LightBarChart, LightBarChart2, LightBookmark, LightBriefcase, LightBuilding, LightBuy, LightCalendar, LightCamera, LightCandidateAnonymous, LightCategory, LightChair, LightChart, LightChat, LightClock, LightCloseSquare, LightColumns, LightCompetence, LightCopy, LightCreateNewItem, LightCross, LightCustomField, LightDeadlineDate, LightDelete, LightDelete1, LightDensity, LightDiscount, LightDiscovery, LightDocument, LightDownload, LightEdit, LightEditSquare, LightEducation, LightExport, LightExport1, LightFiles, LightFilter, LightFilter3, LightFlag, LightFlag1, LightFolder, LightFolder1, LightFullscreen, LightFullscreenExit, LightGalleryAdd, LightGalleryEdit, LightGift, LightGlobalSettings, LightGraph, LightHeart, LightHelpCenter, LightHide, LightHome, LightHrm, LightIceContacts, LightIdea, LightImage, LightImport, LightInfo, LightIntegrations, LightIntercom, LightKey, LightLearningHubRegister, LightLink, LightLink2, LightList, LightLocation, LightLock, LightLogin, LightLogout, LightMagicpen, LightMessage, LightMessage1, LightMessageAdd, LightMoreCircle, LightMoreSquare, LightNewChat, LightNotification, LightOtherSettings, LightPaper, LightPaperDownload, LightPaperFail, LightPaperNegative, LightPaperPlus, LightPaperUpload, LightPassword, LightPercentage, LightPieChart, LightPlus, LightPoBox, LightPrinter, LightProfile, LightRemoveArchive, LightSaveFavourite, LightSaveRemove, LightScan, LightScheduleTalk, LightSearch, LightSend, LightSetting, LightSetting2, LightShieldDone, LightShieldFail, LightShow, LightShuffle, LightSignpost, LightSms, LightStar, LightStrategy, LightSuccess, LightSun, LightTarget, LightTasks, LightTick, LightTimeCircle, LightTimerPause, LightTimerReset, LightUnlock, LightUpload, LightUser, LightUser2, LightVideo, LightWallet, LightWarning, LightWebhooks, LightWebsite, LightWork, MenuAlingment, MenuBurgerMenu, MenuCompetence, MenuDashboard, MenuDataSource, MenuDocuments, MenuEqualPay, MenuEsign, MenuEvaluation, MenuIntegrations, MenuIntercom, MenuOkr, MenuOldDocuments, MenuOnboarding, MenuOrganization, MenuPace, MenuPeopleAnalytics, MenuProfile, MenuPulse, MenuRecruiter, MenuReports, MenuSalaryReview, MenuSms, MenuSurvey, MenuTalks, MenuWorkforce, SrTypeBenefit, SrTypeBonus, SrTypeCustomAtributes, SrTypeEmployment, SrTypeEmployment2, SrTypeExclusion, SrTypeIndexes, SrTypeKpi, SrTypePersonal, SrTypeSalary, StatusesCross, StatusesError, StatusesInfo, StatusesSuccess, StatusesWarning };
1243
+ export { ArrowArrow2, ArrowArrow3, ArrowArrowDown, ArrowArrowLeft, ArrowArrowRight, ArrowArrowUp, ArrowChevronDown, ArrowChevronLeft, ArrowChevronRight, ArrowChevronUp, ArrowCloseMenu, ArrowDown, ArrowOpenInNewTab, ArrowOpenMenu, ArrowRedo, ArrowRefresh, ArrowRefresh2, ArrowRepeat, ArrowResetTimer, ArrowRotateLeft, ArrowRotateRight, ArrowSwap, ArrowSwap2, ArrowTriangleDown, ArrowTriangleLeft, ArrowTriangleRight, ArrowTriangleUp, ArrowUndo, ArrowUp, BoldAdd, BoldAddUser, BoldAdvice, BoldAiAssistant, BoldArchive, BoldBoard, BoldBonus, BoldCalendar, BoldChair, BoldChart, BoldColour, BoldColumn, BoldComment, BoldCopy, BoldDelete, BoldDetails, BoldDislike, BoldDot, BoldDragDrop, BoldEdit, BoldEducation, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFeatures, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldHiring, BoldImage, BoldInstruction, BoldInstruction2, BoldIntegrations, BoldIntercom, BoldKebab, BoldLayer, BoldLike, BoldLink, BoldList, BoldLoader, BoldLocation, BoldLock, BoldLoseUser, BoldMap, BoldNotification, BoldOpen, BoldOpenInSidebar, BoldPaintbucket, BoldPlace, BoldResend, BoldRow, BoldSend, BoldSettings, BoldStar, BoldTile, BoldTime, BoldTreemap, BoldUser, BoldUsers, BoldWallet, BoldWork, FlagsAustria, FlagsBelgium, FlagsBulgaria, FlagsCroatia, FlagsCyprus, FlagsCzechia, FlagsDenmark, FlagsEstonia, FlagsEu, FlagsFinland, FlagsFrance, FlagsGermany, FlagsGreece, FlagsHungary, FlagsIceland, FlagsIreland, FlagsItaly, FlagsLatvia, FlagsLithuania, FlagsLuxembourg, FlagsMalta, FlagsNetherlands, FlagsNorway, FlagsPoland, FlagsPortugal, FlagsRomaniaChad, FlagsSlovakia, FlagsSlovenia, FlagsSpain, FlagsSweden, FlagsSwitzerland, FlagsUk, FlagsUsa, Light2User, Light3User, LightActivity, LightAdd, LightAddUser, LightAlignment, LightArchive, LightAttach, LightAutomation, LightBank, LightBarChart, LightBarChart2, LightBookmark, LightBriefcase, LightBuilding, LightBuy, LightCalendar, LightCamera, LightCandidateAnonymous, LightCategory, LightChair, LightChart, LightChat, LightClock, LightCloseSquare, LightColumns, LightCompetence, LightCopy, LightCreateNewItem, LightCross, LightCustomField, LightDeadlineDate, LightDelete, LightDelete1, LightDensity, LightDiscount, LightDiscovery, LightDocument, LightDownload, LightEdit, LightEditSquare, LightEducation, LightExport, LightExport1, LightFiles, LightFilter, LightFilter3, LightFlag, LightFlag1, LightFolder, LightFolder1, LightFullscreen, LightFullscreenExit, LightGalleryAdd, LightGalleryEdit, LightGift, LightGlobalSettings, LightGraph, LightHeart, LightHelpCenter, LightHide, LightHome, LightHrm, LightIceContacts, LightIdea, LightImage, LightImport, LightInfo, LightIntegrations, LightIntercom, LightKey, LightLearningHubRegister, LightLink, LightLink2, LightList, LightLocation, LightLock, LightLogin, LightLogout, LightMagicpen, LightMessage, LightMessage1, LightMessageAdd, LightMoreCircle, LightMoreSquare, LightNewChat, LightNotification, LightOtherSettings, LightPaper, LightPaperDownload, LightPaperFail, LightPaperNegative, LightPaperPlus, LightPaperUpload, LightPassword, LightPercentage, LightPieChart, LightPlus, LightPoBox, LightPrinter, LightProfile, LightRemoveArchive, LightSaveFavourite, LightSaveRemove, LightScan, LightScheduleTalk, LightSearch, LightSend, LightSetting, LightSetting2, LightShieldDone, LightShieldFail, LightShow, LightShuffle, LightSignpost, LightSms, LightStar, LightStrategy, LightSuccess, LightSun, LightTarget, LightTasks, LightTick, LightTimeCircle, LightTimerPause, LightTimerReset, LightUnlock, LightUpload, LightUser, LightUser2, LightVideo, LightWallet, LightWarning, LightWebhooks, LightWebsite, LightWork, MenuAlingment, MenuBurgerMenu, MenuCompetence, MenuDashboard, MenuDataSource, MenuDocuments, MenuEqualPay, MenuEsign, MenuEvaluation, MenuIntegrations, MenuIntercom, MenuOkr, MenuOldDocuments, MenuOnboarding, MenuOrganization, MenuPace, MenuPeopleAnalytics, MenuProfile, MenuPulse, MenuRecruiter, MenuReports, MenuSalaryReview, MenuSms, MenuSurvey, MenuTalks, MenuWorkforce, SrTypeBenefit, SrTypeBonus, SrTypeCustomAtributes, SrTypeEmployment, SrTypeEmployment2, SrTypeExclusion, SrTypeIndexes, SrTypeKpi, SrTypePersonal, SrTypeSalary, StatusesCheckFilled, StatusesCross, StatusesDangerFilled, StatusesDangerOutline, StatusesError, StatusesInfo, StatusesSuccess, StatusesWarning, StatusesWarningFilled, StatusesWarningOutline };