@heartpace/icons 0.1.9 → 0.1.11
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 +306 -298
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +302 -298
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/categories.json
CHANGED
|
@@ -152,6 +152,11 @@
|
|
|
152
152
|
"relativePath": "Bold/AI Assistant.svg",
|
|
153
153
|
"fileName": "AI Assistant.svg"
|
|
154
154
|
},
|
|
155
|
+
{
|
|
156
|
+
"componentName": "BoldAddUser",
|
|
157
|
+
"relativePath": "Bold/Add user.svg",
|
|
158
|
+
"fileName": "Add user.svg"
|
|
159
|
+
},
|
|
155
160
|
{
|
|
156
161
|
"componentName": "BoldAdd",
|
|
157
162
|
"relativePath": "Bold/Add.svg",
|
|
@@ -287,6 +292,11 @@
|
|
|
287
292
|
"relativePath": "Bold/Hierarchy.svg",
|
|
288
293
|
"fileName": "Hierarchy.svg"
|
|
289
294
|
},
|
|
295
|
+
{
|
|
296
|
+
"componentName": "BoldHiring",
|
|
297
|
+
"relativePath": "Bold/Hiring.svg",
|
|
298
|
+
"fileName": "Hiring.svg"
|
|
299
|
+
},
|
|
290
300
|
{
|
|
291
301
|
"componentName": "BoldImage",
|
|
292
302
|
"relativePath": "Bold/Image.svg",
|
|
@@ -337,6 +347,11 @@
|
|
|
337
347
|
"relativePath": "Bold/Lock.svg",
|
|
338
348
|
"fileName": "Lock.svg"
|
|
339
349
|
},
|
|
350
|
+
{
|
|
351
|
+
"componentName": "BoldLoseUser",
|
|
352
|
+
"relativePath": "Bold/Lose user.svg",
|
|
353
|
+
"fileName": "Lose user.svg"
|
|
354
|
+
},
|
|
340
355
|
{
|
|
341
356
|
"componentName": "BoldMap",
|
|
342
357
|
"relativePath": "Bold/Map.svg",
|
|
@@ -422,6 +437,11 @@
|
|
|
422
437
|
"relativePath": "Bold/list.svg",
|
|
423
438
|
"fileName": "list.svg"
|
|
424
439
|
},
|
|
440
|
+
{
|
|
441
|
+
"componentName": "BoldPaintbucket",
|
|
442
|
+
"relativePath": "Bold/paintbucket.svg",
|
|
443
|
+
"fileName": "paintbucket.svg"
|
|
444
|
+
},
|
|
425
445
|
{
|
|
426
446
|
"componentName": "BoldStar",
|
|
427
447
|
"relativePath": "Bold/star.svg",
|
package/dist/index.d.mts
CHANGED
|
@@ -120,6 +120,10 @@ interface BoldAiAssistantProps extends React.SVGProps<SVGSVGElement> {
|
|
|
120
120
|
}
|
|
121
121
|
declare const BoldAiAssistant: (props: BoldAiAssistantProps) => React.JSX.Element;
|
|
122
122
|
|
|
123
|
+
interface BoldAddUserProps extends React.SVGProps<SVGSVGElement> {
|
|
124
|
+
}
|
|
125
|
+
declare const BoldAddUser: (props: BoldAddUserProps) => React.JSX.Element;
|
|
126
|
+
|
|
123
127
|
interface BoldAddProps extends React.SVGProps<SVGSVGElement> {
|
|
124
128
|
}
|
|
125
129
|
declare const BoldAdd: (props: BoldAddProps) => React.JSX.Element;
|
|
@@ -228,6 +232,10 @@ interface BoldHierarchyProps extends React.SVGProps<SVGSVGElement> {
|
|
|
228
232
|
}
|
|
229
233
|
declare const BoldHierarchy: (props: BoldHierarchyProps) => React.JSX.Element;
|
|
230
234
|
|
|
235
|
+
interface BoldHiringProps extends React.SVGProps<SVGSVGElement> {
|
|
236
|
+
}
|
|
237
|
+
declare const BoldHiring: (props: BoldHiringProps) => React.JSX.Element;
|
|
238
|
+
|
|
231
239
|
interface BoldImageProps extends React.SVGProps<SVGSVGElement> {
|
|
232
240
|
}
|
|
233
241
|
declare const BoldImage: (props: BoldImageProps) => React.JSX.Element;
|
|
@@ -268,6 +276,10 @@ interface BoldLockProps extends React.SVGProps<SVGSVGElement> {
|
|
|
268
276
|
}
|
|
269
277
|
declare const BoldLock: (props: BoldLockProps) => React.JSX.Element;
|
|
270
278
|
|
|
279
|
+
interface BoldLoseUserProps extends React.SVGProps<SVGSVGElement> {
|
|
280
|
+
}
|
|
281
|
+
declare const BoldLoseUser: (props: BoldLoseUserProps) => React.JSX.Element;
|
|
282
|
+
|
|
271
283
|
interface BoldMapProps extends React.SVGProps<SVGSVGElement> {
|
|
272
284
|
}
|
|
273
285
|
declare const BoldMap: (props: BoldMapProps) => React.JSX.Element;
|
|
@@ -336,6 +348,10 @@ interface BoldListProps extends React.SVGProps<SVGSVGElement> {
|
|
|
336
348
|
}
|
|
337
349
|
declare const BoldList: (props: BoldListProps) => React.JSX.Element;
|
|
338
350
|
|
|
351
|
+
interface BoldPaintbucketProps extends React.SVGProps<SVGSVGElement> {
|
|
352
|
+
}
|
|
353
|
+
declare const BoldPaintbucket: (props: BoldPaintbucketProps) => React.JSX.Element;
|
|
354
|
+
|
|
339
355
|
interface BoldStarProps extends React.SVGProps<SVGSVGElement> {
|
|
340
356
|
}
|
|
341
357
|
declare const BoldStar: (props: BoldStarProps) => React.JSX.Element;
|
|
@@ -1184,4 +1200,4 @@ interface StatusesWarningProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1184
1200
|
}
|
|
1185
1201
|
declare const StatusesWarning: (props: StatusesWarningProps) => React.JSX.Element;
|
|
1186
1202
|
|
|
1187
|
-
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, 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 };
|
|
1203
|
+
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, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldHiring, BoldImage, BoldInstruction, BoldInstruction2, BoldIntercom, BoldKebab, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -120,6 +120,10 @@ interface BoldAiAssistantProps extends React.SVGProps<SVGSVGElement> {
|
|
|
120
120
|
}
|
|
121
121
|
declare const BoldAiAssistant: (props: BoldAiAssistantProps) => React.JSX.Element;
|
|
122
122
|
|
|
123
|
+
interface BoldAddUserProps extends React.SVGProps<SVGSVGElement> {
|
|
124
|
+
}
|
|
125
|
+
declare const BoldAddUser: (props: BoldAddUserProps) => React.JSX.Element;
|
|
126
|
+
|
|
123
127
|
interface BoldAddProps extends React.SVGProps<SVGSVGElement> {
|
|
124
128
|
}
|
|
125
129
|
declare const BoldAdd: (props: BoldAddProps) => React.JSX.Element;
|
|
@@ -228,6 +232,10 @@ interface BoldHierarchyProps extends React.SVGProps<SVGSVGElement> {
|
|
|
228
232
|
}
|
|
229
233
|
declare const BoldHierarchy: (props: BoldHierarchyProps) => React.JSX.Element;
|
|
230
234
|
|
|
235
|
+
interface BoldHiringProps extends React.SVGProps<SVGSVGElement> {
|
|
236
|
+
}
|
|
237
|
+
declare const BoldHiring: (props: BoldHiringProps) => React.JSX.Element;
|
|
238
|
+
|
|
231
239
|
interface BoldImageProps extends React.SVGProps<SVGSVGElement> {
|
|
232
240
|
}
|
|
233
241
|
declare const BoldImage: (props: BoldImageProps) => React.JSX.Element;
|
|
@@ -268,6 +276,10 @@ interface BoldLockProps extends React.SVGProps<SVGSVGElement> {
|
|
|
268
276
|
}
|
|
269
277
|
declare const BoldLock: (props: BoldLockProps) => React.JSX.Element;
|
|
270
278
|
|
|
279
|
+
interface BoldLoseUserProps extends React.SVGProps<SVGSVGElement> {
|
|
280
|
+
}
|
|
281
|
+
declare const BoldLoseUser: (props: BoldLoseUserProps) => React.JSX.Element;
|
|
282
|
+
|
|
271
283
|
interface BoldMapProps extends React.SVGProps<SVGSVGElement> {
|
|
272
284
|
}
|
|
273
285
|
declare const BoldMap: (props: BoldMapProps) => React.JSX.Element;
|
|
@@ -336,6 +348,10 @@ interface BoldListProps extends React.SVGProps<SVGSVGElement> {
|
|
|
336
348
|
}
|
|
337
349
|
declare const BoldList: (props: BoldListProps) => React.JSX.Element;
|
|
338
350
|
|
|
351
|
+
interface BoldPaintbucketProps extends React.SVGProps<SVGSVGElement> {
|
|
352
|
+
}
|
|
353
|
+
declare const BoldPaintbucket: (props: BoldPaintbucketProps) => React.JSX.Element;
|
|
354
|
+
|
|
339
355
|
interface BoldStarProps extends React.SVGProps<SVGSVGElement> {
|
|
340
356
|
}
|
|
341
357
|
declare const BoldStar: (props: BoldStarProps) => React.JSX.Element;
|
|
@@ -1184,4 +1200,4 @@ interface StatusesWarningProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1184
1200
|
}
|
|
1185
1201
|
declare const StatusesWarning: (props: StatusesWarningProps) => React.JSX.Element;
|
|
1186
1202
|
|
|
1187
|
-
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, 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 };
|
|
1203
|
+
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, BoldEmail, BoldExport, BoldExport2, BoldEye, BoldFilter, BoldFlag, BoldGift, BoldHelp, BoldHierarchy, BoldHierarchyHorizontal, BoldHierarchyVertical, BoldHiring, BoldImage, BoldInstruction, BoldInstruction2, BoldIntercom, BoldKebab, 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 };
|