@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,6 @@
1
+ /// <reference types="react" />
2
+ export declare const Library: {
3
+ (props: import("../types").IconPropsReact): import("react").ReactSVGElement;
4
+ displayName: string;
5
+ };
6
+ export default Library;
@@ -0,0 +1,242 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({
4
+
5
+ /***/ 58387:
6
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7
+
8
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9
+ /* harmony export */ defaultIconProps: () => (/* binding */ defaultIconProps)
10
+ /* harmony export */ });
11
+
12
+ const defaultIconProps = {
13
+ width: 20,
14
+ height: 20,
15
+ fill: "currentColor",
16
+ variant: "filled"
17
+ };
18
+
19
+
20
+ /***/ }),
21
+
22
+ /***/ 44184:
23
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24
+
25
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
26
+ /* harmony export */ makeIcon: () => (/* binding */ makeIcon)
27
+ /* harmony export */ });
28
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
29
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
30
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(8697);
31
+ /* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(58387);
32
+
33
+ var __defProp = Object.defineProperty;
34
+ var __defProps = Object.defineProperties;
35
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
36
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
37
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
38
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
39
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
40
+ var __spreadValues = (a, b) => {
41
+ for (var prop in b || (b = {}))
42
+ if (__hasOwnProp.call(b, prop))
43
+ __defNormalProp(a, prop, b[prop]);
44
+ if (__getOwnPropSymbols)
45
+ for (var prop of __getOwnPropSymbols(b)) {
46
+ if (__propIsEnum.call(b, prop))
47
+ __defNormalProp(a, prop, b[prop]);
48
+ }
49
+ return a;
50
+ };
51
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
52
+ var __objRest = (source, exclude) => {
53
+ var target = {};
54
+ for (var prop in source)
55
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
56
+ target[prop] = source[prop];
57
+ if (source != null && __getOwnPropSymbols)
58
+ for (var prop of __getOwnPropSymbols(source)) {
59
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
60
+ target[prop] = source[prop];
61
+ }
62
+ return target;
63
+ };
64
+
65
+
66
+
67
+ const makeIcon = (data, name, displayName) => {
68
+ const Icon = (props) => {
69
+ var _b, _c, _d, _e;
70
+ const _a = __spreadValues(__spreadValues({}, _common__WEBPACK_IMPORTED_MODULE_1__.defaultIconProps), props), { variant, size } = _a, restProps = __objRest(_a, ["variant", "size"]);
71
+ const inner = variant === "outlined" ? (_b = data.o) != null ? _b : data.f : (_c = data.f) != null ? _c : data.o;
72
+ const rootAttrs = variant === "outlined" ? data.rao : data.raf;
73
+ const viewBox = (_e = (_d = variant === "outlined" ? data.vbo : void 0) != null ? _d : data.vb) != null ? _e : _svgString__WEBPACK_IMPORTED_MODULE_2__.DEFAULT_VIEWBOX;
74
+ const overrides = props.size ? { width: props.size, height: props.size } : {};
75
+ return react__WEBPACK_IMPORTED_MODULE_0___default().createElement("svg", __spreadProps(__spreadValues(__spreadValues(__spreadProps(__spreadValues({
76
+ xmlns: _svgString__WEBPACK_IMPORTED_MODULE_2__.SVG_NS,
77
+ viewBox
78
+ }, rootAttrs), {
79
+ "aria-label": name
80
+ }), restProps), overrides), {
81
+ dangerouslySetInnerHTML: { __html: inner != null ? inner : "" }
82
+ }));
83
+ };
84
+ Icon.displayName = displayName;
85
+ return Icon;
86
+ };
87
+
88
+
89
+ /***/ }),
90
+
91
+ /***/ 16496:
92
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
93
+
94
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
95
+ /* harmony export */ data: () => (/* binding */ data)
96
+ /* harmony export */ });
97
+
98
+ const data = {
99
+ o: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
100
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
101
+ vb: "0 0 24 24"
102
+ };
103
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
104
+
105
+
106
+ /***/ }),
107
+
108
+ /***/ 8697:
109
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
110
+
111
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
112
+ /* harmony export */ DEFAULT_VIEWBOX: () => (/* binding */ DEFAULT_VIEWBOX),
113
+ /* harmony export */ SVG_NS: () => (/* binding */ SVG_NS)
114
+ /* harmony export */ });
115
+ /* unused harmony export buildSvgString */
116
+
117
+ const SVG_NS = "http://www.w3.org/2000/svg";
118
+ const DEFAULT_VIEWBOX = "0 -960 960 960";
119
+ const serializeAttrs = (attrs) => attrs ? Object.entries(attrs).map(([key, value]) => ` ${key}="${value}"`).join("") : "";
120
+ const buildSvgString = (data, opts = {}) => {
121
+ var _a, _b, _c, _d;
122
+ const { variant = "filled", size, width, height, fill, xclass } = opts;
123
+ const inner = variant === "outlined" ? (_a = data.o) != null ? _a : data.f : (_b = data.f) != null ? _b : data.o;
124
+ if (inner == null)
125
+ return "";
126
+ const w = size != null ? size : width;
127
+ const h = size != null ? size : height;
128
+ const rootAttrs = variant === "outlined" ? data.rao : data.raf;
129
+ const viewBox = (_d = (_c = variant === "outlined" ? data.vbo : void 0) != null ? _c : data.vb) != null ? _d : DEFAULT_VIEWBOX;
130
+ let attrs = `xmlns="${SVG_NS}" viewBox="${viewBox}"`;
131
+ attrs += serializeAttrs(rootAttrs);
132
+ if (fill)
133
+ attrs += ` fill="${fill}"`;
134
+ if (w !== void 0 && w !== "")
135
+ attrs += ` width="${w}"`;
136
+ if (h !== void 0 && h !== "")
137
+ attrs += ` height="${h}"`;
138
+ if (xclass)
139
+ attrs += ` class="${xclass}"`;
140
+ return `<svg ${attrs}>${inner}</svg>`;
141
+ };
142
+
143
+
144
+ /***/ }),
145
+
146
+ /***/ 99497:
147
+ /***/ ((module) => {
148
+
149
+ module.exports = require("react");
150
+
151
+ /***/ })
152
+
153
+ /******/ });
154
+ /************************************************************************/
155
+ /******/ // The module cache
156
+ /******/ var __webpack_module_cache__ = {};
157
+ /******/
158
+ /******/ // The require function
159
+ /******/ function __webpack_require__(moduleId) {
160
+ /******/ // Check if module is in cache
161
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
162
+ /******/ if (cachedModule !== undefined) {
163
+ /******/ return cachedModule.exports;
164
+ /******/ }
165
+ /******/ // Create a new module (and put it into the cache)
166
+ /******/ var module = __webpack_module_cache__[moduleId] = {
167
+ /******/ // no module.id needed
168
+ /******/ // no module.loaded needed
169
+ /******/ exports: {}
170
+ /******/ };
171
+ /******/
172
+ /******/ // Execute the module function
173
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
174
+ /******/
175
+ /******/ // Return the exports of the module
176
+ /******/ return module.exports;
177
+ /******/ }
178
+ /******/
179
+ /************************************************************************/
180
+ /******/ /* webpack/runtime/compat get default export */
181
+ /******/ (() => {
182
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
183
+ /******/ __webpack_require__.n = (module) => {
184
+ /******/ var getter = module && module.__esModule ?
185
+ /******/ () => (module['default']) :
186
+ /******/ () => (module);
187
+ /******/ __webpack_require__.d(getter, { a: getter });
188
+ /******/ return getter;
189
+ /******/ };
190
+ /******/ })();
191
+ /******/
192
+ /******/ /* webpack/runtime/define property getters */
193
+ /******/ (() => {
194
+ /******/ // define getter functions for harmony exports
195
+ /******/ __webpack_require__.d = (exports, definition) => {
196
+ /******/ for(var key in definition) {
197
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
198
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
199
+ /******/ }
200
+ /******/ }
201
+ /******/ };
202
+ /******/ })();
203
+ /******/
204
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
205
+ /******/ (() => {
206
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
207
+ /******/ })();
208
+ /******/
209
+ /******/ /* webpack/runtime/make namespace object */
210
+ /******/ (() => {
211
+ /******/ // define __esModule on exports
212
+ /******/ __webpack_require__.r = (exports) => {
213
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
214
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
215
+ /******/ }
216
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
217
+ /******/ };
218
+ /******/ })();
219
+ /******/
220
+ /************************************************************************/
221
+ var __webpack_exports__ = {};
222
+ // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
223
+ (() => {
224
+ __webpack_require__.r(__webpack_exports__);
225
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
226
+ /* harmony export */ Library: () => (/* binding */ Library),
227
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
228
+ /* harmony export */ });
229
+ /* harmony import */ var _svg_Library_data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16496);
230
+ /* harmony import */ var _makeIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44184);
231
+
232
+
233
+
234
+ const Library = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_Library_data__WEBPACK_IMPORTED_MODULE_0__.data, "library", "Library");
235
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Library);
236
+
237
+ })();
238
+
239
+ module.exports = __webpack_exports__;
240
+ /******/ })()
241
+ ;
242
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react/Library/index.js","mappings":"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","sources":["webpack://icons/./src/react/common.ts","webpack://icons/./src/react/makeIcon.tsx","webpack://icons/./src/svg/Library/data.ts","webpack://icons/./src/svgString.ts","webpack://icons/external commonjs2 \"react\"","webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/compat get default export","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/react/Library/index.tsx"],"sourcesContent":["import type { IconProps } from '../types';\n\nexport const defaultIconProps: IconProps = {\n width: 20,\n height: 20,\n fill: 'currentColor',\n variant: 'filled',\n};\n","import React from 'react';\n\nimport { DEFAULT_VIEWBOX, SVG_NS } from '../svgString';\nimport type { IconData } from '../types';\n\nimport { defaultIconProps } from './common';\nimport type { IconPropsReact } from './types';\n\n/**\n * Build an icon React component from its shared {@link IconData}.\n *\n * The path data lives in a single `data` module that both this component and\n * the `svgIcon()` string API import, so it is never bundled twice. The\n * rendered output and prop handling match the previously code-generated\n * components: props spread onto the `<svg>` element, `size` overrides\n * width/height, and `variant` selects filled/outlined.\n */\nexport const makeIcon = (data: IconData, name: string, displayName: string) => {\n const Icon = (props: IconPropsReact) => {\n // `size` is destructured out so it is not forwarded as a stray DOM attribute.\n const { variant, size, ...restProps } = {\n ...defaultIconProps,\n ...props,\n };\n\n const inner = variant === 'outlined' ? data.o ?? data.f : data.f ?? data.o;\n const rootAttrs = variant === 'outlined' ? data.rao : data.raf;\n const viewBox = (variant === 'outlined' ? data.vbo : undefined) ?? data.vb ?? DEFAULT_VIEWBOX;\n const overrides = props.size ? { width: props.size, height: props.size } : {};\n\n return React.createElement('svg', {\n xmlns: SVG_NS,\n viewBox,\n ...rootAttrs,\n 'aria-label': name,\n ...restProps,\n ...overrides,\n dangerouslySetInnerHTML: { __html: inner ?? '' },\n });\n };\n\n Icon.displayName = displayName;\n\n return Icon;\n};\n","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","module.exports = require(\"react\");","// 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","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\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 { data } from '../../svg/Library/data';\nimport { makeIcon } from '../makeIcon';\n\nexport const Library = makeIcon(data, 'library', 'Library');\n\nexport default Library;\n"],"names":[],"sourceRoot":""}
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ export declare const Trending: {
3
+ (props: import("../types").IconPropsReact): import("react").ReactSVGElement;
4
+ displayName: string;
5
+ };
6
+ export default Trending;
@@ -0,0 +1,241 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({
4
+
5
+ /***/ 58387:
6
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7
+
8
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9
+ /* harmony export */ defaultIconProps: () => (/* binding */ defaultIconProps)
10
+ /* harmony export */ });
11
+
12
+ const defaultIconProps = {
13
+ width: 20,
14
+ height: 20,
15
+ fill: "currentColor",
16
+ variant: "filled"
17
+ };
18
+
19
+
20
+ /***/ }),
21
+
22
+ /***/ 44184:
23
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24
+
25
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
26
+ /* harmony export */ makeIcon: () => (/* binding */ makeIcon)
27
+ /* harmony export */ });
28
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99497);
29
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
30
+ /* harmony import */ var _svgString__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(8697);
31
+ /* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(58387);
32
+
33
+ var __defProp = Object.defineProperty;
34
+ var __defProps = Object.defineProperties;
35
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
36
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
37
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
38
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
39
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
40
+ var __spreadValues = (a, b) => {
41
+ for (var prop in b || (b = {}))
42
+ if (__hasOwnProp.call(b, prop))
43
+ __defNormalProp(a, prop, b[prop]);
44
+ if (__getOwnPropSymbols)
45
+ for (var prop of __getOwnPropSymbols(b)) {
46
+ if (__propIsEnum.call(b, prop))
47
+ __defNormalProp(a, prop, b[prop]);
48
+ }
49
+ return a;
50
+ };
51
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
52
+ var __objRest = (source, exclude) => {
53
+ var target = {};
54
+ for (var prop in source)
55
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
56
+ target[prop] = source[prop];
57
+ if (source != null && __getOwnPropSymbols)
58
+ for (var prop of __getOwnPropSymbols(source)) {
59
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
60
+ target[prop] = source[prop];
61
+ }
62
+ return target;
63
+ };
64
+
65
+
66
+
67
+ const makeIcon = (data, name, displayName) => {
68
+ const Icon = (props) => {
69
+ var _b, _c, _d, _e;
70
+ const _a = __spreadValues(__spreadValues({}, _common__WEBPACK_IMPORTED_MODULE_1__.defaultIconProps), props), { variant, size } = _a, restProps = __objRest(_a, ["variant", "size"]);
71
+ const inner = variant === "outlined" ? (_b = data.o) != null ? _b : data.f : (_c = data.f) != null ? _c : data.o;
72
+ const rootAttrs = variant === "outlined" ? data.rao : data.raf;
73
+ const viewBox = (_e = (_d = variant === "outlined" ? data.vbo : void 0) != null ? _d : data.vb) != null ? _e : _svgString__WEBPACK_IMPORTED_MODULE_2__.DEFAULT_VIEWBOX;
74
+ const overrides = props.size ? { width: props.size, height: props.size } : {};
75
+ return react__WEBPACK_IMPORTED_MODULE_0___default().createElement("svg", __spreadProps(__spreadValues(__spreadValues(__spreadProps(__spreadValues({
76
+ xmlns: _svgString__WEBPACK_IMPORTED_MODULE_2__.SVG_NS,
77
+ viewBox
78
+ }, rootAttrs), {
79
+ "aria-label": name
80
+ }), restProps), overrides), {
81
+ dangerouslySetInnerHTML: { __html: inner != null ? inner : "" }
82
+ }));
83
+ };
84
+ Icon.displayName = displayName;
85
+ return Icon;
86
+ };
87
+
88
+
89
+ /***/ }),
90
+
91
+ /***/ 81796:
92
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
93
+
94
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
95
+ /* harmony export */ data: () => (/* binding */ data)
96
+ /* harmony export */ });
97
+
98
+ const data = {
99
+ 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"/>',
100
+ 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"/>'
101
+ };
102
+ /* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (data)));
103
+
104
+
105
+ /***/ }),
106
+
107
+ /***/ 8697:
108
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
109
+
110
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
111
+ /* harmony export */ DEFAULT_VIEWBOX: () => (/* binding */ DEFAULT_VIEWBOX),
112
+ /* harmony export */ SVG_NS: () => (/* binding */ SVG_NS)
113
+ /* harmony export */ });
114
+ /* unused harmony export buildSvgString */
115
+
116
+ const SVG_NS = "http://www.w3.org/2000/svg";
117
+ const DEFAULT_VIEWBOX = "0 -960 960 960";
118
+ const serializeAttrs = (attrs) => attrs ? Object.entries(attrs).map(([key, value]) => ` ${key}="${value}"`).join("") : "";
119
+ const buildSvgString = (data, opts = {}) => {
120
+ var _a, _b, _c, _d;
121
+ const { variant = "filled", size, width, height, fill, xclass } = opts;
122
+ const inner = variant === "outlined" ? (_a = data.o) != null ? _a : data.f : (_b = data.f) != null ? _b : data.o;
123
+ if (inner == null)
124
+ return "";
125
+ const w = size != null ? size : width;
126
+ const h = size != null ? size : height;
127
+ const rootAttrs = variant === "outlined" ? data.rao : data.raf;
128
+ const viewBox = (_d = (_c = variant === "outlined" ? data.vbo : void 0) != null ? _c : data.vb) != null ? _d : DEFAULT_VIEWBOX;
129
+ let attrs = `xmlns="${SVG_NS}" viewBox="${viewBox}"`;
130
+ attrs += serializeAttrs(rootAttrs);
131
+ if (fill)
132
+ attrs += ` fill="${fill}"`;
133
+ if (w !== void 0 && w !== "")
134
+ attrs += ` width="${w}"`;
135
+ if (h !== void 0 && h !== "")
136
+ attrs += ` height="${h}"`;
137
+ if (xclass)
138
+ attrs += ` class="${xclass}"`;
139
+ return `<svg ${attrs}>${inner}</svg>`;
140
+ };
141
+
142
+
143
+ /***/ }),
144
+
145
+ /***/ 99497:
146
+ /***/ ((module) => {
147
+
148
+ module.exports = require("react");
149
+
150
+ /***/ })
151
+
152
+ /******/ });
153
+ /************************************************************************/
154
+ /******/ // The module cache
155
+ /******/ var __webpack_module_cache__ = {};
156
+ /******/
157
+ /******/ // The require function
158
+ /******/ function __webpack_require__(moduleId) {
159
+ /******/ // Check if module is in cache
160
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
161
+ /******/ if (cachedModule !== undefined) {
162
+ /******/ return cachedModule.exports;
163
+ /******/ }
164
+ /******/ // Create a new module (and put it into the cache)
165
+ /******/ var module = __webpack_module_cache__[moduleId] = {
166
+ /******/ // no module.id needed
167
+ /******/ // no module.loaded needed
168
+ /******/ exports: {}
169
+ /******/ };
170
+ /******/
171
+ /******/ // Execute the module function
172
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
173
+ /******/
174
+ /******/ // Return the exports of the module
175
+ /******/ return module.exports;
176
+ /******/ }
177
+ /******/
178
+ /************************************************************************/
179
+ /******/ /* webpack/runtime/compat get default export */
180
+ /******/ (() => {
181
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
182
+ /******/ __webpack_require__.n = (module) => {
183
+ /******/ var getter = module && module.__esModule ?
184
+ /******/ () => (module['default']) :
185
+ /******/ () => (module);
186
+ /******/ __webpack_require__.d(getter, { a: getter });
187
+ /******/ return getter;
188
+ /******/ };
189
+ /******/ })();
190
+ /******/
191
+ /******/ /* webpack/runtime/define property getters */
192
+ /******/ (() => {
193
+ /******/ // define getter functions for harmony exports
194
+ /******/ __webpack_require__.d = (exports, definition) => {
195
+ /******/ for(var key in definition) {
196
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
197
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
198
+ /******/ }
199
+ /******/ }
200
+ /******/ };
201
+ /******/ })();
202
+ /******/
203
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
204
+ /******/ (() => {
205
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
206
+ /******/ })();
207
+ /******/
208
+ /******/ /* webpack/runtime/make namespace object */
209
+ /******/ (() => {
210
+ /******/ // define __esModule on exports
211
+ /******/ __webpack_require__.r = (exports) => {
212
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
213
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
214
+ /******/ }
215
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
216
+ /******/ };
217
+ /******/ })();
218
+ /******/
219
+ /************************************************************************/
220
+ var __webpack_exports__ = {};
221
+ // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
222
+ (() => {
223
+ __webpack_require__.r(__webpack_exports__);
224
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
225
+ /* harmony export */ Trending: () => (/* binding */ Trending),
226
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
227
+ /* harmony export */ });
228
+ /* harmony import */ var _svg_Trending_data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81796);
229
+ /* harmony import */ var _makeIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44184);
230
+
231
+
232
+
233
+ const Trending = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_Trending_data__WEBPACK_IMPORTED_MODULE_0__.data, "trending", "Trending");
234
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Trending);
235
+
236
+ })();
237
+
238
+ module.exports = __webpack_exports__;
239
+ /******/ })()
240
+ ;
241
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react/Trending/index.js","mappings":"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","sources":["webpack://icons/./src/react/common.ts","webpack://icons/./src/react/makeIcon.tsx","webpack://icons/./src/svg/Trending/data.ts","webpack://icons/./src/svgString.ts","webpack://icons/external commonjs2 \"react\"","webpack://icons/webpack/bootstrap","webpack://icons/webpack/runtime/compat get default export","webpack://icons/webpack/runtime/define property getters","webpack://icons/webpack/runtime/hasOwnProperty shorthand","webpack://icons/webpack/runtime/make namespace object","webpack://icons/./src/react/Trending/index.tsx"],"sourcesContent":["import type { IconProps } from '../types';\n\nexport const defaultIconProps: IconProps = {\n width: 20,\n height: 20,\n fill: 'currentColor',\n variant: 'filled',\n};\n","import React from 'react';\n\nimport { DEFAULT_VIEWBOX, SVG_NS } from '../svgString';\nimport type { IconData } from '../types';\n\nimport { defaultIconProps } from './common';\nimport type { IconPropsReact } from './types';\n\n/**\n * Build an icon React component from its shared {@link IconData}.\n *\n * The path data lives in a single `data` module that both this component and\n * the `svgIcon()` string API import, so it is never bundled twice. The\n * rendered output and prop handling match the previously code-generated\n * components: props spread onto the `<svg>` element, `size` overrides\n * width/height, and `variant` selects filled/outlined.\n */\nexport const makeIcon = (data: IconData, name: string, displayName: string) => {\n const Icon = (props: IconPropsReact) => {\n // `size` is destructured out so it is not forwarded as a stray DOM attribute.\n const { variant, size, ...restProps } = {\n ...defaultIconProps,\n ...props,\n };\n\n const inner = variant === 'outlined' ? data.o ?? data.f : data.f ?? data.o;\n const rootAttrs = variant === 'outlined' ? data.rao : data.raf;\n const viewBox = (variant === 'outlined' ? data.vbo : undefined) ?? data.vb ?? DEFAULT_VIEWBOX;\n const overrides = props.size ? { width: props.size, height: props.size } : {};\n\n return React.createElement('svg', {\n xmlns: SVG_NS,\n viewBox,\n ...rootAttrs,\n 'aria-label': name,\n ...restProps,\n ...overrides,\n dangerouslySetInnerHTML: { __html: inner ?? '' },\n });\n };\n\n Icon.displayName = displayName;\n\n return Icon;\n};\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","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","module.exports = require(\"react\");","// 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","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\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 { data } from '../../svg/Trending/data';\nimport { makeIcon } from '../makeIcon';\n\nexport const Trending = makeIcon(data, 'trending', 'Trending');\n\nexport default Trending;\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 './EpilotIcon';