@heartpace/icons 0.1.5 → 0.1.7
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/dist/categories.json +20 -0
- package/dist/index.d.mts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +300 -292
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +296 -292
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/dist/categories.json
CHANGED
|
@@ -307,6 +307,11 @@
|
|
|
307
307
|
"relativePath": "Bold/Intercom.svg",
|
|
308
308
|
"fileName": "Intercom.svg"
|
|
309
309
|
},
|
|
310
|
+
{
|
|
311
|
+
"componentName": "BoldKebab",
|
|
312
|
+
"relativePath": "Bold/Kebab.svg",
|
|
313
|
+
"fileName": "Kebab.svg"
|
|
314
|
+
},
|
|
310
315
|
{
|
|
311
316
|
"componentName": "BoldLike",
|
|
312
317
|
"relativePath": "Bold/Like.svg",
|
|
@@ -337,6 +342,11 @@
|
|
|
337
342
|
"relativePath": "Bold/Map.svg",
|
|
338
343
|
"fileName": "Map.svg"
|
|
339
344
|
},
|
|
345
|
+
{
|
|
346
|
+
"componentName": "BoldNotification",
|
|
347
|
+
"relativePath": "Bold/Notification.svg",
|
|
348
|
+
"fileName": "Notification.svg"
|
|
349
|
+
},
|
|
340
350
|
{
|
|
341
351
|
"componentName": "BoldOpenInSidebar",
|
|
342
352
|
"relativePath": "Bold/Open in sidebar.svg",
|
|
@@ -711,6 +721,11 @@
|
|
|
711
721
|
"relativePath": "Light/Create new item.svg",
|
|
712
722
|
"fileName": "Create new item.svg"
|
|
713
723
|
},
|
|
724
|
+
{
|
|
725
|
+
"componentName": "LightCross",
|
|
726
|
+
"relativePath": "Light/Cross.svg",
|
|
727
|
+
"fileName": "Cross.svg"
|
|
728
|
+
},
|
|
714
729
|
{
|
|
715
730
|
"componentName": "LightCustomField",
|
|
716
731
|
"relativePath": "Light/Custom-field.svg",
|
|
@@ -1196,6 +1211,11 @@
|
|
|
1196
1211
|
"relativePath": "Light/add user.svg",
|
|
1197
1212
|
"fileName": "add user.svg"
|
|
1198
1213
|
},
|
|
1214
|
+
{
|
|
1215
|
+
"componentName": "LightAdd",
|
|
1216
|
+
"relativePath": "Light/add.svg",
|
|
1217
|
+
"fileName": "add.svg"
|
|
1218
|
+
},
|
|
1199
1219
|
{
|
|
1200
1220
|
"componentName": "LightAutomation",
|
|
1201
1221
|
"relativePath": "Light/automation.svg",
|
package/dist/index.d.mts
CHANGED
|
@@ -244,6 +244,10 @@ interface BoldIntercomProps extends React.SVGProps<SVGSVGElement> {
|
|
|
244
244
|
}
|
|
245
245
|
declare const BoldIntercom: (props: BoldIntercomProps) => React.JSX.Element;
|
|
246
246
|
|
|
247
|
+
interface BoldKebabProps extends React.SVGProps<SVGSVGElement> {
|
|
248
|
+
}
|
|
249
|
+
declare const BoldKebab: (props: BoldKebabProps) => React.JSX.Element;
|
|
250
|
+
|
|
247
251
|
interface BoldLikeProps extends React.SVGProps<SVGSVGElement> {
|
|
248
252
|
}
|
|
249
253
|
declare const BoldLike: (props: BoldLikeProps) => React.JSX.Element;
|
|
@@ -268,6 +272,10 @@ interface BoldMapProps extends React.SVGProps<SVGSVGElement> {
|
|
|
268
272
|
}
|
|
269
273
|
declare const BoldMap: (props: BoldMapProps) => React.JSX.Element;
|
|
270
274
|
|
|
275
|
+
interface BoldNotificationProps extends React.SVGProps<SVGSVGElement> {
|
|
276
|
+
}
|
|
277
|
+
declare const BoldNotification: (props: BoldNotificationProps) => React.JSX.Element;
|
|
278
|
+
|
|
271
279
|
interface BoldOpenInSidebarProps extends React.SVGProps<SVGSVGElement> {
|
|
272
280
|
}
|
|
273
281
|
declare const BoldOpenInSidebar: (props: BoldOpenInSidebarProps) => React.JSX.Element;
|
|
@@ -564,6 +572,10 @@ interface LightCreateNewItemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
564
572
|
}
|
|
565
573
|
declare const LightCreateNewItem: (props: LightCreateNewItemProps) => React.JSX.Element;
|
|
566
574
|
|
|
575
|
+
interface LightCrossProps extends React.SVGProps<SVGSVGElement> {
|
|
576
|
+
}
|
|
577
|
+
declare const LightCross: (props: LightCrossProps) => React.JSX.Element;
|
|
578
|
+
|
|
567
579
|
interface LightCustomFieldProps extends React.SVGProps<SVGSVGElement> {
|
|
568
580
|
}
|
|
569
581
|
declare const LightCustomField: (props: LightCustomFieldProps) => React.JSX.Element;
|
|
@@ -952,6 +964,10 @@ interface LightAddUserProps extends React.SVGProps<SVGSVGElement> {
|
|
|
952
964
|
}
|
|
953
965
|
declare const LightAddUser: (props: LightAddUserProps) => React.JSX.Element;
|
|
954
966
|
|
|
967
|
+
interface LightAddProps extends React.SVGProps<SVGSVGElement> {
|
|
968
|
+
}
|
|
969
|
+
declare const LightAdd: (props: LightAddProps) => React.JSX.Element;
|
|
970
|
+
|
|
955
971
|
interface LightAutomationProps extends React.SVGProps<SVGSVGElement> {
|
|
956
972
|
}
|
|
957
973
|
declare const LightAutomation: (props: LightAutomationProps) => React.JSX.Element;
|
|
@@ -1160,4 +1176,4 @@ interface StatusesWarningProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1160
1176
|
}
|
|
1161
1177
|
declare const StatusesWarning: (props: StatusesWarningProps) => React.JSX.Element;
|
|
1162
1178
|
|
|
1163
|
-
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, BoldAdvice, BoldAiAssistant, BoldArchive, BoldBoard, BoldBonus, BoldCalendar, BoldChair, BoldChart, BoldColour, BoldColumn, BoldComment, BoldCopy, BoldDelete, BoldDetails, BoldDislike, BoldDot, BoldDragDrop, BoldEdit, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldImage, BoldInstruction, BoldInstruction2, BoldIntercom, BoldLike, BoldLink, BoldList, BoldLoader, BoldLocation, BoldLock, BoldMap, BoldOpenInSidebar, 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, 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, LightCustomField, LightDeadlineDate, LightDelete, LightDelete1, LightDensity, LightDiscount, LightDiscovery, LightDocument, LightDownload, LightEdit, LightEditSquare, LightEducation, LightExport, LightExport1, LightFiles, LightFilter, LightFilter3, LightFlag, LightFlag1, LightFolder, LightFolder1, 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 };
|
|
1179
|
+
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, BoldAdvice, BoldAiAssistant, BoldArchive, BoldBoard, BoldBonus, BoldCalendar, BoldChair, BoldChart, BoldColour, BoldColumn, BoldComment, BoldCopy, BoldDelete, BoldDetails, BoldDislike, BoldDot, BoldDragDrop, BoldEdit, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldImage, BoldInstruction, BoldInstruction2, BoldIntercom, BoldKebab, BoldLike, BoldLink, BoldList, BoldLoader, BoldLocation, BoldLock, BoldMap, BoldNotification, BoldOpenInSidebar, 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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -244,6 +244,10 @@ interface BoldIntercomProps extends React.SVGProps<SVGSVGElement> {
|
|
|
244
244
|
}
|
|
245
245
|
declare const BoldIntercom: (props: BoldIntercomProps) => React.JSX.Element;
|
|
246
246
|
|
|
247
|
+
interface BoldKebabProps extends React.SVGProps<SVGSVGElement> {
|
|
248
|
+
}
|
|
249
|
+
declare const BoldKebab: (props: BoldKebabProps) => React.JSX.Element;
|
|
250
|
+
|
|
247
251
|
interface BoldLikeProps extends React.SVGProps<SVGSVGElement> {
|
|
248
252
|
}
|
|
249
253
|
declare const BoldLike: (props: BoldLikeProps) => React.JSX.Element;
|
|
@@ -268,6 +272,10 @@ interface BoldMapProps extends React.SVGProps<SVGSVGElement> {
|
|
|
268
272
|
}
|
|
269
273
|
declare const BoldMap: (props: BoldMapProps) => React.JSX.Element;
|
|
270
274
|
|
|
275
|
+
interface BoldNotificationProps extends React.SVGProps<SVGSVGElement> {
|
|
276
|
+
}
|
|
277
|
+
declare const BoldNotification: (props: BoldNotificationProps) => React.JSX.Element;
|
|
278
|
+
|
|
271
279
|
interface BoldOpenInSidebarProps extends React.SVGProps<SVGSVGElement> {
|
|
272
280
|
}
|
|
273
281
|
declare const BoldOpenInSidebar: (props: BoldOpenInSidebarProps) => React.JSX.Element;
|
|
@@ -564,6 +572,10 @@ interface LightCreateNewItemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
564
572
|
}
|
|
565
573
|
declare const LightCreateNewItem: (props: LightCreateNewItemProps) => React.JSX.Element;
|
|
566
574
|
|
|
575
|
+
interface LightCrossProps extends React.SVGProps<SVGSVGElement> {
|
|
576
|
+
}
|
|
577
|
+
declare const LightCross: (props: LightCrossProps) => React.JSX.Element;
|
|
578
|
+
|
|
567
579
|
interface LightCustomFieldProps extends React.SVGProps<SVGSVGElement> {
|
|
568
580
|
}
|
|
569
581
|
declare const LightCustomField: (props: LightCustomFieldProps) => React.JSX.Element;
|
|
@@ -952,6 +964,10 @@ interface LightAddUserProps extends React.SVGProps<SVGSVGElement> {
|
|
|
952
964
|
}
|
|
953
965
|
declare const LightAddUser: (props: LightAddUserProps) => React.JSX.Element;
|
|
954
966
|
|
|
967
|
+
interface LightAddProps extends React.SVGProps<SVGSVGElement> {
|
|
968
|
+
}
|
|
969
|
+
declare const LightAdd: (props: LightAddProps) => React.JSX.Element;
|
|
970
|
+
|
|
955
971
|
interface LightAutomationProps extends React.SVGProps<SVGSVGElement> {
|
|
956
972
|
}
|
|
957
973
|
declare const LightAutomation: (props: LightAutomationProps) => React.JSX.Element;
|
|
@@ -1160,4 +1176,4 @@ interface StatusesWarningProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1160
1176
|
}
|
|
1161
1177
|
declare const StatusesWarning: (props: StatusesWarningProps) => React.JSX.Element;
|
|
1162
1178
|
|
|
1163
|
-
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, BoldAdvice, BoldAiAssistant, BoldArchive, BoldBoard, BoldBonus, BoldCalendar, BoldChair, BoldChart, BoldColour, BoldColumn, BoldComment, BoldCopy, BoldDelete, BoldDetails, BoldDislike, BoldDot, BoldDragDrop, BoldEdit, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldImage, BoldInstruction, BoldInstruction2, BoldIntercom, BoldLike, BoldLink, BoldList, BoldLoader, BoldLocation, BoldLock, BoldMap, BoldOpenInSidebar, 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, 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, LightCustomField, LightDeadlineDate, LightDelete, LightDelete1, LightDensity, LightDiscount, LightDiscovery, LightDocument, LightDownload, LightEdit, LightEditSquare, LightEducation, LightExport, LightExport1, LightFiles, LightFilter, LightFilter3, LightFlag, LightFlag1, LightFolder, LightFolder1, 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 };
|
|
1179
|
+
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, BoldAdvice, BoldAiAssistant, BoldArchive, BoldBoard, BoldBonus, BoldCalendar, BoldChair, BoldChart, BoldColour, BoldColumn, BoldComment, BoldCopy, BoldDelete, BoldDetails, BoldDislike, BoldDot, BoldDragDrop, BoldEdit, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldImage, BoldInstruction, BoldInstruction2, BoldIntercom, BoldKebab, BoldLike, BoldLink, BoldList, BoldLoader, BoldLocation, BoldLock, BoldMap, BoldNotification, BoldOpenInSidebar, 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, 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 };
|