@epilot360/icons 1.18.1 → 1.18.2

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.
Files changed (151) hide show
  1. package/build/index.js +268 -9
  2. package/build/index.js.map +1 -1
  3. package/build/react/AreaChart/index.d.ts +6 -0
  4. package/build/react/AreaChart/index.js +242 -0
  5. package/build/react/AreaChart/index.js.map +1 -0
  6. package/build/react/ChartLine/index.d.ts +6 -0
  7. package/build/react/ChartLine/index.js +242 -0
  8. package/build/react/ChartLine/index.js.map +1 -0
  9. package/build/react/EpilotIcon.d.ts +16 -0
  10. package/build/react/EpilotIcon.js +148 -1
  11. package/build/react/EpilotIcon.js.map +1 -1
  12. package/build/react/Library/index.d.ts +6 -0
  13. package/build/react/Library/index.js +242 -0
  14. package/build/react/Library/index.js.map +1 -0
  15. package/build/react/Trending/index.d.ts +6 -0
  16. package/build/react/Trending/index.js +241 -0
  17. package/build/react/Trending/index.js.map +1 -0
  18. package/build/react/index.d.ts +4 -0
  19. package/build/react/index.js +163 -4
  20. package/build/react/index.js.map +1 -1
  21. package/build/svg/AreaChart/data.d.ts +3 -0
  22. package/build/svg/AreaChart/data.js +53 -0
  23. package/build/svg/AreaChart/data.js.map +1 -0
  24. package/build/svg/AreaChart/icon-fill.svg +6 -0
  25. package/build/svg/AreaChart/icon.svg +6 -0
  26. package/build/svg/AreaChart/index.d.ts +3 -0
  27. package/build/svg/AreaChart/index.js +136 -0
  28. package/build/svg/AreaChart/index.js.map +1 -0
  29. package/build/svg/ChartLine/data.d.ts +3 -0
  30. package/build/svg/ChartLine/data.js +53 -0
  31. package/build/svg/ChartLine/data.js.map +1 -0
  32. package/build/svg/ChartLine/icon-fill.svg +6 -0
  33. package/build/svg/ChartLine/icon.svg +6 -0
  34. package/build/svg/ChartLine/index.d.ts +3 -0
  35. package/build/svg/ChartLine/index.js +136 -0
  36. package/build/svg/ChartLine/index.js.map +1 -0
  37. package/build/svg/Library/data.d.ts +3 -0
  38. package/build/svg/Library/data.js +53 -0
  39. package/build/svg/Library/data.js.map +1 -0
  40. package/build/svg/Library/icon-fill.svg +8 -0
  41. package/build/svg/Library/icon.svg +8 -0
  42. package/build/svg/Library/index.d.ts +3 -0
  43. package/build/svg/Library/index.js +136 -0
  44. package/build/svg/Library/index.js.map +1 -0
  45. package/build/svg/Trending/data.d.ts +3 -0
  46. package/build/svg/Trending/data.js +52 -0
  47. package/build/svg/Trending/data.js.map +1 -0
  48. package/build/svg/Trending/icon-fill.svg +1 -0
  49. package/build/svg/Trending/icon.svg +1 -0
  50. package/build/svg/Trending/index.d.ts +3 -0
  51. package/build/svg/Trending/index.js +135 -0
  52. package/build/svg/Trending/index.js.map +1 -0
  53. package/build/svg/index.d.ts +4 -0
  54. package/build/svg/index.js +163 -4
  55. package/build/svg/index.js.map +1 -1
  56. package/build/svg/svgIcon.d.ts +4 -0
  57. package/build/svg/svgIcon.js +148 -1
  58. package/build/svg/svgIcon.js.map +1 -1
  59. package/build/version.json +2 -2
  60. package/dist/bundle.js +1 -1
  61. package/dist/bundle.js.map +1 -1
  62. package/dist/version.json +2 -2
  63. package/icons.config.yaml +13 -0
  64. package/index.js +268 -9
  65. package/index.js.map +1 -1
  66. package/package.json +1 -1
  67. package/react/AreaChart/index.d.ts +6 -0
  68. package/react/AreaChart/index.js +242 -0
  69. package/react/AreaChart/index.js.map +1 -0
  70. package/react/ChartLine/index.d.ts +6 -0
  71. package/react/ChartLine/index.js +242 -0
  72. package/react/ChartLine/index.js.map +1 -0
  73. package/react/EpilotIcon.d.ts +16 -0
  74. package/react/EpilotIcon.js +148 -1
  75. package/react/EpilotIcon.js.map +1 -1
  76. package/react/Library/index.d.ts +6 -0
  77. package/react/Library/index.js +242 -0
  78. package/react/Library/index.js.map +1 -0
  79. package/react/Trending/index.d.ts +6 -0
  80. package/react/Trending/index.js +241 -0
  81. package/react/Trending/index.js.map +1 -0
  82. package/react/index.d.ts +4 -0
  83. package/react/index.js +163 -4
  84. package/react/index.js.map +1 -1
  85. package/src/react/AreaChart/index.tsx +6 -0
  86. package/src/react/AreaChart/story.stories.tsx +13 -0
  87. package/src/react/ChartLine/index.tsx +6 -0
  88. package/src/react/ChartLine/story.stories.tsx +13 -0
  89. package/src/react/EpilotIcon.tsx +8 -0
  90. package/src/react/Library/index.tsx +6 -0
  91. package/src/react/Library/story.stories.tsx +13 -0
  92. package/src/react/Trending/index.tsx +6 -0
  93. package/src/react/Trending/story.stories.tsx +13 -0
  94. package/src/react/index.ts +4 -0
  95. package/src/svg/AreaChart/data.ts +9 -0
  96. package/src/svg/AreaChart/icon-fill.svg +6 -0
  97. package/src/svg/AreaChart/icon.svg +6 -0
  98. package/src/svg/AreaChart/index.ts +7 -0
  99. package/src/svg/ChartLine/data.ts +9 -0
  100. package/src/svg/ChartLine/icon-fill.svg +6 -0
  101. package/src/svg/ChartLine/icon.svg +6 -0
  102. package/src/svg/ChartLine/index.ts +7 -0
  103. package/src/svg/Library/data.ts +9 -0
  104. package/src/svg/Library/icon-fill.svg +8 -0
  105. package/src/svg/Library/icon.svg +8 -0
  106. package/src/svg/Library/index.ts +7 -0
  107. package/src/svg/Trending/data.ts +8 -0
  108. package/src/svg/Trending/icon-fill.svg +1 -0
  109. package/src/svg/Trending/icon.svg +1 -0
  110. package/src/svg/Trending/index.ts +7 -0
  111. package/src/svg/index.ts +4 -0
  112. package/src/svg/svgIcon.ts +8 -0
  113. package/svg/AreaChart/data.d.ts +3 -0
  114. package/svg/AreaChart/data.js +53 -0
  115. package/svg/AreaChart/data.js.map +1 -0
  116. package/svg/AreaChart/icon-fill.svg +6 -0
  117. package/svg/AreaChart/icon.svg +6 -0
  118. package/svg/AreaChart/index.d.ts +3 -0
  119. package/svg/AreaChart/index.js +136 -0
  120. package/svg/AreaChart/index.js.map +1 -0
  121. package/svg/ChartLine/data.d.ts +3 -0
  122. package/svg/ChartLine/data.js +53 -0
  123. package/svg/ChartLine/data.js.map +1 -0
  124. package/svg/ChartLine/icon-fill.svg +6 -0
  125. package/svg/ChartLine/icon.svg +6 -0
  126. package/svg/ChartLine/index.d.ts +3 -0
  127. package/svg/ChartLine/index.js +136 -0
  128. package/svg/ChartLine/index.js.map +1 -0
  129. package/svg/Library/data.d.ts +3 -0
  130. package/svg/Library/data.js +53 -0
  131. package/svg/Library/data.js.map +1 -0
  132. package/svg/Library/icon-fill.svg +8 -0
  133. package/svg/Library/icon.svg +8 -0
  134. package/svg/Library/index.d.ts +3 -0
  135. package/svg/Library/index.js +136 -0
  136. package/svg/Library/index.js.map +1 -0
  137. package/svg/Trending/data.d.ts +3 -0
  138. package/svg/Trending/data.js +52 -0
  139. package/svg/Trending/data.js.map +1 -0
  140. package/svg/Trending/icon-fill.svg +1 -0
  141. package/svg/Trending/icon.svg +1 -0
  142. package/svg/Trending/index.d.ts +3 -0
  143. package/svg/Trending/index.js +135 -0
  144. package/svg/Trending/index.js.map +1 -0
  145. package/svg/index.d.ts +4 -0
  146. package/svg/index.js +163 -4
  147. package/svg/index.js.map +1 -1
  148. package/svg/svgIcon.d.ts +4 -0
  149. package/svg/svgIcon.js +148 -1
  150. package/svg/svgIcon.js.map +1 -1
  151. package/version.json +2 -2
