@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
@@ -272,6 +272,23 @@ const Archive = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_Archive
272
272
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Archive)));
273
273
 
274
274
 
275
+ /***/ }),
276
+
277
+ /***/ 1063:
278
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
279
+
280
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
281
+ /* harmony export */ AreaChart: () => (/* binding */ AreaChart)
282
+ /* harmony export */ });
283
+ /* harmony import */ var _svg_AreaChart_data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38874);
284
+ /* harmony import */ var _makeIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44184);
285
+
286
+
287
+
288
+ const AreaChart = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_AreaChart_data__WEBPACK_IMPORTED_MODULE_0__.data, "area_chart", "AreaChart");
289
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (AreaChart)));
290
+
291
+
275
292
  /***/ }),
276
293
 
277
294
  /***/ 48939:
@@ -731,6 +748,23 @@ const Category = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_Catego
731
748
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Category)));
732
749
 
733
750
 
751
+ /***/ }),
752
+
753
+ /***/ 4058:
754
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
755
+
756
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
757
+ /* harmony export */ ChartLine: () => (/* binding */ ChartLine)
758
+ /* harmony export */ });
759
+ /* harmony import */ var _svg_ChartLine_data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23995);
760
+ /* harmony import */ var _makeIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44184);
761
+
762
+
763
+
764
+ const ChartLine = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_ChartLine_data__WEBPACK_IMPORTED_MODULE_0__.data, "chart_line", "ChartLine");
765
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (ChartLine)));
766
+
767
+
734
768
  /***/ }),
735
769
 
736
770
  /***/ 8723:
@@ -1762,6 +1796,10 @@ const Epilot = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_Epilot_d
1762
1796
  /* harmony import */ var _Group__WEBPACK_IMPORTED_MODULE_253__ = __webpack_require__(82663);
1763
1797
  /* harmony import */ var _FolderLimited__WEBPACK_IMPORTED_MODULE_254__ = __webpack_require__(86519);
1764
1798
  /* harmony import */ var _Analytics__WEBPACK_IMPORTED_MODULE_255__ = __webpack_require__(22022);
1799
+ /* harmony import */ var _AreaChart__WEBPACK_IMPORTED_MODULE_256__ = __webpack_require__(1063);
1800
+ /* harmony import */ var _Trending__WEBPACK_IMPORTED_MODULE_257__ = __webpack_require__(99221);
1801
+ /* harmony import */ var _Library__WEBPACK_IMPORTED_MODULE_258__ = __webpack_require__(8109);
1802
+ /* harmony import */ var _ChartLine__WEBPACK_IMPORTED_MODULE_259__ = __webpack_require__(4058);
1765
1803
 
1766
1804
  var __getOwnPropSymbols = Object.getOwnPropertySymbols;
1767
1805
  var __hasOwnProp = Object.prototype.hasOwnProperty;
@@ -2029,6 +2067,10 @@ var __objRest = (source, exclude) => {
2029
2067
 
2030
2068
 
2031
2069
 
2070
+
2071
+
2072
+
2073
+
2032
2074
 
2033
2075
 
2034
2076
 
@@ -2289,7 +2331,11 @@ const IconComponentsMap = {
2289
2331
  code: _Code__WEBPACK_IMPORTED_MODULE_252__.Code,
2290
2332
  group: _Group__WEBPACK_IMPORTED_MODULE_253__.Group,
2291
2333
  folder_limited: _FolderLimited__WEBPACK_IMPORTED_MODULE_254__.FolderLimited,
2292
- analytics: _Analytics__WEBPACK_IMPORTED_MODULE_255__.Analytics
2334
+ analytics: _Analytics__WEBPACK_IMPORTED_MODULE_255__.Analytics,
2335
+ area_chart: _AreaChart__WEBPACK_IMPORTED_MODULE_256__.AreaChart,
2336
+ trending: _Trending__WEBPACK_IMPORTED_MODULE_257__.Trending,
2337
+ library: _Library__WEBPACK_IMPORTED_MODULE_258__.Library,
2338
+ chart_line: _ChartLine__WEBPACK_IMPORTED_MODULE_259__.ChartLine
2293
2339
  };
2294
2340
  const EpilotIcon = (props) => {
2295
2341
  const _a = props, { name } = _a, restProps = __objRest(_a, ["name"]);
@@ -3117,6 +3163,23 @@ const LeftPanelOpen = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_L
3117
3163
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (LeftPanelOpen)));
3118
3164
 
