@heartpace/icons 0.1.11 → 0.1.13
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 +35 -0
- package/dist/index.d.mts +29 -1
- package/dist/index.d.ts +29 -1
- package/dist/index.js +316 -302
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +309 -302
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/categories.json
CHANGED
|
@@ -242,6 +242,11 @@
|
|
|
242
242
|
"relativePath": "Bold/Edit.svg",
|
|
243
243
|
"fileName": "Edit.svg"
|
|
244
244
|
},
|
|
245
|
+
{
|
|
246
|
+
"componentName": "BoldEducation",
|
|
247
|
+
"relativePath": "Bold/Education.svg",
|
|
248
|
+
"fileName": "Education.svg"
|
|
249
|
+
},
|
|
245
250
|
{
|
|
246
251
|
"componentName": "BoldEmail",
|
|
247
252
|
"relativePath": "Bold/Email.svg",
|
|
@@ -432,6 +437,11 @@
|
|
|
432
437
|
"relativePath": "Bold/help.svg",
|
|
433
438
|
"fileName": "help.svg"
|
|
434
439
|
},
|
|
440
|
+
{
|
|
441
|
+
"componentName": "BoldLayer",
|
|
442
|
+
"relativePath": "Bold/layer.svg",
|
|
443
|
+
"fileName": "layer.svg"
|
|
444
|
+
},
|
|
435
445
|
{
|
|
436
446
|
"componentName": "BoldList",
|
|
437
447
|
"relativePath": "Bold/list.svg",
|
|
@@ -1487,11 +1497,26 @@
|
|
|
1487
1497
|
}
|
|
1488
1498
|
],
|
|
1489
1499
|
"Statuses": [
|
|
1500
|
+
{
|
|
1501
|
+
"componentName": "StatusesCheckFilled",
|
|
1502
|
+
"relativePath": "Statuses/check filled.svg",
|
|
1503
|
+
"fileName": "check filled.svg"
|
|
1504
|
+
},
|
|
1490
1505
|
{
|
|
1491
1506
|
"componentName": "StatusesCross",
|
|
1492
1507
|
"relativePath": "Statuses/cross.svg",
|
|
1493
1508
|
"fileName": "cross.svg"
|
|
1494
1509
|
},
|
|
1510
|
+
{
|
|
1511
|
+
"componentName": "StatusesDangerFilled",
|
|
1512
|
+
"relativePath": "Statuses/danger filled.svg",
|
|
1513
|
+
"fileName": "danger filled.svg"
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"componentName": "StatusesDangerOutline",
|
|
1517
|
+
"relativePath": "Statuses/danger outline.svg",
|
|
1518
|
+
"fileName": "danger outline.svg"
|
|
1519
|
+
},
|
|
1495
1520
|
{
|
|
1496
1521
|
"componentName": "StatusesError",
|
|
1497
1522
|
"relativePath": "Statuses/error.svg",
|
|
@@ -1507,6 +1532,16 @@
|
|
|
1507
1532
|
"relativePath": "Statuses/success.svg",
|
|
1508
1533
|
"fileName": "success.svg"
|
|
1509
1534
|
},
|
|
1535
|
+
{
|
|
1536
|
+
"componentName": "StatusesWarningFilled",
|
|
1537
|
+
"relativePath": "Statuses/warning filled.svg",
|
|
1538
|
+
"fileName": "warning filled.svg"
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"componentName": "StatusesWarningOutline",
|
|
1542
|
+
"relativePath": "Statuses/warning outline.svg",
|
|
1543
|
+
"fileName": "warning outline.svg"
|
|
1544
|
+
},
|
|
1510
1545
|
{
|
|
1511
1546
|
"componentName": "StatusesWarning",
|
|
1512
1547
|
"relativePath": "Statuses/warning.svg",
|
package/dist/index.d.mts
CHANGED
|
@@ -192,6 +192,10 @@ interface BoldEditProps extends React.SVGProps<SVGSVGElement> {
|
|
|
192
192
|
}
|
|
193
193
|
declare const BoldEdit: (props: BoldEditProps) => React.JSX.Element;
|
|
194
194
|
|
|
195
|
+
interface BoldEducationProps extends React.SVGProps<SVGSVGElement> {
|
|
196
|
+
}
|
|
197
|
+
declare const BoldEducation: (props: BoldEducationProps) => React.JSX.Element;
|
|
198
|
+
|
|
195
199
|
interface BoldEmailProps extends React.SVGProps<SVGSVGElement> {
|
|
196
200
|
}
|
|
197
201
|
declare const BoldEmail: (props: BoldEmailProps) => React.JSX.Element;
|
|
@@ -344,6 +348,10 @@ interface BoldHelpProps extends React.SVGProps<SVGSVGElement> {
|
|
|
344
348
|
}
|
|
345
349
|
declare const BoldHelp: (props: BoldHelpProps) => React.JSX.Element;
|
|
346
350
|
|
|
351
|
+
interface BoldLayerProps extends React.SVGProps<SVGSVGElement> {
|
|
352
|
+
}
|
|
353
|
+
declare const BoldLayer: (props: BoldLayerProps) => React.JSX.Element;
|
|
354
|
+
|
|
347
355
|
interface BoldListProps extends React.SVGProps<SVGSVGElement> {
|
|
348
356
|
}
|
|
349
357
|
declare const BoldList: (props: BoldListProps) => React.JSX.Element;
|
|
@@ -1180,10 +1188,22 @@ interface SrTypeSalaryProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1180
1188
|
}
|
|
1181
1189
|
declare const SrTypeSalary: (props: SrTypeSalaryProps) => React.JSX.Element;
|
|
1182
1190
|
|
|
1191
|
+
interface StatusesCheckFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1192
|
+
}
|
|
1193
|
+
declare const StatusesCheckFilled: (props: StatusesCheckFilledProps) => React.JSX.Element;
|
|
1194
|
+
|
|
1183
1195
|
interface StatusesCrossProps extends React.SVGProps<SVGSVGElement> {
|
|
1184
1196
|
}
|
|
1185
1197
|
declare const StatusesCross: (props: StatusesCrossProps) => React.JSX.Element;
|
|
1186
1198
|
|
|
1199
|
+
interface StatusesDangerFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1200
|
+
}
|
|
1201
|
+
declare const StatusesDangerFilled: (props: StatusesDangerFilledProps) => React.JSX.Element;
|
|
1202
|
+
|
|
1203
|
+
interface StatusesDangerOutlineProps extends React.SVGProps<SVGSVGElement> {
|
|
1204
|
+
}
|
|
1205
|
+
declare const StatusesDangerOutline: (props: StatusesDangerOutlineProps) => React.JSX.Element;
|
|
1206
|
+
|
|
1187
1207
|
interface StatusesErrorProps extends React.SVGProps<SVGSVGElement> {
|
|
1188
1208
|
}
|
|
1189
1209
|
declare const StatusesError: (props: StatusesErrorProps) => React.JSX.Element;
|
|
@@ -1196,8 +1216,16 @@ interface StatusesSuccessProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1196
1216
|
}
|
|
1197
1217
|
declare const StatusesSuccess: (props: StatusesSuccessProps) => React.JSX.Element;
|
|
1198
1218
|
|
|
1219
|
+
interface StatusesWarningFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1220
|
+
}
|
|
1221
|
+
declare const StatusesWarningFilled: (props: StatusesWarningFilledProps) => React.JSX.Element;
|
|
1222
|
+
|
|
1223
|
+
interface StatusesWarningOutlineProps extends React.SVGProps<SVGSVGElement> {
|
|
1224
|
+
}
|
|
1225
|
+
declare const StatusesWarningOutline: (props: StatusesWarningOutlineProps) => React.JSX.Element;
|
|
1226
|
+
|
|
1199
1227
|
interface StatusesWarningProps extends React.SVGProps<SVGSVGElement> {
|
|
1200
1228
|
}
|
|
1201
1229
|
declare const StatusesWarning: (props: StatusesWarningProps) => React.JSX.Element;
|
|
1202
1230
|
|
|
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 };
|
|
1231
|
+
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, StatusesCheckFilled, StatusesCross, StatusesDangerFilled, StatusesDangerOutline, StatusesError, StatusesInfo, StatusesSuccess, StatusesWarning, StatusesWarningFilled, StatusesWarningOutline };
|
package/dist/index.d.ts
CHANGED
|
@@ -192,6 +192,10 @@ interface BoldEditProps extends React.SVGProps<SVGSVGElement> {
|
|
|
192
192
|
}
|
|
193
193
|
declare const BoldEdit: (props: BoldEditProps) => React.JSX.Element;
|
|
194
194
|
|
|
195
|
+
interface BoldEducationProps extends React.SVGProps<SVGSVGElement> {
|
|
196
|
+
}
|
|
197
|
+
declare const BoldEducation: (props: BoldEducationProps) => React.JSX.Element;
|
|
198
|
+
|
|
195
199
|
interface BoldEmailProps extends React.SVGProps<SVGSVGElement> {
|
|
196
200
|
}
|
|
197
201
|
declare const BoldEmail: (props: BoldEmailProps) => React.JSX.Element;
|
|
@@ -344,6 +348,10 @@ interface BoldHelpProps extends React.SVGProps<SVGSVGElement> {
|
|
|
344
348
|
}
|
|
345
349
|
declare const BoldHelp: (props: BoldHelpProps) => React.JSX.Element;
|
|
346
350
|
|
|
351
|
+
interface BoldLayerProps extends React.SVGProps<SVGSVGElement> {
|
|
352
|
+
}
|
|
353
|
+
declare const BoldLayer: (props: BoldLayerProps) => React.JSX.Element;
|
|
354
|
+
|
|
347
355
|
interface BoldListProps extends React.SVGProps<SVGSVGElement> {
|
|
348
356
|
}
|
|
349
357
|
declare const BoldList: (props: BoldListProps) => React.JSX.Element;
|
|
@@ -1180,10 +1188,22 @@ interface SrTypeSalaryProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1180
1188
|
}
|
|
1181
1189
|
declare const SrTypeSalary: (props: SrTypeSalaryProps) => React.JSX.Element;
|
|
1182
1190
|
|
|
1191
|
+
interface StatusesCheckFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1192
|
+
}
|
|
1193
|
+
declare const StatusesCheckFilled: (props: StatusesCheckFilledProps) => React.JSX.Element;
|
|
1194
|
+
|
|
1183
1195
|
interface StatusesCrossProps extends React.SVGProps<SVGSVGElement> {
|
|
1184
1196
|
}
|
|
1185
1197
|
declare const StatusesCross: (props: StatusesCrossProps) => React.JSX.Element;
|
|
1186
1198
|
|
|
1199
|
+
interface StatusesDangerFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1200
|
+
}
|
|
1201
|
+
declare const StatusesDangerFilled: (props: StatusesDangerFilledProps) => React.JSX.Element;
|
|
1202
|
+
|
|
1203
|
+
interface StatusesDangerOutlineProps extends React.SVGProps<SVGSVGElement> {
|
|
1204
|
+
}
|
|
1205
|
+
declare const StatusesDangerOutline: (props: StatusesDangerOutlineProps) => React.JSX.Element;
|
|
1206
|
+
|
|
1187
1207
|
interface StatusesErrorProps extends React.SVGProps<SVGSVGElement> {
|
|
1188
1208
|
}
|
|
1189
1209
|
declare const StatusesError: (props: StatusesErrorProps) => React.JSX.Element;
|
|
@@ -1196,8 +1216,16 @@ interface StatusesSuccessProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1196
1216
|
}
|
|
1197
1217
|
declare const StatusesSuccess: (props: StatusesSuccessProps) => React.JSX.Element;
|
|
1198
1218
|
|
|
1219
|
+
interface StatusesWarningFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1220
|
+
}
|
|
1221
|
+
declare const StatusesWarningFilled: (props: StatusesWarningFilledProps) => React.JSX.Element;
|
|
1222
|
+
|
|
1223
|
+
interface StatusesWarningOutlineProps extends React.SVGProps<SVGSVGElement> {
|
|
1224
|
+
}
|
|
1225
|
+
declare const StatusesWarningOutline: (props: StatusesWarningOutlineProps) => React.JSX.Element;
|
|
1226
|
+
|
|
1199
1227
|
interface StatusesWarningProps extends React.SVGProps<SVGSVGElement> {
|
|
1200
1228
|
}
|
|
1201
1229
|
declare const StatusesWarning: (props: StatusesWarningProps) => React.JSX.Element;
|
|
1202
1230
|
|
|
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 };
|
|
1231
|
+
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, StatusesCheckFilled, StatusesCross, StatusesDangerFilled, StatusesDangerOutline, StatusesError, StatusesInfo, StatusesSuccess, StatusesWarning, StatusesWarningFilled, StatusesWarningOutline };
|