package/svg/index.js CHANGED
@@ -530,6 +530,40 @@ const ArchiveSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvg
530
530
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (ArchiveSVG)));
531
531
 
532
532
 
533
+ /***/ }),
534
+
535
+ /***/ 38874:
536
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
537
+
538
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
539
+ /* harmony export */ data: () => (/* binding */ data)
540
+ /* harmony export */ });
541
+
542
+ const data = {
543
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m7 15 3-4 3 2 4-5v8H7z"/></g>',
544
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m7 15 3-4 3 2 4-5v8H7z"/></g>',
545
+ vb: "0 0 24 24"
546
+ };
547
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
548
+
549
+
550
+ /***/ }),
551
+
552
+ /***/ 58766:
553
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
554
+
555
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
556
+ /* harmony export */ AreaChartSVG: () => (/* binding */ AreaChartSVG)
557
+ /* harmony export */ });
558
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
559
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38874);
560
+
561
+
562
+
563
+ const AreaChartSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
564
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (AreaChartSVG)));
565
+
566
+
533
567
  /***/ }),
534
568
 
535
569
  /***/ 41844:
@@ -1423,6 +1457,40 @@ const CategorySVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSv
1423
1457
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (CategorySVG)));
1424
1458
 
1425
1459
 
1460
+ /***/ }),
1461
+
1462
+ /***/ 23995:
1463
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1464
+
1465
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1466
+ /* harmony export */ data: () => (/* binding */ data)
1467
+ /* harmony export */ });
1468
+
1469
+ const data = {
1470
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m19 9-5 5-4-4-3 3"/></g>',
1471
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m19 9-5 5-4-4-3 3"/></g>',
1472
+ vb: "0 0 24 24"
1473
+ };
1474
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
1475
+
1476
+
1477
+ /***/ }),
1478
+
1479
+ /***/ 31038:
1480
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1481
+
1482
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1483
+ /* harmony export */ ChartLineSVG: () => (/* binding */ ChartLineSVG)
1484
+ /* harmony export */ });
1485
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
1486
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23995);
1487
+
1488
+
1489
+
1490
+ const ChartLineSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
1491
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (ChartLineSVG)));
1492
+
1493
+
1426
1494
  /***/ }),
