@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 AreaChart: {
3
+ (props: import("../types").IconPropsReact): import("react").ReactSVGElement;
4
+ displayName: string;
5
+ };
6
+ export default AreaChart;
@@ -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
+ /***/ 38874:
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="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m7 15 3-4 3 2 4-5v8H7z"/></g>',
100
+ 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>',
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 */ AreaChart: () => (/* binding */ AreaChart),
227
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
228
+ /* harmony export */ });
229
+ /* harmony import */ var _svg_AreaChart_data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38874);
230
+ /* harmony import */ var _makeIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44184);
231
+
232
+
233
+
234
+ const AreaChart = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_AreaChart_data__WEBPACK_IMPORTED_MODULE_0__.data, "area_chart", "AreaChart");
235
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (AreaChart);
236
+
237
+ })();
238
+
239
+ module.exports = __webpack_exports__;
240
+ /******/ })()
241
+ ;
242
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react/AreaChart/index.js","mappings":"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","sources":["webpack://icons/./src/react/common.ts","webpack://icons/./src/react/makeIcon.tsx","webpack://icons/./src/svg/AreaChart/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/AreaChart/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=\"M3 3v16a2 2 0 0 0 2 2h16\"/><path d=\"m7 15 3-4 3 2 4-5v8H7z\"/></g>',\n 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>',\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/AreaChart/data';\nimport { makeIcon } from '../makeIcon';\n\nexport const AreaChart = makeIcon(data, 'area_chart', 'AreaChart');\n\nexport default AreaChart;\n"],"names":[],"sourceRoot":""}
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ export declare const ChartLine: {
3
+ (props: import("../types").IconPropsReact): import("react").ReactSVGElement;
4
+ displayName: string;
5
+ };
6
+ export default ChartLine;
@@ -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
+ /***/ 23995:
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="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m19 9-5 5-4-4-3 3"/></g>',
100
+ 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>',
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 */ ChartLine: () => (/* binding */ ChartLine),
227
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
228
+ /* harmony export */ });
229
+ /* harmony import */ var _svg_ChartLine_data__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23995);
230
+ /* harmony import */ var _makeIcon__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44184);
231
+
232
+
233
+
234
+ const ChartLine = (0,_makeIcon__WEBPACK_IMPORTED_MODULE_1__.makeIcon)(_svg_ChartLine_data__WEBPACK_IMPORTED_MODULE_0__.data, "chart_line", "ChartLine");
235
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ChartLine);
236
+
237
+ })();
238
+
239
+ module.exports = __webpack_exports__;
240
+ /******/ })()
241
+ ;
242
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react/ChartLine/index.js","mappings":"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","sources":["webpack://icons/./src/react/common.ts","webpack://icons/./src/react/makeIcon.tsx","webpack://icons/./src/svg/ChartLine/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/ChartLine/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=\"M3 3v16a2 2 0 0 0 2 2h16\"/><path d=\"m19 9-5 5-4-4-3 3\"/></g>',\n 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>',\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/ChartLine/data';\nimport { makeIcon } from '../makeIcon';\n\nexport const ChartLine = makeIcon(data, 'chart_line', 'ChartLine');\n\nexport default ChartLine;\n"],"names":[],"sourceRoot":""}
@@ -1021,6 +1021,22 @@ export declare const IconComponentsMap: {
1021
1021
  (props: IconPropsReact): React.ReactSVGElement;
1022
1022
  displayName: string;
1023
1023
  };
1024
+ area_chart: {
1025
+ (props: IconPropsReact): React.ReactSVGElement;
1026
+ displayName: string;
1027
+ };
1028
+ trending: {
1029
+ (props: IconPropsReact): React.ReactSVGElement;
1030
+ displayName: string;
1031
+ };
1032
+ library: {
1033
+ (props: IconPropsReact): React.ReactSVGElement;
1034
+ displayName: string;
1035
+ };
1036
+ chart_line: {
1037
+ (props: IconPropsReact): React.ReactSVGElement;
1038
+ displayName: string;
1039
+ };
1024
1040
  };
1025
1041
  export type IconName = keyof typeof IconComponentsMap;
1026
1042
  type Props = IconPropsReact & {