@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,3 @@
1
+ import type { IconData } from '../../types';
2
+ export declare const data: IconData;
3
+ export default data;
@@ -0,0 +1,53 @@
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: '<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>',
45
+ 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>',
46
+ vb: "0 0 24 24"
47
+ };
48
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (data);
49
+
50
+ module.exports = __webpack_exports__;
51
+ /******/ })()
52
+ ;
53
+ //# sourceMappingURL=data.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/AreaChart/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;AAAA,EACH,IAAI;AACN;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/AreaChart/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: '<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"],"names":[],"sourceRoot":""}
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" width="20px" height="20px">
2
+ <g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
3
+ <path d="M3 3v16a2 2 0 0 0 2 2h16"/>
4
+ <path d="M7 15l3-4 3 2 4-5v8H7z"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" width="20px" height="20px">
2
+ <g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
3
+ <path d="M3 3v16a2 2 0 0 0 2 2h16"/>
4
+ <path d="M7 15l3-4 3 2 4-5v8H7z"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { type SvgStringOpts } from '../../svgString';
2
+ export declare const AreaChartSVG: (opts?: SvgStringOpts) => string;
3
+ export default AreaChartSVG;
@@ -0,0 +1,136 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({
4
+
5
+ /***/ 38874:
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="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m7 15 3-4 3 2 4-5v8H7z"/></g>',
14
+ 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>',
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 */ AreaChartSVG: () => (/* binding */ AreaChartSVG),
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__(38874);
125
+
126
+
127
+
128
+ const AreaChartSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
129
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (AreaChartSVG);
130
+
131
+ })();
132
+
133
+ module.exports = __webpack_exports__;
134
+ /******/ })()
135
+ ;
136
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/AreaChart/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,eAAe,CAAC,SAAiC,0DAAc,CAAC,uCAAI,EAAE,IAAI;AAEvF,iEAAe,YAAY,EAAC","sources":["webpack://icons/./src/svg/AreaChart/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/AreaChart/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=\"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","// 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 AreaChartSVG = (opts?: SvgStringOpts): string => buildSvgString(data, opts);\n\nexport default AreaChartSVG;\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,53 @@
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: '<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>',
45
+ 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>',
46
+ vb: "0 0 24 24"
47
+ };
48
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (data);
49
+
50
+ module.exports = __webpack_exports__;
51
+ /******/ })()
52
+ ;
53
+ //# sourceMappingURL=data.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/ChartLine/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;AAAA,EACH,IAAI;AACN;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/ChartLine/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: '<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"],"names":[],"sourceRoot":""}
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" width="20px" height="20px">
2
+ <g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
3
+ <path d="M3 3v16a2 2 0 0 0 2 2h16"/>
4
+ <path d="m19 9-5 5-4-4-3 3"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" width="20px" height="20px">
2
+ <g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
3
+ <path d="M3 3v16a2 2 0 0 0 2 2h16"/>
4
+ <path d="m19 9-5 5-4-4-3 3"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { type SvgStringOpts } from '../../svgString';
2
+ export declare const ChartLineSVG: (opts?: SvgStringOpts) => string;
3
+ export default ChartLineSVG;
@@ -0,0 +1,136 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({
4
+
5
+ /***/ 23995:
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="M3 3v16a2 2 0 0 0 2 2h16"/><path d="m19 9-5 5-4-4-3 3"/></g>',
14
+ 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>',
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 */ ChartLineSVG: () => (/* binding */ ChartLineSVG),
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__(23995);
125
+
126
+
127
+
128
+ const ChartLineSVG = (opts) => (0,_svgString__WEBPACK_IMPORTED_MODULE_1__.buildSvgString)(_data__WEBPACK_IMPORTED_MODULE_0__.data, opts);
129
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ChartLineSVG);
130
+
131
+ })();
132
+
133
+ module.exports = __webpack_exports__;
134
+ /******/ })()
135
+ ;
136
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/ChartLine/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,eAAe,CAAC,SAAiC,0DAAc,CAAC,uCAAI,EAAE,IAAI;AAEvF,iEAAe,YAAY,EAAC","sources":["webpack://icons/./src/svg/ChartLine/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/ChartLine/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=\"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","// 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 ChartLineSVG = (opts?: SvgStringOpts): string => buildSvgString(data, opts);\n\nexport default ChartLineSVG;\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,53 @@
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: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
45
+ f: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M4 4v16M8 8v12M12 6v14M16 6l4 14"/></g>',
46
+ vb: "0 0 24 24"
47
+ };
48
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (data);
49
+
50
+ module.exports = __webpack_exports__;
51
+ /******/ })()
52
+ ;
53
+ //# sourceMappingURL=data.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"svg/Library/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;AAAA,EACH,IAAI;AACN;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/Library/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: '<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"],"names":[],"sourceRoot":""}
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" width="20px" height="20px">
2
+ <g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
3
+ <path d="M4 4v16"/>
4
+ <path d="M8 8v12"/>
5
+ <path d="M12 6v14"/>
6
+ <path d="m16 6 4 14"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" width="20px" height="20px">
2
+ <g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
3
+ <path d="M4 4v16"/>
4
+ <path d="M8 8v12"/>
5
+ <path d="M12 6v14"/>
6
+ <path d="m16 6 4 14"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ import { type SvgStringOpts } from '../../svgString';
2
+ export declare const LibrarySVG: (opts?: SvgStringOpts) => string;
3
+ export default LibrarySVG;