1427
1495
 
1428
1496
  /***/ 24784:
@@ -4510,6 +4578,40 @@ const LeftPanelOpenSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.bu
4510
4578
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (LeftPanelOpenSVG)));
4511
4579
 
4512
4580
 
4581
+ /***/ }),
4582
+
4583
+ /***/ 16496:
4584
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4585
+
4586
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4587
+ /* harmony export */ data: () => (/* binding */ data)
4588
+ /* harmony export */ });
4589
+
4590
+ const data = {
4591
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
4592
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
4593
+ vb: "0 0 24 24"
4594
+ };
4595
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
4596
+
4597
+
4598
+ /***/ }),
4599
+
4600
+ /***/ 29931:
4601
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4602
+
4603
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4604
+ /* harmony export */ LibrarySVG: () => (/* binding */ LibrarySVG)
4605
+ /* harmony export */ });
4606
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
4607
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16496);
4608
+
4609
+
4610
+
4611
+ const LibrarySVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
4612
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (LibrarySVG)));
4613
+
4614
+
4513
4615
  /***/ }),
4514
4616
 
4515
4617
  /***/ 18602:
@@ -8061,6 +8163,39 @@ const ToggleSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgS
8061
8163
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (ToggleSVG)));
8062
8164
 
8063
8165
 