3119
3165
 
3166
+ /***/ }),
3167
+
3168
+ /***/ 8109:
3169
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3170
+
3171
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
3172
+ /* harmony export */ Library: () => (/* binding */ Library)
3173
+ /* harmony export */ });
3174
+ /* harmony import */ var _svg_Library_data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16496);
3175
+ /* harmony import */ var _makeIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44184);
3176
+
3177
+
3178
+
3179
+ const Library = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_Library_data__WEBPACK_IMPORTED_MODULE_0__.data, "library", "Library");
3180
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Library)));
3181
+
3182
+
3120
3183
  /***/ }),
3121
3184
 
3122
3185
  /***/ 86037:
@@ -4936,6 +4999,23 @@ const Toggle = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_Toggle_d
4936
4999
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Toggle)));
4937
5000
 
4938
5001
 
5002
+ /***/ }),
5003
+
5004
+ /***/ 99221:
5005
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
5006
+
5007
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
5008
+ /* harmony export */ Trending: () => (/* binding */ Trending)
5009
+ /* harmony export */ });
5010
+ /* harmony import */ var _svg_Trending_data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81796);
5011
+ /* harmony import */ var _makeIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44184);
5012
+
5013
+
5014
+
5015
+ const Trending = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_Trending_data__WEBPACK_IMPORTED_MODULE_0__.data, "trending", "Trending");
5016
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (Trending)));
5017
+
5018
+
4939
5019
  /***/ }),
4940
5020
 
4941
5021
  /***/ 60009:
@@ -5484,6 +5564,23 @@ const data = {
5484
5564
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
5485
5565
 
5486
5566
 
5567
+ /***/ }),
5568
+
5569
+ /***/ 38874:
5570
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
5571
+
5572
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
5573
+ /* harmony export */ data: () => (/* binding */ data)
5574
+ /* harmony export */ });
5575
+
5576
+ const data = {
5577
+ 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>',
5578
+ 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>',
5579
+ vb: "0 0 24 24"
5580
+ };
5581
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
5582
+
5583
+
5487
5584
  /***/ }),
5488
5585
 
5489
5586
  /***/ 41844:
@@ -5918,6 +6015,23 @@ const data = {
5918
6015
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
5919
6016
 
5920
6017
 
6018
+ /***/ }),
6019
+
6020
+ /***/ 23995:
6021
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
6022
+
6023
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
6024
+ /* harmony export */ data: () => (/* binding */ data)
6025
+ /* harmony export */ });
6026
+
6027
+ const data = {
6028
+ 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>',
6029
+ 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>',
6030
+ vb: "0 0 24 24"
6031
+ };
6032
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
6033
+
6034
+
5921
6035
  /***/ }),
5922
6036
 
5923
6037
  /***/ 24784:
@@ -7424,6 +7538,23 @@ const data = {
7424
7538
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
7425
7539
 
7426
7540
 
7541
+ /***/ }),
7542
+
7543
+ /***/ 16496:
7544
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7545
+
7546
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7547
+ /* harmony export */ data: () => (/* binding */ data)
7548
+ /* harmony export */ });
7549
+
7550
+ const data = {
7551
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
7552
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
7553
+ vb: "0 0 24 24"
7554
+ };
7555
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
7556
+
7557
+
7427
7558
  /***/ }),
7428
7559
 
7429
7560
  /***/ 18602:
@@ -9156,6 +9287,22 @@ const data = {
9156
9287
  /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
9157
9288
 
9158
9289
 
9290
+ /***/ }),
9291
+
9292
+ /***/ 81796:
9293
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9294
+
9295
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9296
+ /* harmony export */ data: () => (/* binding */ data)
9297
+ /* harmony export */ });
9298
+
9299
+ const data = {
9300
+ 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"/>',
9301
+ 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"/>'
9302
+ };
9303
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
9304
+
9305
+
9159
9306
  /***/ }),
9160
9307
 
9161
9308
  /***/ 44737:
@@ -9489,6 +9636,7 @@ __webpack_require__.r(__webpack_exports__);
9489
9636
  /* harmony export */ Analytics: () => (/* reexport safe */ _Analytics__WEBPACK_IMPORTED_MODULE_254__.Analytics),
9490
9637
  /* harmony export */ Apartment: () => (/* reexport safe */ _Apartment__WEBPACK_IMPORTED_MODULE_185__.Apartment),
