@xsolla/xui-icons-base 0.107.0 → 0.109.0
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.
- package/native/chart-graphs.d.mts +3 -1
- package/native/chart-graphs.d.ts +3 -1
- package/native/chart-graphs.js +15 -7
- package/native/chart-graphs.js.flow +2 -1
- package/native/chart-graphs.js.map +1 -1
- package/native/chart-graphs.mjs +14 -7
- package/native/chart-graphs.mjs.map +1 -1
- package/native/index.d.mts +1 -1
- package/native/index.d.ts +1 -1
- package/native/index.js +1455 -1447
- package/native/index.js.map +1 -1
- package/native/index.mjs +1454 -1447
- package/native/index.mjs.map +1 -1
- package/package.json +1 -1
- package/web/chart-graphs.d.mts +3 -1
- package/web/chart-graphs.d.ts +3 -1
- package/web/chart-graphs.js +15 -7
- package/web/chart-graphs.js.flow +2 -1
- package/web/chart-graphs.js.map +1 -1
- package/web/chart-graphs.mjs +14 -7
- package/web/chart-graphs.mjs.map +1 -1
- package/web/index.d.mts +1 -1
- package/web/index.d.ts +1 -1
- package/web/index.js +1455 -1447
- package/web/index.js.map +1 -1
- package/web/index.mjs +1454 -1447
- package/web/index.mjs.map +1 -1
|
@@ -4,6 +4,8 @@ import React from 'react';
|
|
|
4
4
|
|
|
5
5
|
declare const Graph: React.FC<BaseIconProps>;
|
|
6
6
|
|
|
7
|
+
declare const LineUpAlt: React.FC<BaseIconProps>;
|
|
8
|
+
|
|
7
9
|
declare const Pie14: React.FC<BaseIconProps>;
|
|
8
10
|
|
|
9
|
-
export { BaseIconProps, Graph, Pie14 };
|
|
11
|
+
export { BaseIconProps, Graph, LineUpAlt, Pie14 };
|
package/native/chart-graphs.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ import React from 'react';
|
|
|
4
4
|
|
|
5
5
|
declare const Graph: React.FC<BaseIconProps>;
|
|
6
6
|
|
|
7
|
+
declare const LineUpAlt: React.FC<BaseIconProps>;
|
|
8
|
+
|
|
7
9
|
declare const Pie14: React.FC<BaseIconProps>;
|
|
8
10
|
|
|
9
|
-
export { BaseIconProps, Graph, Pie14 };
|
|
11
|
+
export { BaseIconProps, Graph, LineUpAlt, Pie14 };
|
package/native/chart-graphs.js
CHANGED
|
@@ -22,6 +22,7 @@ var chart_graphs_exports = {};
|
|
|
22
22
|
__export(chart_graphs_exports, {
|
|
23
23
|
BaseIcon: () => BaseIcon,
|
|
24
24
|
Graph: () => Graph,
|
|
25
|
+
LineUpAlt: () => LineUpAlt,
|
|
25
26
|
Pie14: () => Pie14
|
|
26
27
|
});
|
|
27
28
|
module.exports = __toCommonJS(chart_graphs_exports);
|
|
@@ -34,13 +35,13 @@ var BaseIcon = ({
|
|
|
34
35
|
variant = "line",
|
|
35
36
|
size = 24,
|
|
36
37
|
color = "currentColor",
|
|
37
|
-
solidContent:
|
|
38
|
-
lineContent:
|
|
38
|
+
solidContent: solidContent4,
|
|
39
|
+
lineContent: lineContent4,
|
|
39
40
|
style,
|
|
40
41
|
testID,
|
|
41
42
|
"aria-label": ariaLabel
|
|
42
43
|
}) => {
|
|
43
|
-
const svgContent = variant === "line" ?
|
|
44
|
+
const svgContent = variant === "line" ? lineContent4 : solidContent4;
|
|
44
45
|
const numericSize = typeof size === "number" ? size : 24;
|
|
45
46
|
const containerStyle = {
|
|
46
47
|
width: numericSize,
|
|
@@ -69,15 +70,22 @@ var solidContent = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.or
|
|
|
69
70
|
var lineContent = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_graph--line"><path id="Union" d="M19 19H21L21 10H19L19 19ZM11 19L13 19L13 5H11L11 19ZM3 19H5L5 15H3L3 19ZM7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20ZM23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20ZM15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z" style="fill: currentColor"/></g></svg>`;
|
|
70
71
|
var Graph = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(BaseIcon, { ...props, solidContent, lineContent });
|
|
71
72
|
|
|
72
|
-
// src/components/chart-graphs/
|
|
73
|
+
// src/components/chart-graphs/LineUpAlt.tsx
|
|
73
74
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
74
|
-
var solidContent2 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="
|
|
75
|
-
var lineContent2 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="
|
|
76
|
-
var
|
|
75
|
+
var solidContent2 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_line-up-alt--line"><path id="Union" d="M5 19H21V21H4C3.44772 21 3 20.5523 3 20V3H5V19ZM21 3.71875L17.9678 11.9033C17.7602 12.4633 17.111 12.718 16.5781 12.4482L11.5234 9.88867L8.89062 17L7 16.2812L10.0322 8.09668C10.2398 7.53666 10.889 7.28198 11.4219 7.55176L16.4756 10.1104L19.1094 3L21 3.71875Z" style="fill: currentColor"/></g></svg>`;
|
|
76
|
+
var lineContent2 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_line-up-alt--line"><path id="Union" d="M5 19H21V21H4C3.44772 21 3 20.5523 3 20V3H5V19ZM21 3.71875L17.9678 11.9033C17.7602 12.4633 17.111 12.718 16.5781 12.4482L11.5234 9.88867L8.89062 17L7 16.2812L10.0322 8.09668C10.2398 7.53666 10.889 7.28198 11.4219 7.55176L16.4756 10.1104L19.1094 3L21 3.71875Z" style="fill: currentColor"/></g></svg>`;
|
|
77
|
+
var LineUpAlt = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(BaseIcon, { ...props, solidContent: solidContent2, lineContent: lineContent2 });
|
|
78
|
+
|
|
79
|
+
// src/components/chart-graphs/Pie14.tsx
|
|
80
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
81
|
+
var solidContent3 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_pie-1-4--solid"><g id="Union"><path d="M11 13L21.9502 13C21.4491 18.0529 17.1849 22 12 22C6.47707 22 2.00011 17.5229 2 12C2 6.815 5.947 2.5508 11 2.0498L11 13Z" style="fill: currentColor"/><path d="M13 2.0498C15.295 2.281 17.4393 3.29867 19.0703 4.92969C20.7013 6.56069 21.719 8.70506 21.9502 11L13 11L13 2.0498Z" style="fill: currentColor"/></g></g></svg>`;
|
|
82
|
+
var lineContent3 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_pie-1-4--line"><path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M11.9917 2.0083C17.5145 2.0083 21.9917 6.48545 21.9917 12.0083C21.9917 17.5311 17.5145 22.0083 11.9917 22.0083C6.46885 22.0083 1.9917 17.5311 1.9917 12.0083C1.9917 6.48545 6.46885 2.0083 11.9917 2.0083ZM10.9917 4.07178C7.04548 4.56396 3.9917 7.92875 3.9917 12.0083C3.9917 16.4266 7.57342 20.0083 11.9917 20.0083C16.0712 20.0083 19.435 16.9545 19.9272 13.0083H10.9917V4.07178ZM12.9917 11.0083H19.9272C19.4759 7.3898 16.6102 4.52309 12.9917 4.07178V11.0083Z" style="fill: currentColor"/></g></svg>`;
|
|
83
|
+
var Pie14 = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(BaseIcon, { ...props, solidContent: solidContent3, lineContent: lineContent3 });
|
|
77
84
|
// Annotate the CommonJS export names for ESM import in node:
|
|
78
85
|
0 && (module.exports = {
|
|
79
86
|
BaseIcon,
|
|
80
87
|
Graph,
|
|
88
|
+
LineUpAlt,
|
|
81
89
|
Pie14
|
|
82
90
|
});
|
|
83
91
|
//# sourceMappingURL=chart-graphs.js.map
|
|
@@ -13,5 +13,6 @@ declare export {
|
|
|
13
13
|
} from "./BaseIcon-DgSOiwGX.js";
|
|
14
14
|
import React from "react";
|
|
15
15
|
declare var Graph: React.FC<BaseIconProps>;
|
|
16
|
+
declare var LineUpAlt: React.FC<BaseIconProps>;
|
|
16
17
|
declare var Pie14: React.FC<BaseIconProps>;
|
|
17
|
-
declare export { BaseIconProps, Graph, Pie14 };
|
|
18
|
+
declare export { BaseIconProps, Graph, LineUpAlt, Pie14 };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/chart-graphs.ts","../../src/BaseIcon.native.tsx","../../src/components/chart-graphs/Graph.tsx","../../src/components/chart-graphs/Pie14.tsx"],"sourcesContent":["// Auto-generated - do not edit manually\nexport { BaseIcon } from \"./BaseIcon\";\nexport type { BaseIconProps, BaseIconComponent, IconVariant } from \"./types\";\n\nexport { Graph } from \"./components/chart-graphs/Graph\";\nexport { Pie14 } from \"./components/chart-graphs/Pie14\";\n","import React from \"react\";\nimport { View, ViewStyle } from \"react-native\";\nimport { SvgXml } from \"react-native-svg\";\nimport type { BaseIconInternalProps } from \"./types\";\n\nexport const BaseIcon: React.FC<BaseIconInternalProps> = ({\n variant = \"line\",\n size = 24,\n color = \"currentColor\",\n solidContent,\n lineContent,\n style,\n testID,\n \"aria-label\": ariaLabel,\n}) => {\n const svgContent = variant === \"line\" ? lineContent : solidContent;\n\n // React Native doesn't support string sizes like \"100%\" - use default if string provided\n const numericSize = typeof size === \"number\" ? size : 24;\n\n const containerStyle: ViewStyle = {\n width: numericSize,\n height: numericSize,\n alignItems: \"center\",\n justifyContent: \"center\",\n ...(style as ViewStyle),\n };\n\n // Replace currentColor with actual color for React Native\n const coloredSvg = svgContent.replace(/currentColor/g, color);\n\n return (\n <View\n style={containerStyle}\n testID={testID}\n accessible={!!ariaLabel}\n accessibilityLabel={ariaLabel}\n accessibilityRole={ariaLabel ? \"image\" : undefined}\n >\n <SvgXml xml={coloredSvg} width=\"100%\" height=\"100%\" />\n </View>\n );\n};\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_graph--solid\"><g id=\"Union\"><path d=\"M7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20Z\" style=\"fill: currentColor\"/><path d=\"M15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z\" style=\"fill: currentColor\"/><path d=\"M23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20Z\" style=\"fill: currentColor\"/></g></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_graph--line\"><path id=\"Union\" d=\"M19 19H21L21 10H19L19 19ZM11 19L13 19L13 5H11L11 19ZM3 19H5L5 15H3L3 19ZM7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20ZM23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20ZM15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const Graph: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_pie-1-4--solid\"><g id=\"Union\"><path d=\"M11 13L21.9502 13C21.4491 18.0529 17.1849 22 12 22C6.47707 22 2.00011 17.5229 2 12C2 6.815 5.947 2.5508 11 2.0498L11 13Z\" style=\"fill: currentColor\"/><path d=\"M13 2.0498C15.295 2.281 17.4393 3.29867 19.0703 4.92969C20.7013 6.56069 21.719 8.70506 21.9502 11L13 11L13 2.0498Z\" style=\"fill: currentColor\"/></g></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_pie-1-4--line\"><path id=\"Union\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9917 2.0083C17.5145 2.0083 21.9917 6.48545 21.9917 12.0083C21.9917 17.5311 17.5145 22.0083 11.9917 22.0083C6.46885 22.0083 1.9917 17.5311 1.9917 12.0083C1.9917 6.48545 6.46885 2.0083 11.9917 2.0083ZM10.9917 4.07178C7.04548 4.56396 3.9917 7.92875 3.9917 12.0083C3.9917 16.4266 7.57342 20.0083 11.9917 20.0083C16.0712 20.0083 19.435 16.9545 19.9272 13.0083H10.9917V4.07178ZM12.9917 11.0083H19.9272C19.4759 7.3898 16.6102 4.52309 12.9917 4.07178V11.0083Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const Pie14: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACCA,0BAAgC;AAChC,8BAAuB;AAqCjB;AAlCC,IAAM,WAA4C,CAAC;AAAA,EACxD,UAAU;AAAA,EACV,OAAO;AAAA,EACP,QAAQ;AAAA,EACR,cAAAA;AAAA,EACA,aAAAC;AAAA,EACA;AAAA,EACA;AAAA,EACA,cAAc;AAChB,MAAM;AACJ,QAAM,aAAa,YAAY,SAASA,eAAcD;AAGtD,QAAM,cAAc,OAAO,SAAS,WAAW,OAAO;AAEtD,QAAM,iBAA4B;AAAA,IAChC,OAAO;AAAA,IACP,QAAQ;AAAA,IACR,YAAY;AAAA,IACZ,gBAAgB;AAAA,IAChB,GAAI;AAAA,EACN;AAGA,QAAM,aAAa,WAAW,QAAQ,iBAAiB,KAAK;AAE5D,SACE;AAAA,IAAC;AAAA;AAAA,MACC,OAAO;AAAA,MACP;AAAA,MACA,YAAY,CAAC,CAAC;AAAA,MACd,oBAAoB;AAAA,MACpB,mBAAmB,YAAY,UAAU;AAAA,MAEzC,sDAAC,kCAAO,KAAK,YAAY,OAAM,QAAO,QAAO,QAAO;AAAA;AAAA,EACtD;AAEJ;;;ACjCE,IAAAE,sBAAA;AAJF,IAAM,eAAe;AACrB,IAAM,cAAc;AAEb,IAAM,QAAiC,CAAC,UAC7C,6CAAC,YAAU,GAAG,OAAO,cAA4B,aAA0B;;;ACA3E,IAAAC,sBAAA;AAJF,IAAMC,gBAAe;AACrB,IAAMC,eAAc;AAEb,IAAM,QAAiC,CAAC,UAC7C,6CAAC,YAAU,GAAG,OAAO,cAAcD,eAAc,aAAaC,cAAa;","names":["solidContent","lineContent","import_jsx_runtime","import_jsx_runtime","solidContent","lineContent"]}
|
|
1
|
+
{"version":3,"sources":["../../src/chart-graphs.ts","../../src/BaseIcon.native.tsx","../../src/components/chart-graphs/Graph.tsx","../../src/components/chart-graphs/LineUpAlt.tsx","../../src/components/chart-graphs/Pie14.tsx"],"sourcesContent":["// Auto-generated - do not edit manually\nexport { BaseIcon } from \"./BaseIcon\";\nexport type { BaseIconProps, BaseIconComponent, IconVariant } from \"./types\";\n\nexport { Graph } from \"./components/chart-graphs/Graph\";\nexport { LineUpAlt } from \"./components/chart-graphs/LineUpAlt\";\nexport { Pie14 } from \"./components/chart-graphs/Pie14\";\n","import React from \"react\";\nimport { View, ViewStyle } from \"react-native\";\nimport { SvgXml } from \"react-native-svg\";\nimport type { BaseIconInternalProps } from \"./types\";\n\nexport const BaseIcon: React.FC<BaseIconInternalProps> = ({\n variant = \"line\",\n size = 24,\n color = \"currentColor\",\n solidContent,\n lineContent,\n style,\n testID,\n \"aria-label\": ariaLabel,\n}) => {\n const svgContent = variant === \"line\" ? lineContent : solidContent;\n\n // React Native doesn't support string sizes like \"100%\" - use default if string provided\n const numericSize = typeof size === \"number\" ? size : 24;\n\n const containerStyle: ViewStyle = {\n width: numericSize,\n height: numericSize,\n alignItems: \"center\",\n justifyContent: \"center\",\n ...(style as ViewStyle),\n };\n\n // Replace currentColor with actual color for React Native\n const coloredSvg = svgContent.replace(/currentColor/g, color);\n\n return (\n <View\n style={containerStyle}\n testID={testID}\n accessible={!!ariaLabel}\n accessibilityLabel={ariaLabel}\n accessibilityRole={ariaLabel ? \"image\" : undefined}\n >\n <SvgXml xml={coloredSvg} width=\"100%\" height=\"100%\" />\n </View>\n );\n};\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_graph--solid\"><g id=\"Union\"><path d=\"M7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20Z\" style=\"fill: currentColor\"/><path d=\"M15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z\" style=\"fill: currentColor\"/><path d=\"M23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20Z\" style=\"fill: currentColor\"/></g></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_graph--line\"><path id=\"Union\" d=\"M19 19H21L21 10H19L19 19ZM11 19L13 19L13 5H11L11 19ZM3 19H5L5 15H3L3 19ZM7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20ZM23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20ZM15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const Graph: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_line-up-alt--line\"><path id=\"Union\" d=\"M5 19H21V21H4C3.44772 21 3 20.5523 3 20V3H5V19ZM21 3.71875L17.9678 11.9033C17.7602 12.4633 17.111 12.718 16.5781 12.4482L11.5234 9.88867L8.89062 17L7 16.2812L10.0322 8.09668C10.2398 7.53666 10.889 7.28198 11.4219 7.55176L16.4756 10.1104L19.1094 3L21 3.71875Z\" style=\"fill: currentColor\"/></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_line-up-alt--line\"><path id=\"Union\" d=\"M5 19H21V21H4C3.44772 21 3 20.5523 3 20V3H5V19ZM21 3.71875L17.9678 11.9033C17.7602 12.4633 17.111 12.718 16.5781 12.4482L11.5234 9.88867L8.89062 17L7 16.2812L10.0322 8.09668C10.2398 7.53666 10.889 7.28198 11.4219 7.55176L16.4756 10.1104L19.1094 3L21 3.71875Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const LineUpAlt: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_pie-1-4--solid\"><g id=\"Union\"><path d=\"M11 13L21.9502 13C21.4491 18.0529 17.1849 22 12 22C6.47707 22 2.00011 17.5229 2 12C2 6.815 5.947 2.5508 11 2.0498L11 13Z\" style=\"fill: currentColor\"/><path d=\"M13 2.0498C15.295 2.281 17.4393 3.29867 19.0703 4.92969C20.7013 6.56069 21.719 8.70506 21.9502 11L13 11L13 2.0498Z\" style=\"fill: currentColor\"/></g></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_pie-1-4--line\"><path id=\"Union\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9917 2.0083C17.5145 2.0083 21.9917 6.48545 21.9917 12.0083C21.9917 17.5311 17.5145 22.0083 11.9917 22.0083C6.46885 22.0083 1.9917 17.5311 1.9917 12.0083C1.9917 6.48545 6.46885 2.0083 11.9917 2.0083ZM10.9917 4.07178C7.04548 4.56396 3.9917 7.92875 3.9917 12.0083C3.9917 16.4266 7.57342 20.0083 11.9917 20.0083C16.0712 20.0083 19.435 16.9545 19.9272 13.0083H10.9917V4.07178ZM12.9917 11.0083H19.9272C19.4759 7.3898 16.6102 4.52309 12.9917 4.07178V11.0083Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const Pie14: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACCA,0BAAgC;AAChC,8BAAuB;AAqCjB;AAlCC,IAAM,WAA4C,CAAC;AAAA,EACxD,UAAU;AAAA,EACV,OAAO;AAAA,EACP,QAAQ;AAAA,EACR,cAAAA;AAAA,EACA,aAAAC;AAAA,EACA;AAAA,EACA;AAAA,EACA,cAAc;AAChB,MAAM;AACJ,QAAM,aAAa,YAAY,SAASA,eAAcD;AAGtD,QAAM,cAAc,OAAO,SAAS,WAAW,OAAO;AAEtD,QAAM,iBAA4B;AAAA,IAChC,OAAO;AAAA,IACP,QAAQ;AAAA,IACR,YAAY;AAAA,IACZ,gBAAgB;AAAA,IAChB,GAAI;AAAA,EACN;AAGA,QAAM,aAAa,WAAW,QAAQ,iBAAiB,KAAK;AAE5D,SACE;AAAA,IAAC;AAAA;AAAA,MACC,OAAO;AAAA,MACP;AAAA,MACA,YAAY,CAAC,CAAC;AAAA,MACd,oBAAoB;AAAA,MACpB,mBAAmB,YAAY,UAAU;AAAA,MAEzC,sDAAC,kCAAO,KAAK,YAAY,OAAM,QAAO,QAAO,QAAO;AAAA;AAAA,EACtD;AAEJ;;;ACjCE,IAAAE,sBAAA;AAJF,IAAM,eAAe;AACrB,IAAM,cAAc;AAEb,IAAM,QAAiC,CAAC,UAC7C,6CAAC,YAAU,GAAG,OAAO,cAA4B,aAA0B;;;ACA3E,IAAAC,sBAAA;AAJF,IAAMC,gBAAe;AACrB,IAAMC,eAAc;AAEb,IAAM,YAAqC,CAAC,UACjD,6CAAC,YAAU,GAAG,OAAO,cAAcD,eAAc,aAAaC,cAAa;;;ACA3E,IAAAC,sBAAA;AAJF,IAAMC,gBAAe;AACrB,IAAMC,eAAc;AAEb,IAAM,QAAiC,CAAC,UAC7C,6CAAC,YAAU,GAAG,OAAO,cAAcD,eAAc,aAAaC,cAAa;","names":["solidContent","lineContent","import_jsx_runtime","import_jsx_runtime","solidContent","lineContent","import_jsx_runtime","solidContent","lineContent"]}
|
package/native/chart-graphs.mjs
CHANGED
|
@@ -6,13 +6,13 @@ var BaseIcon = ({
|
|
|
6
6
|
variant = "line",
|
|
7
7
|
size = 24,
|
|
8
8
|
color = "currentColor",
|
|
9
|
-
solidContent:
|
|
10
|
-
lineContent:
|
|
9
|
+
solidContent: solidContent4,
|
|
10
|
+
lineContent: lineContent4,
|
|
11
11
|
style,
|
|
12
12
|
testID,
|
|
13
13
|
"aria-label": ariaLabel
|
|
14
14
|
}) => {
|
|
15
|
-
const svgContent = variant === "line" ?
|
|
15
|
+
const svgContent = variant === "line" ? lineContent4 : solidContent4;
|
|
16
16
|
const numericSize = typeof size === "number" ? size : 24;
|
|
17
17
|
const containerStyle = {
|
|
18
18
|
width: numericSize,
|
|
@@ -41,14 +41,21 @@ var solidContent = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.or
|
|
|
41
41
|
var lineContent = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_graph--line"><path id="Union" d="M19 19H21L21 10H19L19 19ZM11 19L13 19L13 5H11L11 19ZM3 19H5L5 15H3L3 19ZM7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20ZM23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20ZM15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z" style="fill: currentColor"/></g></svg>`;
|
|
42
42
|
var Graph = (props) => /* @__PURE__ */ jsx2(BaseIcon, { ...props, solidContent, lineContent });
|
|
43
43
|
|
|
44
|
-
// src/components/chart-graphs/
|
|
44
|
+
// src/components/chart-graphs/LineUpAlt.tsx
|
|
45
45
|
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
46
|
-
var solidContent2 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="
|
|
47
|
-
var lineContent2 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="
|
|
48
|
-
var
|
|
46
|
+
var solidContent2 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_line-up-alt--line"><path id="Union" d="M5 19H21V21H4C3.44772 21 3 20.5523 3 20V3H5V19ZM21 3.71875L17.9678 11.9033C17.7602 12.4633 17.111 12.718 16.5781 12.4482L11.5234 9.88867L8.89062 17L7 16.2812L10.0322 8.09668C10.2398 7.53666 10.889 7.28198 11.4219 7.55176L16.4756 10.1104L19.1094 3L21 3.71875Z" style="fill: currentColor"/></g></svg>`;
|
|
47
|
+
var lineContent2 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_line-up-alt--line"><path id="Union" d="M5 19H21V21H4C3.44772 21 3 20.5523 3 20V3H5V19ZM21 3.71875L17.9678 11.9033C17.7602 12.4633 17.111 12.718 16.5781 12.4482L11.5234 9.88867L8.89062 17L7 16.2812L10.0322 8.09668C10.2398 7.53666 10.889 7.28198 11.4219 7.55176L16.4756 10.1104L19.1094 3L21 3.71875Z" style="fill: currentColor"/></g></svg>`;
|
|
48
|
+
var LineUpAlt = (props) => /* @__PURE__ */ jsx3(BaseIcon, { ...props, solidContent: solidContent2, lineContent: lineContent2 });
|
|
49
|
+
|
|
50
|
+
// src/components/chart-graphs/Pie14.tsx
|
|
51
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
52
|
+
var solidContent3 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_pie-1-4--solid"><g id="Union"><path d="M11 13L21.9502 13C21.4491 18.0529 17.1849 22 12 22C6.47707 22 2.00011 17.5229 2 12C2 6.815 5.947 2.5508 11 2.0498L11 13Z" style="fill: currentColor"/><path d="M13 2.0498C15.295 2.281 17.4393 3.29867 19.0703 4.92969C20.7013 6.56069 21.719 8.70506 21.9502 11L13 11L13 2.0498Z" style="fill: currentColor"/></g></g></svg>`;
|
|
53
|
+
var lineContent3 = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><g id="icon_pie-1-4--line"><path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M11.9917 2.0083C17.5145 2.0083 21.9917 6.48545 21.9917 12.0083C21.9917 17.5311 17.5145 22.0083 11.9917 22.0083C6.46885 22.0083 1.9917 17.5311 1.9917 12.0083C1.9917 6.48545 6.46885 2.0083 11.9917 2.0083ZM10.9917 4.07178C7.04548 4.56396 3.9917 7.92875 3.9917 12.0083C3.9917 16.4266 7.57342 20.0083 11.9917 20.0083C16.0712 20.0083 19.435 16.9545 19.9272 13.0083H10.9917V4.07178ZM12.9917 11.0083H19.9272C19.4759 7.3898 16.6102 4.52309 12.9917 4.07178V11.0083Z" style="fill: currentColor"/></g></svg>`;
|
|
54
|
+
var Pie14 = (props) => /* @__PURE__ */ jsx4(BaseIcon, { ...props, solidContent: solidContent3, lineContent: lineContent3 });
|
|
49
55
|
export {
|
|
50
56
|
BaseIcon,
|
|
51
57
|
Graph,
|
|
58
|
+
LineUpAlt,
|
|
52
59
|
Pie14
|
|
53
60
|
};
|
|
54
61
|
//# sourceMappingURL=chart-graphs.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/BaseIcon.native.tsx","../../src/components/chart-graphs/Graph.tsx","../../src/components/chart-graphs/Pie14.tsx"],"sourcesContent":["import React from \"react\";\nimport { View, ViewStyle } from \"react-native\";\nimport { SvgXml } from \"react-native-svg\";\nimport type { BaseIconInternalProps } from \"./types\";\n\nexport const BaseIcon: React.FC<BaseIconInternalProps> = ({\n variant = \"line\",\n size = 24,\n color = \"currentColor\",\n solidContent,\n lineContent,\n style,\n testID,\n \"aria-label\": ariaLabel,\n}) => {\n const svgContent = variant === \"line\" ? lineContent : solidContent;\n\n // React Native doesn't support string sizes like \"100%\" - use default if string provided\n const numericSize = typeof size === \"number\" ? size : 24;\n\n const containerStyle: ViewStyle = {\n width: numericSize,\n height: numericSize,\n alignItems: \"center\",\n justifyContent: \"center\",\n ...(style as ViewStyle),\n };\n\n // Replace currentColor with actual color for React Native\n const coloredSvg = svgContent.replace(/currentColor/g, color);\n\n return (\n <View\n style={containerStyle}\n testID={testID}\n accessible={!!ariaLabel}\n accessibilityLabel={ariaLabel}\n accessibilityRole={ariaLabel ? \"image\" : undefined}\n >\n <SvgXml xml={coloredSvg} width=\"100%\" height=\"100%\" />\n </View>\n );\n};\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_graph--solid\"><g id=\"Union\"><path d=\"M7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20Z\" style=\"fill: currentColor\"/><path d=\"M15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z\" style=\"fill: currentColor\"/><path d=\"M23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20Z\" style=\"fill: currentColor\"/></g></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_graph--line\"><path id=\"Union\" d=\"M19 19H21L21 10H19L19 19ZM11 19L13 19L13 5H11L11 19ZM3 19H5L5 15H3L3 19ZM7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20ZM23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20ZM15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const Graph: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_pie-1-4--solid\"><g id=\"Union\"><path d=\"M11 13L21.9502 13C21.4491 18.0529 17.1849 22 12 22C6.47707 22 2.00011 17.5229 2 12C2 6.815 5.947 2.5508 11 2.0498L11 13Z\" style=\"fill: currentColor\"/><path d=\"M13 2.0498C15.295 2.281 17.4393 3.29867 19.0703 4.92969C20.7013 6.56069 21.719 8.70506 21.9502 11L13 11L13 2.0498Z\" style=\"fill: currentColor\"/></g></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_pie-1-4--line\"><path id=\"Union\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9917 2.0083C17.5145 2.0083 21.9917 6.48545 21.9917 12.0083C21.9917 17.5311 17.5145 22.0083 11.9917 22.0083C6.46885 22.0083 1.9917 17.5311 1.9917 12.0083C1.9917 6.48545 6.46885 2.0083 11.9917 2.0083ZM10.9917 4.07178C7.04548 4.56396 3.9917 7.92875 3.9917 12.0083C3.9917 16.4266 7.57342 20.0083 11.9917 20.0083C16.0712 20.0083 19.435 16.9545 19.9272 13.0083H10.9917V4.07178ZM12.9917 11.0083H19.9272C19.4759 7.3898 16.6102 4.52309 12.9917 4.07178V11.0083Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const Pie14: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n"],"mappings":";AACA,SAAS,YAAuB;AAChC,SAAS,cAAc;AAqCjB;AAlCC,IAAM,WAA4C,CAAC;AAAA,EACxD,UAAU;AAAA,EACV,OAAO;AAAA,EACP,QAAQ;AAAA,EACR,cAAAA;AAAA,EACA,aAAAC;AAAA,EACA;AAAA,EACA;AAAA,EACA,cAAc;AAChB,MAAM;AACJ,QAAM,aAAa,YAAY,SAASA,eAAcD;AAGtD,QAAM,cAAc,OAAO,SAAS,WAAW,OAAO;AAEtD,QAAM,iBAA4B;AAAA,IAChC,OAAO;AAAA,IACP,QAAQ;AAAA,IACR,YAAY;AAAA,IACZ,gBAAgB;AAAA,IAChB,GAAI;AAAA,EACN;AAGA,QAAM,aAAa,WAAW,QAAQ,iBAAiB,KAAK;AAE5D,SACE;AAAA,IAAC;AAAA;AAAA,MACC,OAAO;AAAA,MACP;AAAA,MACA,YAAY,CAAC,CAAC;AAAA,MACd,oBAAoB;AAAA,MACpB,mBAAmB,YAAY,UAAU;AAAA,MAEzC,8BAAC,UAAO,KAAK,YAAY,OAAM,QAAO,QAAO,QAAO;AAAA;AAAA,EACtD;AAEJ;;;ACjCE,gBAAAE,YAAA;AAJF,IAAM,eAAe;AACrB,IAAM,cAAc;AAEb,IAAM,QAAiC,CAAC,UAC7C,gBAAAA,KAAC,YAAU,GAAG,OAAO,cAA4B,aAA0B;;;ACA3E,gBAAAC,YAAA;AAJF,IAAMC,gBAAe;AACrB,IAAMC,eAAc;AAEb,IAAM,QAAiC,CAAC,UAC7C,gBAAAF,KAAC,YAAU,GAAG,OAAO,cAAcC,eAAc,aAAaC,cAAa;","names":["solidContent","lineContent","jsx","jsx","solidContent","lineContent"]}
|
|
1
|
+
{"version":3,"sources":["../../src/BaseIcon.native.tsx","../../src/components/chart-graphs/Graph.tsx","../../src/components/chart-graphs/LineUpAlt.tsx","../../src/components/chart-graphs/Pie14.tsx"],"sourcesContent":["import React from \"react\";\nimport { View, ViewStyle } from \"react-native\";\nimport { SvgXml } from \"react-native-svg\";\nimport type { BaseIconInternalProps } from \"./types\";\n\nexport const BaseIcon: React.FC<BaseIconInternalProps> = ({\n variant = \"line\",\n size = 24,\n color = \"currentColor\",\n solidContent,\n lineContent,\n style,\n testID,\n \"aria-label\": ariaLabel,\n}) => {\n const svgContent = variant === \"line\" ? lineContent : solidContent;\n\n // React Native doesn't support string sizes like \"100%\" - use default if string provided\n const numericSize = typeof size === \"number\" ? size : 24;\n\n const containerStyle: ViewStyle = {\n width: numericSize,\n height: numericSize,\n alignItems: \"center\",\n justifyContent: \"center\",\n ...(style as ViewStyle),\n };\n\n // Replace currentColor with actual color for React Native\n const coloredSvg = svgContent.replace(/currentColor/g, color);\n\n return (\n <View\n style={containerStyle}\n testID={testID}\n accessible={!!ariaLabel}\n accessibilityLabel={ariaLabel}\n accessibilityRole={ariaLabel ? \"image\" : undefined}\n >\n <SvgXml xml={coloredSvg} width=\"100%\" height=\"100%\" />\n </View>\n );\n};\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_graph--solid\"><g id=\"Union\"><path d=\"M7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20Z\" style=\"fill: currentColor\"/><path d=\"M15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z\" style=\"fill: currentColor\"/><path d=\"M23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20Z\" style=\"fill: currentColor\"/></g></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_graph--line\"><path id=\"Union\" d=\"M19 19H21L21 10H19L19 19ZM11 19L13 19L13 5H11L11 19ZM3 19H5L5 15H3L3 19ZM7 20C7 20.5523 6.55228 21 6 21H2C1.44772 21 1 20.5523 1 20L1 14C1 13.4477 1.44772 13 2 13H6C6.55228 13 7 13.4477 7 14L7 20ZM23 20C23 20.5523 22.5523 21 22 21H18C17.4477 21 17 20.5523 17 20L17 9C17 8.44772 17.4477 8 18 8H22C22.5523 8 23 8.44772 23 9L23 20ZM15 20C15 20.5523 14.5523 21 14 21L10 21C9.44772 21 9 20.5523 9 20L9 4C9 3.44772 9.44772 3 10 3L14 3C14.5523 3 15 3.44772 15 4L15 20Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const Graph: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_line-up-alt--line\"><path id=\"Union\" d=\"M5 19H21V21H4C3.44772 21 3 20.5523 3 20V3H5V19ZM21 3.71875L17.9678 11.9033C17.7602 12.4633 17.111 12.718 16.5781 12.4482L11.5234 9.88867L8.89062 17L7 16.2812L10.0322 8.09668C10.2398 7.53666 10.889 7.28198 11.4219 7.55176L16.4756 10.1104L19.1094 3L21 3.71875Z\" style=\"fill: currentColor\"/></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_line-up-alt--line\"><path id=\"Union\" d=\"M5 19H21V21H4C3.44772 21 3 20.5523 3 20V3H5V19ZM21 3.71875L17.9678 11.9033C17.7602 12.4633 17.111 12.718 16.5781 12.4482L11.5234 9.88867L8.89062 17L7 16.2812L10.0322 8.09668C10.2398 7.53666 10.889 7.28198 11.4219 7.55176L16.4756 10.1104L19.1094 3L21 3.71875Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const LineUpAlt: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n","// Auto-generated - do not edit manually\nimport React from \"react\";\nimport { BaseIcon } from \"../../BaseIcon\";\nimport type { BaseIconProps } from \"../../types\";\n\nconst solidContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_pie-1-4--solid\"><g id=\"Union\"><path d=\"M11 13L21.9502 13C21.4491 18.0529 17.1849 22 12 22C6.47707 22 2.00011 17.5229 2 12C2 6.815 5.947 2.5508 11 2.0498L11 13Z\" style=\"fill: currentColor\"/><path d=\"M13 2.0498C15.295 2.281 17.4393 3.29867 19.0703 4.92969C20.7013 6.56069 21.719 8.70506 21.9502 11L13 11L13 2.0498Z\" style=\"fill: currentColor\"/></g></g></svg>`;\nconst lineContent = `<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\"><g id=\"icon_pie-1-4--line\"><path id=\"Union\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9917 2.0083C17.5145 2.0083 21.9917 6.48545 21.9917 12.0083C21.9917 17.5311 17.5145 22.0083 11.9917 22.0083C6.46885 22.0083 1.9917 17.5311 1.9917 12.0083C1.9917 6.48545 6.46885 2.0083 11.9917 2.0083ZM10.9917 4.07178C7.04548 4.56396 3.9917 7.92875 3.9917 12.0083C3.9917 16.4266 7.57342 20.0083 11.9917 20.0083C16.0712 20.0083 19.435 16.9545 19.9272 13.0083H10.9917V4.07178ZM12.9917 11.0083H19.9272C19.4759 7.3898 16.6102 4.52309 12.9917 4.07178V11.0083Z\" style=\"fill: currentColor\"/></g></svg>`;\n\nexport const Pie14: React.FC<BaseIconProps> = (props) => (\n <BaseIcon {...props} solidContent={solidContent} lineContent={lineContent} />\n);\n"],"mappings":";AACA,SAAS,YAAuB;AAChC,SAAS,cAAc;AAqCjB;AAlCC,IAAM,WAA4C,CAAC;AAAA,EACxD,UAAU;AAAA,EACV,OAAO;AAAA,EACP,QAAQ;AAAA,EACR,cAAAA;AAAA,EACA,aAAAC;AAAA,EACA;AAAA,EACA;AAAA,EACA,cAAc;AAChB,MAAM;AACJ,QAAM,aAAa,YAAY,SAASA,eAAcD;AAGtD,QAAM,cAAc,OAAO,SAAS,WAAW,OAAO;AAEtD,QAAM,iBAA4B;AAAA,IAChC,OAAO;AAAA,IACP,QAAQ;AAAA,IACR,YAAY;AAAA,IACZ,gBAAgB;AAAA,IAChB,GAAI;AAAA,EACN;AAGA,QAAM,aAAa,WAAW,QAAQ,iBAAiB,KAAK;AAE5D,SACE;AAAA,IAAC;AAAA;AAAA,MACC,OAAO;AAAA,MACP;AAAA,MACA,YAAY,CAAC,CAAC;AAAA,MACd,oBAAoB;AAAA,MACpB,mBAAmB,YAAY,UAAU;AAAA,MAEzC,8BAAC,UAAO,KAAK,YAAY,OAAM,QAAO,QAAO,QAAO;AAAA;AAAA,EACtD;AAEJ;;;ACjCE,gBAAAE,YAAA;AAJF,IAAM,eAAe;AACrB,IAAM,cAAc;AAEb,IAAM,QAAiC,CAAC,UAC7C,gBAAAA,KAAC,YAAU,GAAG,OAAO,cAA4B,aAA0B;;;ACA3E,gBAAAC,YAAA;AAJF,IAAMC,gBAAe;AACrB,IAAMC,eAAc;AAEb,IAAM,YAAqC,CAAC,UACjD,gBAAAF,KAAC,YAAU,GAAG,OAAO,cAAcC,eAAc,aAAaC,cAAa;;;ACA3E,gBAAAC,YAAA;AAJF,IAAMC,gBAAe;AACrB,IAAMC,eAAc;AAEb,IAAM,QAAiC,CAAC,UAC7C,gBAAAF,KAAC,YAAU,GAAG,OAAO,cAAcC,eAAc,aAAaC,cAAa;","names":["solidContent","lineContent","jsx","jsx","solidContent","lineContent","jsx","solidContent","lineContent"]}
|
package/native/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { B as BaseIcon, a as BaseIconComponent, b as BaseIconProps, I as IconVariant } from './BaseIcon-DgSOiwGX.mjs';
|
|
2
2
|
export { Footer, GameDescription, GridFour, GridFourt, GridThree, GridTwoHr, GridTwoVr, Header, LeadBlock, SidebarLeft, SidebarRight, Slider, ViewBoard, ViewColumn, ViewList, ViewTable, ViewTimeline } from './alignments-layouts.mjs';
|
|
3
3
|
export { Bookmark, BookmarkAdd, BookmarkCheck, BookmarkOff, BookmarkRemove, BookmarkSubtract } from './bookmarks.mjs';
|
|
4
|
-
export { Graph, Pie14 } from './chart-graphs.mjs';
|
|
4
|
+
export { Graph, LineUpAlt, Pie14 } from './chart-graphs.mjs';
|
|
5
5
|
export { At, Chat, ChatDots, ChatText, ChatTwoMessages, Mail, MailAddOut, MailCheckOut, MailDownloadOut, MailEditOut, MailExportOut, MailFavouriteOut, MailImportOut, MailLockedOut, MailRemoveOut, MailSearchOut, MailSubtractOut, MailUploadOut, MailViewOut, News, Phone, PhoneAdd, PhoneBlock, PhoneIncoming, PhoneOutgoing, PhoneSubtract, PhoneVoice } from './communication.mjs';
|
|
6
6
|
export { ArrowDown, ArrowDownAlt, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftAlt, ArrowRight, ArrowRightAlt, ArrowRightLeft, ArrowUp, ArrowUpAlt, ArrowUpLeft, ArrowUpRight, Check, CheckAlt, CheckCr, CheckSq, ChevronDown, ChevronDownCr, ChevronDownSq, ChevronLeft, ChevronLeftCr, ChevronLeftSq, ChevronRight, ChevronRightCr, ChevronRightSq, ChevronUp, ChevronUpCr, ChevronUpSq, Collapse, CollapseAlt, ConvergingArrows, Copy, Dot, Drag, ExclamationMarkCr, ExclamationMarkSq, Expand, ExpandAlt, ExternalLeft, Fitscreen, Fullscreen, InfoCr, InfoSq, Menu, Minus, MinusCr, MinusSq, MoreCr, MoreHr, MoreSq, MoreVr, Paperclip, Plus, PlusAlt, PlusCr, PlusSq, QuestionMarkCr, QuestionMarkSq, Remove, RemoveAlt, RemoveCr, RemoveSq, Reset, ReverseLeft, Sort, ThumbsDown, ThumbsUp, WarningMark } from './controls.mjs';
|
|
7
7
|
export { Calendar, Clock } from './date-time.mjs';
|
package/native/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { B as BaseIcon, a as BaseIconComponent, b as BaseIconProps, I as IconVariant } from './BaseIcon-DgSOiwGX.js';
|
|
2
2
|
export { Footer, GameDescription, GridFour, GridFourt, GridThree, GridTwoHr, GridTwoVr, Header, LeadBlock, SidebarLeft, SidebarRight, Slider, ViewBoard, ViewColumn, ViewList, ViewTable, ViewTimeline } from './alignments-layouts.js';
|
|
3
3
|
export { Bookmark, BookmarkAdd, BookmarkCheck, BookmarkOff, BookmarkRemove, BookmarkSubtract } from './bookmarks.js';
|
|
4
|
-
export { Graph, Pie14 } from './chart-graphs.js';
|
|
4
|
+
export { Graph, LineUpAlt, Pie14 } from './chart-graphs.js';
|
|
5
5
|
export { At, Chat, ChatDots, ChatText, ChatTwoMessages, Mail, MailAddOut, MailCheckOut, MailDownloadOut, MailEditOut, MailExportOut, MailFavouriteOut, MailImportOut, MailLockedOut, MailRemoveOut, MailSearchOut, MailSubtractOut, MailUploadOut, MailViewOut, News, Phone, PhoneAdd, PhoneBlock, PhoneIncoming, PhoneOutgoing, PhoneSubtract, PhoneVoice } from './communication.js';
|
|
6
6
|
export { ArrowDown, ArrowDownAlt, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftAlt, ArrowRight, ArrowRightAlt, ArrowRightLeft, ArrowUp, ArrowUpAlt, ArrowUpLeft, ArrowUpRight, Check, CheckAlt, CheckCr, CheckSq, ChevronDown, ChevronDownCr, ChevronDownSq, ChevronLeft, ChevronLeftCr, ChevronLeftSq, ChevronRight, ChevronRightCr, ChevronRightSq, ChevronUp, ChevronUpCr, ChevronUpSq, Collapse, CollapseAlt, ConvergingArrows, Copy, Dot, Drag, ExclamationMarkCr, ExclamationMarkSq, Expand, ExpandAlt, ExternalLeft, Fitscreen, Fullscreen, InfoCr, InfoSq, Menu, Minus, MinusCr, MinusSq, MoreCr, MoreHr, MoreSq, MoreVr, Paperclip, Plus, PlusAlt, PlusCr, PlusSq, QuestionMarkCr, QuestionMarkSq, Remove, RemoveAlt, RemoveCr, RemoveSq, Reset, ReverseLeft, Sort, ThumbsDown, ThumbsUp, WarningMark } from './controls.js';
|
|
7
7
|
export { Calendar, Clock } from './date-time.js';
|