8166
+ /***/ }),
8167
+
8168
+ /***/ 81796:
8169
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8170
+
8171
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8172
+ /* harmony export */ data: () => (/* binding */ data)
8173
+ /* harmony export */ });
8174
+
8175
+ const data = {
8176
+ o: '<path d="M95-243q-12-12-12-28-1-17 12-29l224-222q22-23 55-23t56 23l111 111 220-221h-83q-16 0-28-11-11-12-11-29t11-28q12-11 28-11h177q16 0 28 11 12 12 12 29v176q0 16-11 27-11 12-28 12-16 0-28-12-12-11-12-27v-79L596-355q-23 23-56 23t-55-23L373-465 151-243q-12 12-28 12-17 0-28-12Z"/>',
8177
+ f: '<path d="M95-243q-12-12-12-28-1-17 12-29l224-222q22-23 55-23t56 23l111 111 220-221h-83q-16 0-28-11-11-12-11-29t11-28q12-11 28-11h177q16 0 28 11 12 12 12 29v176q0 16-11 27-11 12-28 12-16 0-28-12-12-11-12-27v-79L596-355q-23 23-56 23t-55-23L373-465 151-243q-12 12-28 12-17 0-28-12Z"/>'
8178
+ };
8179
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
8180
+
8181
+
8182
+ /***/ }),
8183
+
8184
+ /***/ 26806:
8185
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8186
+
8187
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8188
+ /* harmony export */ TrendingSVG: () => (/* binding */ TrendingSVG)
8189
+ /* harmony export */ });
8190
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
8191
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81796);
8192
+
8193
+
8194
+
8195
+ const TrendingSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
8196
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (TrendingSVG)));
8197
+
8198
+
8064
8199
  /***/ }),
8065
8200
 
8066
8201
  /***/ 44737:
@@ -8726,6 +8861,10 @@ const WorkflowSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSv
8726
8861
  /* harmony import */ var _Group__WEBPACK_IMPORTED_MODULE_252__ = __webpack_require__(80917);
8727
8862
  /* harmony import */ var _FolderLimited__WEBPACK_IMPORTED_MODULE_253__ = __webpack_require__(94413);
8728
8863
  /* harmony import */ var _Analytics__WEBPACK_IMPORTED_MODULE_254__ = __webpack_require__(87581);
8864
+ /* harmony import */ var _AreaChart__WEBPACK_IMPORTED_MODULE_255__ = __webpack_require__(58766);
8865
+ /* harmony import */ var _Trending__WEBPACK_IMPORTED_MODULE_256__ = __webpack_require__(26806);
8866
+ /* harmony import */ var _Library__WEBPACK_IMPORTED_MODULE_257__ = __webpack_require__(29931);
8867
+ /* harmony import */ var _ChartLine__WEBPACK_IMPORTED_MODULE_258__ = __webpack_require__(31038);
8729
8868
 
8730
8869
  var __defProp = Object.defineProperty;
8731
8870
  var __getOwnPropSymbols = Object.getOwnPropertySymbols;