9491
9638
  /* harmony export */ Archive: () => (/* reexport safe */ _Archive__WEBPACK_IMPORTED_MODULE_191__.Archive),
9639
+ /* harmony export */ AreaChart: () => (/* reexport safe */ _AreaChart__WEBPACK_IMPORTED_MODULE_255__.AreaChart),
9492
9640
  /* harmony export */ ArrowCircleLeft: () => (/* reexport safe */ _ArrowCircleLeft__WEBPACK_IMPORTED_MODULE_96__.ArrowCircleLeft),
9493
9641
  /* harmony export */ ArrowDown: () => (/* reexport safe */ _ArrowDown__WEBPACK_IMPORTED_MODULE_222__.ArrowDown),
9494
9642
  /* harmony export */ ArrowLeft: () => (/* reexport safe */ _ArrowLeft__WEBPACK_IMPORTED_MODULE_48__.ArrowLeft),
@@ -9516,6 +9664,7 @@ __webpack_require__.r(__webpack_exports__);
9516
9664
  /* harmony export */ Campaign: () => (/* reexport safe */ _Campaign__WEBPACK_IMPORTED_MODULE_200__.Campaign),
9517
9665
  /* harmony export */ Cards: () => (/* reexport safe */ _Cards__WEBPACK_IMPORTED_MODULE_203__.Cards),
9518
9666
  /* harmony export */ Category: () => (/* reexport safe */ _Category__WEBPACK_IMPORTED_MODULE_138__.Category),
9667
+ /* harmony export */ ChartLine: () => (/* reexport safe */ _ChartLine__WEBPACK_IMPORTED_MODULE_258__.ChartLine),
9519
9668
  /* harmony export */ ChatBubble: () => (/* reexport safe */ _ChatBubble__WEBPACK_IMPORTED_MODULE_209__.ChatBubble),
9520
9669
  /* harmony export */ Check: () => (/* reexport safe */ _Check__WEBPACK_IMPORTED_MODULE_8__.Check),
9521
9670
  /* harmony export */ CheckBox: () => (/* reexport safe */ _CheckBox__WEBPACK_IMPORTED_MODULE_119__.CheckBox),
@@ -9561,7 +9710,7 @@ __webpack_require__.r(__webpack_exports__);
9561
9710
  /* harmony export */ Entity: () => (/* reexport safe */ _Entity__WEBPACK_IMPORTED_MODULE_77__.Entity),
9562
9711
  /* harmony export */ EntityBuilder: () => (/* reexport safe */ _EntityBuilder__WEBPACK_IMPORTED_MODULE_117__.EntityBuilder),
9563
9712
  /* harmony export */ Epilot: () => (/* reexport safe */ _Epilot__WEBPACK_IMPORTED_MODULE_0__.Epilot),
9564
- /* harmony export */ EpilotIcon: () => (/* reexport safe */ _EpilotIcon__WEBPACK_IMPORTED_MODULE_255__.EpilotIcon),
9713
+ /* harmony export */ EpilotIcon: () => (/* reexport safe */ _EpilotIcon__WEBPACK_IMPORTED_MODULE_259__.EpilotIcon),
9565
9714
  /* harmony export */ Error: () => (/* reexport safe */ _Error__WEBPACK_IMPORTED_MODULE_11__.Error),
9566
9715
  /* harmony export */ Euro: () => (/* reexport safe */ _Euro__WEBPACK_IMPORTED_MODULE_212__.Euro),
9567
9716
  /* harmony export */ Exclamation: () => (/* reexport safe */ _Exclamation__WEBPACK_IMPORTED_MODULE_108__.Exclamation),
@@ -9599,7 +9748,7 @@ __webpack_require__.r(__webpack_exports__);
9599
9748
  /* harmony export */ Heading: () => (/* reexport safe */ _Heading__WEBPACK_IMPORTED_MODULE_248__.Heading),
9600
9749
  /* harmony export */ Help: () => (/* reexport safe */ _Help__WEBPACK_IMPORTED_MODULE_13__.Help),
9601
9750
  /* harmony export */ Home: () => (/* reexport safe */ _Home__WEBPACK_IMPORTED_MODULE_211__.Home),
9602
- /* harmony export */ IconComponentsMap: () => (/* reexport safe */ _EpilotIcon__WEBPACK_IMPORTED_MODULE_255__.IconComponentsMap),
9751
+ /* harmony export */ IconComponentsMap: () => (/* reexport safe */ _EpilotIcon__WEBPACK_IMPORTED_MODULE_259__.IconComponentsMap),
9603
9752
  /* harmony export */ Image: () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_92__.Image),
