@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
@@ -0,0 +1,136 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({
4
+
5
+ /***/ 16496:
6
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7
+
8
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9
+ /* harmony export */ data: () => (/* binding */ data)
10
+ /* harmony export */ });
11
+
12
+ const data = {
13
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
14
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
15
+ vb: "0 0 24 24"
16
+ };
17
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
18
+
19
+
20
+ /***/ }),
21
+
22
+ /***/ 8697:
23
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24
+
25
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
26
+ /* harmony export */ buildSvgString: () => (/* binding */ buildSvgString)
27
+ /* harmony export */ });
28
+ /* unused harmony exports SVG_NS, DEFAULT_VIEWBOX */
29
+
30
+ const SVG_NS = "http://www.w3.org/2000/svg";
31
+ const DEFAULT_VIEWBOX = "0 -960 960 960";
32
+ const serializeAttrs = (attrs) => attrs ? Object.entries(attrs).map(([key, value]) => ` ${key}="${value}"`).join("") : "";
33
+ const buildSvgString = (data, opts = {}) => {
34
+ var _a, _b, _c, _d;
35
+ const { variant = "filled", size, width, height, fill, xclass } = opts;
36
+ const inner = variant === "outlined" ? (_a = data.o) != null ? _a : data.f : (_b = data.f) != null ? _b : data.o;
37
+ if (inner == null)
38
+ return "";
39
+ const w = size != null ? size : width;
40
+ const h = size != null ? size : height;
41
+ const rootAttrs = variant === "outlined" ? data.rao : data.raf;
42
+ const viewBox = (_d = (_c = variant === "outlined" ? data.vbo : void 0) != null ? _c : data.vb) != null ? _d : DEFAULT_VIEWBOX;
43
+ let attrs = `xmlns="${SVG_NS}" viewBox="${viewBox}"`;
44
+ attrs += serializeAttrs(rootAttrs);
45
+ if (fill)
46
+ attrs += ` fill="${fill}"`;
47
+ if (w !== void 0 && w !== "")
48
+ attrs += ` width="${w}"`;
49
+ if (h !== void 0 && h !== "")
50
+ attrs += ` height="${h}"`;
51
+ if (xclass)
52
+ attrs += ` class="${xclass}"`;
53
+ return `<svg ${attrs}>${inner}</svg>`;
54
+ };
55
+
56
+
57
+ /***/ })
58
+
59
+ /******/ });
60
+ /************************************************************************/
61
+ /******/ // The module cache
62
+ /******/ var __webpack_module_cache__ = {};
63
+ /******/
64
+ /******/ // The require function
65
+ /******/ function __webpack_require__(moduleId) {
66
+ /******/ // Check if module is in cache
67
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
68
+ /******/ if (cachedModule !== undefined) {
69
+ /******/ return cachedModule.exports;
70
+ /******/ }
71
+ /******/ // Create a new module (and put it into the cache)
72
+ /******/ var module = __webpack_module_cache__[moduleId] = {
73
+ /******/ // no module.id needed
74
+ /******/ // no module.loaded needed
75
+ /******/ exports: {}
76
+ /******/ };
77
+ /******/
78
+ /******/ // Execute the module function
79
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
80
+ /******/
81
+ /******/ // Return the exports of the module
82
+ /******/ return module.exports;
83
+ /******/ }
84
+ /******/
85
+ /************************************************************************/
86
+ /******/ /* webpack/runtime/define property getters */
87
+ /******/ (() => {
88
+ /******/ // define getter functions for harmony exports
89
+ /******/ __webpack_require__.d = (exports, definition) => {
90
+ /******/ for(var key in definition) {
91
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
92
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
93
+ /******/ }
94
+ /******/ }
95
+ /******/ };
96
+ /******/ })();
97
+ /******/
98
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
99
+ /******/ (() => {
100
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
101
+ /******/ })();
102
+ /******/
103
+ /******/ /* webpack/runtime/make namespace object */
104
+ /******/ (() => {
105
+ /******/ // define __esModule on exports
106
+ /******/ __webpack_require__.r = (exports) => {
107
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
108
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
109
+ /******/ }
110
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
111
+ /******/ };
112
+ /******/ })();
113
+ /******/
114
+ /************************************************************************/
115
+ var __webpack_exports__ = {};
116
+ // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
117
+ (() => {
118
+ __webpack_require__.r(__webpack_exports__);
119
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
120
+ /* harmony export */ LibrarySVG: () => (/* binding */ LibrarySVG),
121
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
122
+ /* harmony export */ });
123
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
124
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16496);
125
+
126
+
127
+
128
+ const LibrarySVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
129
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (LibrarySVG);
130
+
131
+ })();
132
+
133
+ module.exports = __webpack_exports__;
134
+ /******/ })()
135
+ ;
136
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/Library/index.js","mappings":";;;;;;;;;;;AAEO,MAAM,OAAiB;AAAA,EAC5B,GAAG;AAAA,EACH,GAAG;AAAA,EACH,IAAI;AACN;AAEA,sEAAe,oDAAI,IAAC;;;;;;;;;;;;;ACNb,MAAM,SAAS;AAMf,MAAM,kBAAkB;AAI/B,MAAM,iBAAiB,CAAC,UACtB,QACI,OAAO,QAAQ,KAAK,EACjB,IAAI,CAAC,CAAC,KAAK,KAAK,MAAM,IAAI,QAAQ,QAAQ,EAC1C,KAAK,EAAE,IACV;AAOC,MAAM,iBAAiB,CAAC,MAAgB,OAAsB,CAAC,MAAc;AAxBpF;AAyBE,QAAM,EAAE,UAAU,UAAU,MAAM,OAAO,QAAQ,MAAM,OAAO,IAAI;AAClE,QAAM,QAAQ,YAAY,cAAa,UAAK,MAAL,YAAU,KAAK,KAAI,UAAK,MAAL,YAAU,KAAK;AAEzE,MAAI,SAAS;AAAM,WAAO;AAE1B,QAAM,IAAI,sBAAQ;AAClB,QAAM,IAAI,sBAAQ;AAClB,QAAM,YAAY,YAAY,aAAa,KAAK,MAAM,KAAK;AAC3D,QAAM,WAAW,uBAAY,aAAa,KAAK,MAAM,WAApC,YAAkD,KAAK,OAAvD,YAA6D;AAE9E,MAAI,QAAQ,UAAU,oBAAoB;AAC1C,WAAS,eAAe,SAAS;AACjC,MAAI;AAAM,aAAS,UAAU;AAC7B,MAAI,MAAM,UAAa,MAAM;AAAI,aAAS,WAAW;AACrD,MAAI,MAAM,UAAa,MAAM;AAAI,aAAS,YAAY;AACtD,MAAI;AAAQ,aAAS,WAAW;AAEhC,SAAO,QAAQ,SAAS;AAC1B;;;;;;;UC3CA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;ACNmD;AAE9B;AAEd,MAAM,aAAa,CAAC,SAAiC,0DAAc,CAAC,uCAAI,EAAE,IAAI;AAErF,iEAAe,UAAU,EAAC","sources":["webpack://icons/./src/svg/Library/data.ts","webpack://icons/./src/svgString.ts","webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/svg/Library/index.ts"],"sourcesContent":["import type { IconData } from '../../types';\n\nexport const data: IconData = {\n o: '<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M4 4v16M8 8v12M12 6v14M16 6l4 14\"/></g>',\n f: '<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M4 4v16M8 8v12M12 6v14M16 6l4 14\"/></g>',\n vb: '0 0 24 24',\n};\n\nexport default data;\n","import type { IconData, IconProps } from './types';\n\nexport const SVG_NS = 'http://www.w3.org/2000/svg';\n\n/**\n * Default viewBox shared by all Material Symbols icons. Icons that use a\n * different viewBox store it in `IconData.vb`.\n */\nexport const DEFAULT_VIEWBOX = '0 -960 960 960';\n\nexport type SvgStringOpts = IconProps & { xclass?: string };\n\nconst serializeAttrs = (attrs?: Record<string, string>): string =>\n attrs\n ? Object.entries(attrs)\n .map(([key, value]) => ` ${key}=\"${value}\"`)\n .join('')\n : '';\n\n/**\n * Build a standalone SVG string from icon data. Replaces the previous\n * DOMParser-based implementation, so it works in non-DOM environments (SSR,\n * tests) too.\n */\nexport const buildSvgString = (data: IconData, opts: SvgStringOpts = {}): string => {\n const { variant = 'filled', size, width, height, fill, xclass } = opts;\n const inner = variant === 'outlined' ? data.o ?? data.f : data.f ?? data.o;\n\n if (inner == null) return '';\n\n const w = size ?? width;\n const h = size ?? height;\n const rootAttrs = variant === 'outlined' ? data.rao : data.raf;\n const viewBox = (variant === 'outlined' ? data.vbo : undefined) ?? data.vb ?? DEFAULT_VIEWBOX;\n\n let attrs = `xmlns=\"${SVG_NS}\" viewBox=\"${viewBox}\"`;\n attrs += serializeAttrs(rootAttrs);\n if (fill) attrs += ` fill=\"${fill}\"`;\n if (w !== undefined && w !== '') attrs += ` width=\"${w}\"`;\n if (h !== undefined && h !== '') attrs += ` height=\"${h}\"`;\n if (xclass) attrs += ` class=\"${xclass}\"`;\n\n return `<svg ${attrs}>${inner}</svg>`;\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import { buildSvgString, type SvgStringOpts } from '../../svgString';\n\nimport { data } from './data';\n\nexport const LibrarySVG = (opts?: SvgStringOpts): string => buildSvgString(data, opts);\n\nexport default LibrarySVG;\n"],"names":[],"sourceRoot":""}
@@ -0,0 +1,3 @@
1
+ import type { IconData } from '../../types';
2
+ export declare const data: IconData;
3
+ export default data;
@@ -0,0 +1,52 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ // The require scope
4
+ /******/ var __webpack_require__ = {};
5
+ /******/
6
+ /************************************************************************/
7
+ /******/ /* webpack/runtime/define property getters */
8
+ /******/ (() => {
9
+ /******/ // define getter functions for harmony exports
10
+ /******/ __webpack_require__.d = (exports, definition) => {
11
+ /******/ for(var key in definition) {
12
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
13
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
14
+ /******/ }
15
+ /******/ }
16
+ /******/ };
17
+ /******/ })();
18
+ /******/
19
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
20
+ /******/ (() => {
21
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
22
+ /******/ })();
23
+ /******/
24
+ /******/ /* webpack/runtime/make namespace object */
25
+ /******/ (() => {
26
+ /******/ // define __esModule on exports
27
+ /******/ __webpack_require__.r = (exports) => {
28
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
29
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
30
+ /******/ }
31
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
32
+ /******/ };
33
+ /******/ })();
34
+ /******/
35
+ /************************************************************************/
36
+ var __webpack_exports__ = {};
37
+ __webpack_require__.r(__webpack_exports__);
38
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
39
+ /* harmony export */ data: () => (/* binding */ data),
40
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
41
+ /* harmony export */ });
42
+
43
+ const data = {
44
+ 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"/>',
45
+ 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"/>'
46
+ };
47
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (data);
48
+
49
+ module.exports = __webpack_exports__;
50
+ /******/ })()
51
+ ;
52
+ //# sourceMappingURL=data.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/Trending/data.js","mappings":";;UAAA;UACA;;;;;WCDA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;ACJO,MAAM,OAAiB;AAAA,EAC5B,GAAG;AAAA,EACH,GAAG;AACL;AAEA,iEAAe,IAAI,EAAC","sources":["webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/svg/Trending/data.ts"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import type { IconData } from '../../types';\n\nexport const data: IconData = {\n 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\"/>',\n 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\"/>',\n};\n\nexport default data;\n"],"names":[],"sourceRoot":""}
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M94.65-242.96q-11.82-11.82-12.11-28.28-.28-16.46 12.11-28.85L318.7-522q22.58-23.22 55.25-23.22 32.66 0 55.88 23.22l111.43 110.87 219.52-220.65h-82.3q-16.71 0-28.16-11.5-11.45-11.51-11.45-28.29t11.45-28.1Q661.77-711 678.48-711h176.04q16.71 0 28.44 11.45 11.74 11.45 11.74 28.16v176.04q0 15.96-11.1 27.79-11.1 11.82-27.85 11.82-16.18 0-28.01-11.82-11.83-11.83-11.83-27.79v-78.87L595.83-355.13q-23.15 23.22-55.82 23.22-32.66 0-55.31-23.22L373.26-465 151.22-242.96q-11.83 11.83-28.29 11.83-16.45 0-28.28-11.83Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M94.65-242.96q-11.82-11.82-12.11-28.28-.28-16.46 12.11-28.85L318.7-522q22.58-23.22 55.25-23.22 32.66 0 55.88 23.22l111.43 110.87 219.52-220.65h-82.3q-16.71 0-28.16-11.5-11.45-11.51-11.45-28.29t11.45-28.1Q661.77-711 678.48-711h176.04q16.71 0 28.44 11.45 11.74 11.45 11.74 28.16v176.04q0 15.96-11.1 27.79-11.1 11.82-27.85 11.82-16.18 0-28.01-11.82-11.83-11.83-11.83-27.79v-78.87L595.83-355.13q-23.15 23.22-55.82 23.22-32.66 0-55.31-23.22L373.26-465 151.22-242.96q-11.83 11.83-28.29 11.83-16.45 0-28.28-11.83Z"/></svg>
@@ -0,0 +1,3 @@
1
+ import { type SvgStringOpts } from '../../svgString';
2
+ export declare const TrendingSVG: (opts?: SvgStringOpts) => string;
3
+ export default TrendingSVG;
@@ -0,0 +1,135 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({
4
+
5
+ /***/ 81796:
6
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7
+
8
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9
+ /* harmony export */ data: () => (/* binding */ data)
10
+ /* harmony export */ });
11
+
12
+ const data = {
13
+ 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"/>',
14
+ 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"/>'
15
+ };
16
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
17
+
18
+
19
+ /***/ }),
20
+
21
+ /***/ 8697:
22
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23
+
24
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
25
+ /* harmony export */ buildSvgString: () => (/* binding */ buildSvgString)
26
+ /* harmony export */ });
27
+ /* unused harmony exports SVG_NS, DEFAULT_VIEWBOX */
28
+
29
+ const SVG_NS = "http://www.w3.org/2000/svg";
30
+ const DEFAULT_VIEWBOX = "0 -960 960 960";
31
+ const serializeAttrs = (attrs) => attrs ? Object.entries(attrs).map(([key, value]) => ` ${key}="${value}"`).join("") : "";
32
+ const buildSvgString = (data, opts = {}) => {
33
+ var _a, _b, _c, _d;
34
+ const { variant = "filled", size, width, height, fill, xclass } = opts;
35
+ const inner = variant === "outlined" ? (_a = data.o) != null ? _a : data.f : (_b = data.f) != null ? _b : data.o;
36
+ if (inner == null)
37
+ return "";
38
+ const w = size != null ? size : width;
39
+ const h = size != null ? size : height;
40
+ const rootAttrs = variant === "outlined" ? data.rao : data.raf;
41
+ const viewBox = (_d = (_c = variant === "outlined" ? data.vbo : void 0) != null ? _c : data.vb) != null ? _d : DEFAULT_VIEWBOX;
42
+ let attrs = `xmlns="${SVG_NS}" viewBox="${viewBox}"`;
43
+ attrs += serializeAttrs(rootAttrs);
44
+ if (fill)
45
+ attrs += ` fill="${fill}"`;
46
+ if (w !== void 0 && w !== "")
47
+ attrs += ` width="${w}"`;
48
+ if (h !== void 0 && h !== "")
49
+ attrs += ` height="${h}"`;
50
+ if (xclass)
51
+ attrs += ` class="${xclass}"`;
52
+ return `<svg ${attrs}>${inner}</svg>`;
53
+ };
54
+
55
+
56
+ /***/ })
57
+
58
+ /******/ });
59
+ /************************************************************************/
60
+ /******/ // The module cache
61
+ /******/ var __webpack_module_cache__ = {};
62
+ /******/
63
+ /******/ // The require function
64
+ /******/ function __webpack_require__(moduleId) {
65
+ /******/ // Check if module is in cache
66
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
67
+ /******/ if (cachedModule !== undefined) {
68
+ /******/ return cachedModule.exports;
69
+ /******/ }
70
+ /******/ // Create a new module (and put it into the cache)
71
+ /******/ var module = __webpack_module_cache__[moduleId] = {
72
+ /******/ // no module.id needed
73
+ /******/ // no module.loaded needed
74
+ /******/ exports: {}
75
+ /******/ };
76
+ /******/
77
+ /******/ // Execute the module function
78
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
79
+ /******/
80
+ /******/ // Return the exports of the module
81
+ /******/ return module.exports;
82
+ /******/ }
83
+ /******/
84
+ /************************************************************************/
85
+ /******/ /* webpack/runtime/define property getters */
86
+ /******/ (() => {
87
+ /******/ // define getter functions for harmony exports
88
+ /******/ __webpack_require__.d = (exports, definition) => {
89
+ /******/ for(var key in definition) {
90
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
91
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
92
+ /******/ }
93
+ /******/ }
94
+ /******/ };
95
+ /******/ })();
96
+ /******/
97
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
98
+ /******/ (() => {
99
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
100
+ /******/ })();
101
+ /******/
102
+ /******/ /* webpack/runtime/make namespace object */
103
+ /******/ (() => {
104
+ /******/ // define __esModule on exports
105
+ /******/ __webpack_require__.r = (exports) => {
106
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
107
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
108
+ /******/ }
109
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
110
+ /******/ };
111
+ /******/ })();
112
+ /******/
113
+ /************************************************************************/
114
+ var __webpack_exports__ = {};
115
+ // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
116
+ (() => {
117
+ __webpack_require__.r(__webpack_exports__);
118
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
119
+ /* harmony export */ TrendingSVG: () => (/* binding */ TrendingSVG),
120
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
121
+ /* harmony export */ });
122
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8697);
123
+ /* harmony import */ var _data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81796);
124
+
125
+
126
+
127
+ const TrendingSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
128
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (TrendingSVG);
129
+
130
+ })();
131
+
132
+ module.exports = __webpack_exports__;
133
+ /******/ })()
134
+ ;
135
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/Trending/index.js","mappings":";;;;;;;;;;;AAEO,MAAM,OAAiB;AAAA,EAC5B,GAAG;AAAA,EACH,GAAG;AACL;AAEA,sEAAe,oDAAI,IAAC;;;;;;;;;;;;;ACLb,MAAM,SAAS;AAMf,MAAM,kBAAkB;AAI/B,MAAM,iBAAiB,CAAC,UACtB,QACI,OAAO,QAAQ,KAAK,EACjB,IAAI,CAAC,CAAC,KAAK,KAAK,MAAM,IAAI,QAAQ,QAAQ,EAC1C,KAAK,EAAE,IACV;AAOC,MAAM,iBAAiB,CAAC,MAAgB,OAAsB,CAAC,MAAc;AAxBpF;AAyBE,QAAM,EAAE,UAAU,UAAU,MAAM,OAAO,QAAQ,MAAM,OAAO,IAAI;AAClE,QAAM,QAAQ,YAAY,cAAa,UAAK,MAAL,YAAU,KAAK,KAAI,UAAK,MAAL,YAAU,KAAK;AAEzE,MAAI,SAAS;AAAM,WAAO;AAE1B,QAAM,IAAI,sBAAQ;AAClB,QAAM,IAAI,sBAAQ;AAClB,QAAM,YAAY,YAAY,aAAa,KAAK,MAAM,KAAK;AAC3D,QAAM,WAAW,uBAAY,aAAa,KAAK,MAAM,WAApC,YAAkD,KAAK,OAAvD,YAA6D;AAE9E,MAAI,QAAQ,UAAU,oBAAoB;AAC1C,WAAS,eAAe,SAAS;AACjC,MAAI;AAAM,aAAS,UAAU;AAC7B,MAAI,MAAM,UAAa,MAAM;AAAI,aAAS,WAAW;AACrD,MAAI,MAAM,UAAa,MAAM;AAAI,aAAS,YAAY;AACtD,MAAI;AAAQ,aAAS,WAAW;AAEhC,SAAO,QAAQ,SAAS;AAC1B;;;;;;;UC3CA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;ACNmD;AAE9B;AAEd,MAAM,cAAc,CAAC,SAAiC,0DAAc,CAAC,uCAAI,EAAE,IAAI;AAEtF,iEAAe,WAAW,EAAC","sources":["webpack://icons/./src/svg/Trending/data.ts","webpack://icons/./src/svgString.ts","webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/svg/Trending/index.ts"],"sourcesContent":["import type { IconData } from '../../types';\n\nexport const data: IconData = {\n 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\"/>',\n 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\"/>',\n};\n\nexport default data;\n","import type { IconData, IconProps } from './types';\n\nexport const SVG_NS = 'http://www.w3.org/2000/svg';\n\n/**\n * Default viewBox shared by all Material Symbols icons. Icons that use a\n * different viewBox store it in `IconData.vb`.\n */\nexport const DEFAULT_VIEWBOX = '0 -960 960 960';\n\nexport type SvgStringOpts = IconProps & { xclass?: string };\n\nconst serializeAttrs = (attrs?: Record<string, string>): string =>\n attrs\n ? Object.entries(attrs)\n .map(([key, value]) => ` ${key}=\"${value}\"`)\n .join('')\n : '';\n\n/**\n * Build a standalone SVG string from icon data. Replaces the previous\n * DOMParser-based implementation, so it works in non-DOM environments (SSR,\n * tests) too.\n */\nexport const buildSvgString = (data: IconData, opts: SvgStringOpts = {}): string => {\n const { variant = 'filled', size, width, height, fill, xclass } = opts;\n const inner = variant === 'outlined' ? data.o ?? data.f : data.f ?? data.o;\n\n if (inner == null) return '';\n\n const w = size ?? width;\n const h = size ?? height;\n const rootAttrs = variant === 'outlined' ? data.rao : data.raf;\n const viewBox = (variant === 'outlined' ? data.vbo : undefined) ?? data.vb ?? DEFAULT_VIEWBOX;\n\n let attrs = `xmlns=\"${SVG_NS}\" viewBox=\"${viewBox}\"`;\n attrs += serializeAttrs(rootAttrs);\n if (fill) attrs += ` fill=\"${fill}\"`;\n if (w !== undefined && w !== '') attrs += ` width=\"${w}\"`;\n if (h !== undefined && h !== '') attrs += ` height=\"${h}\"`;\n if (xclass) attrs += ` class=\"${xclass}\"`;\n\n return `<svg ${attrs}>${inner}</svg>`;\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","import { buildSvgString, type SvgStringOpts } from '../../svgString';\n\nimport { data } from './data';\n\nexport const TrendingSVG = (opts?: SvgStringOpts): string => buildSvgString(data, opts);\n\nexport default TrendingSVG;\n"],"names":[],"sourceRoot":""}
@@ -253,4 +253,8 @@ export * from './Code';
253
253
  export * from './Group';
254
254
  export * from './FolderLimited';
255
255
  export * from './Analytics';
256
+ export * from './AreaChart';
257
+ export * from './Trending';
258
+ export * from './Library';
259
+ export * from './ChartLine';
256
260
  export * from './svgIcon';
@@ -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