@@ -9005,6 +9144,10 @@ var __objRest = (source, exclude) => {
9005
9144
 
9006
9145
 
9007
9146
 
9147
+
9148
+
9149
+
9150
+
9008
9151
 
9009
9152
 
9010
9153
 
@@ -9265,7 +9408,11 @@ const svgMap = {
9265
9408
  code: _Code__WEBPACK_IMPORTED_MODULE_251__.CodeSVG,
9266
9409
  group: _Group__WEBPACK_IMPORTED_MODULE_252__.GroupSVG,
9267
9410
  folder_limited: _FolderLimited__WEBPACK_IMPORTED_MODULE_253__.FolderLimitedSVG,
9268
- analytics: _Analytics__WEBPACK_IMPORTED_MODULE_254__.AnalyticsSVG
9411
+ analytics: _Analytics__WEBPACK_IMPORTED_MODULE_254__.AnalyticsSVG,
9412
+ area_chart: _AreaChart__WEBPACK_IMPORTED_MODULE_255__.AreaChartSVG,
9413
+ trending: _Trending__WEBPACK_IMPORTED_MODULE_256__.TrendingSVG,
9414
+ library: _Library__WEBPACK_IMPORTED_MODULE_257__.LibrarySVG,
9415
+ chart_line: _ChartLine__WEBPACK_IMPORTED_MODULE_258__.ChartLineSVG
9269
9416
  };
9270
9417
  const defaultOpts = {
9271
9418
  name: "epilot",
@@ -9397,6 +9544,7 @@ __webpack_require__.r(__webpack_exports__);
9397
9544
  /* harmony export */ AnalyticsSVG: () => (/* reexport safe */ _Analytics__WEBPACK_IMPORTED_MODULE_254__.AnalyticsSVG),
9398
9545
  /* harmony export */ ApartmentSVG: () => (/* reexport safe */ _Apartment__WEBPACK_IMPORTED_MODULE_185__.ApartmentSVG),
9399
9546
  /* harmony export */ ArchiveSVG: () => (/* reexport safe */ _Archive__WEBPACK_IMPORTED_MODULE_191__.ArchiveSVG),
9547
+ /* harmony export */ AreaChartSVG: () => (/* reexport safe */ _AreaChart__WEBPACK_IMPORTED_MODULE_255__.AreaChartSVG),
9400
9548
  /* harmony export */ ArrowCircleLeftSVG: () => (/* reexport safe */ _ArrowCircleLeft__WEBPACK_IMPORTED_MODULE_96__.ArrowCircleLeftSVG),
9401
9549
  /* harmony export */ ArrowDownSVG: () => (/* reexport safe */ _ArrowDown__WEBPACK_IMPORTED_MODULE_222__.ArrowDownSVG),
9402
9550
  /* harmony export */ ArrowLeftSVG: () => (/* reexport safe */ _ArrowLeft__WEBPACK_IMPORTED_MODULE_48__.ArrowLeftSVG),
@@ -9424,6 +9572,7 @@ __webpack_require__.r(__webpack_exports__);
9424
9572
  /* harmony export */ CampaignSVG: () => (/* reexport safe */ _Campaign__WEBPACK_IMPORTED_MODULE_200__.CampaignSVG),
9425
9573
  /* harmony export */ CardsSVG: () => (/* reexport safe */ _Cards__WEBPACK_IMPORTED_MODULE_203__.CardsSVG),
9426
9574
  /* harmony export */ CategorySVG: () => (/* reexport safe */ _Category__WEBPACK_IMPORTED_MODULE_138__.CategorySVG),
9575
+ /* harmony export */ ChartLineSVG: () => (/* reexport safe */ _ChartLine__WEBPACK_IMPORTED_MODULE_258__.ChartLineSVG),
9427
9576
  /* harmony export */ ChatBubbleSVG: () => (/* reexport safe */ _ChatBubble__WEBPACK_IMPORTED_MODULE_209__.ChatBubbleSVG),
9428
9577
  /* harmony export */ CheckBoxSVG: () => (/* reexport safe */ _CheckBox__WEBPACK_IMPORTED_MODULE_119__.CheckBoxSVG),
9429
9578
  /* harmony export */ CheckCircleSVG: () => (/* reexport safe */ _CheckCircle__WEBPACK_IMPORTED_MODULE_9__.CheckCircleSVG),
@@ -9517,6 +9666,7 @@ __webpack_require__.r(__webpack_exports__);
9517
9666
  /* harmony export */ LabsSVG: () => (/* reexport safe */ _Labs__WEBPACK_IMPORTED_MODULE_243__.LabsSVG),
9518
9667
  /* harmony export */ LeftPanelCloseSVG: () => (/* reexport safe */ _LeftPanelClose__WEBPACK_IMPORTED_MODULE_226__.LeftPanelCloseSVG),
9519
9668
  /* harmony export */ LeftPanelOpenSVG: () => (/* reexport safe */ _LeftPanelOpen__WEBPACK_IMPORTED_MODULE_227__.LeftPanelOpenSVG),
9669
+ /* harmony export */ LibrarySVG: () => (/* reexport safe */ _Library__WEBPACK_IMPORTED_MODULE_257__.LibrarySVG),
9520
9670
  /* harmony export */ LinkOffSVG: () => (/* reexport safe */ _LinkOff__WEBPACK_IMPORTED_MODULE_194__.LinkOffSVG),
9521
9671
  /* harmony export */ LinkSVG: () => (/* reexport safe */ _Link__WEBPACK_IMPORTED_MODULE_38__.LinkSVG),
9522
9672
  /* harmony export */ LocationAwaySVG: () => (/* reexport safe */ _LocationAway__WEBPACK_IMPORTED_MODULE_193__.LocationAwaySVG),
@@ -9624,6 +9774,7 @@ __webpack_require__.r(__webpack_exports__);
9624
9774
  /* harmony export */ ThumbUpSVG: () => (/* reexport safe */ _ThumbUp__WEBPACK_IMPORTED_MODULE_115__.ThumbUpSVG),
9625
9775
  /* harmony export */ TicketSVG: () => (/* reexport safe */ _Ticket__WEBPACK_IMPORTED_MODULE_201__.TicketSVG),
9626
9776
  /* harmony export */ ToggleSVG: () => (/* reexport safe */ _Toggle__WEBPACK_IMPORTED_MODULE_213__.ToggleSVG),
9777
+ /* harmony export */ TrendingSVG: () => (/* reexport safe */ _Trending__WEBPACK_IMPORTED_MODULE_256__.TrendingSVG),
9627
9778
  /* harmony export */ TwoColumnsSVG: () => (/* reexport safe */ _TwoColumns__WEBPACK_IMPORTED_MODULE_150__.TwoColumnsSVG),
9628
9779
  /* harmony export */ UnarchiveSVG: () => (/* reexport safe */ _Unarchive__WEBPACK_IMPORTED_MODULE_192__.UnarchiveSVG),
9629
9780
  /* harmony export */ UndoSVG: () => (/* reexport safe */ _Undo__WEBPACK_IMPORTED_MODULE_197__.UndoSVG),
@@ -9636,8 +9787,8 @@ __webpack_require__.r(__webpack_exports__);
9636
9787
  /* harmony export */ WebhookSVG: () => (/* reexport safe */ _Webhook__WEBPACK_IMPORTED_MODULE_78__.WebhookSVG),
9637
9788
  /* harmony export */ WidgetsSVG: () => (/* reexport safe */ _Widgets__WEBPACK_IMPORTED_MODULE_205__.WidgetsSVG),
9638
9789
  /* harmony export */ WorkflowSVG: () => (/* reexport safe */ _Workflow__WEBPACK_IMPORTED_MODULE_80__.WorkflowSVG),
9639
- /* harmony export */ svgIcon: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_255__.svgIcon),
9640
- /* harmony export */ svgMap: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_255__.svgMap)
9790
+ /* harmony export */ svgIcon: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_259__.svgIcon),
9791
+ /* harmony export */ svgMap: () => (/* reexport safe */ _svgIcon__WEBPACK_IMPORTED_MODULE_259__.svgMap)
9641
9792
  /* harmony export */ });