9604
9753
  /* harmony export */ Inbox: () => (/* reexport safe */ _Inbox__WEBPACK_IMPORTED_MODULE_224__.Inbox),
9605
9754
  /* harmony export */ Info: () => (/* reexport safe */ _Info__WEBPACK_IMPORTED_MODULE_12__.Info),
@@ -9611,6 +9760,7 @@ __webpack_require__.r(__webpack_exports__);
9611
9760
  /* harmony export */ Labs: () => (/* reexport safe */ _Labs__WEBPACK_IMPORTED_MODULE_243__.Labs),
9612
9761
  /* harmony export */ LeftPanelClose: () => (/* reexport safe */ _LeftPanelClose__WEBPACK_IMPORTED_MODULE_226__.LeftPanelClose),
9613
9762
  /* harmony export */ LeftPanelOpen: () => (/* reexport safe */ _LeftPanelOpen__WEBPACK_IMPORTED_MODULE_227__.LeftPanelOpen),
9763
+ /* harmony export */ Library: () => (/* reexport safe */ _Library__WEBPACK_IMPORTED_MODULE_257__.Library),
9614
9764
  /* harmony export */ Link: () => (/* reexport safe */ _Link__WEBPACK_IMPORTED_MODULE_38__.Link),
9615
9765
  /* harmony export */ LinkOff: () => (/* reexport safe */ _LinkOff__WEBPACK_IMPORTED_MODULE_194__.LinkOff),
9616
9766
  /* harmony export */ Location: () => (/* reexport safe */ _Location__WEBPACK_IMPORTED_MODULE_242__.Location),
@@ -9718,6 +9868,7 @@ __webpack_require__.r(__webpack_exports__);
9718
9868
  /* harmony export */ ThumbUp: () => (/* reexport safe */ _ThumbUp__WEBPACK_IMPORTED_MODULE_115__.ThumbUp),
9719
9869
  /* harmony export */ Ticket: () => (/* reexport safe */ _Ticket__WEBPACK_IMPORTED_MODULE_201__.Ticket),
9720
9870
  /* harmony export */ Toggle: () => (/* reexport safe */ _Toggle__WEBPACK_IMPORTED_MODULE_213__.Toggle),
9871
+ /* harmony export */ Trending: () => (/* reexport safe */ _Trending__WEBPACK_IMPORTED_MODULE_256__.Trending),
9721
9872
  /* harmony export */ TwoColumns: () => (/* reexport safe */ _TwoColumns__WEBPACK_IMPORTED_MODULE_150__.TwoColumns),
9722
9873
  /* harmony export */ Unarchive: () => (/* reexport safe */ _Unarchive__WEBPACK_IMPORTED_MODULE_192__.Unarchive),
9723
9874
  /* harmony export */ Undo: () => (/* reexport safe */ _Undo__WEBPACK_IMPORTED_MODULE_197__.Undo),
@@ -9986,7 +10137,15 @@ __webpack_require__.r(__webpack_exports__);
9986
10137
  /* harmony import */ var _Group__WEBPACK_IMPORTED_MODULE_252__ = __webpack_require__(82663);
9987
10138
  /* harmony import */ var _FolderLimited__WEBPACK_IMPORTED_MODULE_253__ = __webpack_require__(86519);
9988
10139
  /* harmony import */ var _Analytics__WEBPACK_IMPORTED_MODULE_254__ = __webpack_require__(22022);
9989
- /* harmony import */ var _EpilotIcon__WEBPACK_IMPORTED_MODULE_255__ = __webpack_require__(80726);
10140
+ /* harmony import */ var _AreaChart__WEBPACK_IMPORTED_MODULE_255__ = __webpack_require__(1063);
10141
+ /* harmony import */ var _Trending__WEBPACK_IMPORTED_MODULE_256__ = __webpack_require__(99221);
10142
+ /* harmony import */ var _Library__WEBPACK_IMPORTED_MODULE_257__ = __webpack_require__(8109);
10143
+ /* harmony import */ var _ChartLine__WEBPACK_IMPORTED_MODULE_258__ = __webpack_require__(4058);
10144
+ /* harmony import */ var _EpilotIcon__WEBPACK_IMPORTED_MODULE_259__ = __webpack_require__(80726);
10145
+
10146
+
10147
+
10148
+
9990
10149
 
9991
10150
 
9992
10151