9642
9793
  /* harmony import */ var _Epilot__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81960);
9643
9794
  /* harmony import */ var _Edit__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(88885);
@@ -9894,7 +10045,15 @@ __webpack_require__.r(__webpack_exports__);
9894
10045
  /* harmony import */ var _Group__WEBPACK_IMPORTED_MODULE_252__ = __webpack_require__(80917);
9895
10046
  /* harmony import */ var _FolderLimited__WEBPACK_IMPORTED_MODULE_253__ = __webpack_require__(94413);
9896
10047
  /* harmony import */ var _Analytics__WEBPACK_IMPORTED_MODULE_254__ = __webpack_require__(87581);
9897
- /* harmony import */ var _svgIcon__WEBPACK_IMPORTED_MODULE_255__ = __webpack_require__(30585);
10048
+ /* harmony import */ var _AreaChart__WEBPACK_IMPORTED_MODULE_255__ = __webpack_require__(58766);
10049
+ /* harmony import */ var _Trending__WEBPACK_IMPORTED_MODULE_256__ = __webpack_require__(26806);
10050
+ /* harmony import */ var _Library__WEBPACK_IMPORTED_MODULE_257__ = __webpack_require__(29931);
10051
+ /* harmony import */ var _ChartLine__WEBPACK_IMPORTED_MODULE_258__ = __webpack_require__(31038);
10052
+ /* harmony import */ var _svgIcon__WEBPACK_IMPORTED_MODULE_259__ = __webpack_require__(30585);
10053
+
10054
+
10055
+
10056
+
9898
10057
 
9899
10058
 
9900
10059