@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.161 → 1.1.162
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/IconStackedBarChart2/index.d.ts +4 -0
- package/IconStackedBarChart2/index.js +2 -0
- package/IconStackedBarChart2/index.js.map +1 -0
- package/IconStackedBarChart2/index.mjs +2 -0
- package/IconStackedBarChart2/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var i=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=m(o,s))||p.enumerable});return r};var d=(r,o,e)=>(e=r!=null?l(h(r)):{},C(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(i({},"__esModule",{value:!0}),r);var P={};B(P,{IconStackedBarChart2:()=>c,default:()=>x});module.exports=I(P);var t=d(require("react"));var k=d(require("react")),u=require("react-native-svg"),a=({children:r,size:o=24,...e})=>k.default.createElement(u.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),c=r=>t.default.createElement(a,{...r},t.default.createElement(n.Path,{d:"M3 19H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M4 18V13.5C4 12.6716 4.67157 12 5.5 12C6.32843 12 7 12.6716 7 13.5V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M7 18V8.5C7 7.67157 7.67157 7 8.5 7C9.32843 7 10 7.67157 10 8.5V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M14 18L14 11.5C14 10.6716 14.6716 10 15.5 10C16.3284 10 17 10.6716 17 11.5V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M17 18L17 6.5C17 5.67157 17.6716 5 18.5 5C19.3284 5 20 5.67157 20 6.5V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;0&&(module.exports={IconStackedBarChart2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStackedBarChart2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconStackedBarChart2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 19H21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 18V13.5C4 12.6716 4.67157 12 5.5 12C6.32843 12 7 12.6716 7 13.5V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7 18V8.5C7 7.67157 7.67157 7 8.5 7C9.32843 7 10 7.67157 10 8.5V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14 18L14 11.5C14 10.6716 14.6716 10 15.5 10C16.3284 10 17 10.6716 17 11.5V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17 18L17 6.5C17 5.67157 17.6716 5 18.5 5C19.3284 5 20 5.67157 20 6.5V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackedBarChart2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gFACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconStackedBarChart2_exports","__export","IconStackedBarChart2","IconStackedBarChart2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStackedBarChart2","props","React","CentralIconBase","IconStackedBarChart2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import i from"react";import{Svg as p}from"react-native-svg";var n=({children:t,size:r=24,...s})=>i.createElement(p,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var C=t=>o.createElement(n,{...t},o.createElement(e,{d:"M3 19H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M4 18V13.5C4 12.6716 4.67157 12 5.5 12C6.32843 12 7 12.6716 7 13.5V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M7 18V8.5C7 7.67157 7.67157 7 8.5 7C9.32843 7 10 7.67157 10 8.5V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M14 18L14 11.5C14 10.6716 14.6716 10 15.5 10C16.3284 10 17 10.6716 17 11.5V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M17 18L17 6.5C17 5.67157 17.6716 5 18.5 5C19.3284 5 20 5.67157 20 6.5V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),f=C;export{C as IconStackedBarChart2,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStackedBarChart2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconStackedBarChart2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 19H21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 18V13.5C4 12.6716 4.67157 12 5.5 12C6.32843 12 7 12.6716 7 13.5V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7 18V8.5C7 7.67157 7.67157 7 8.5 7C9.32843 7 10 7.67157 10 8.5V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14 18L14 11.5C14 10.6716 14.6716 10 15.5 10C16.3284 10 17 10.6716 17 11.5V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17 18L17 6.5C17 5.67157 17.6716 5 18.5 5C19.3284 5 20 5.67157 20 6.5V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackedBarChart2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gFACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStackedBarChart2","props","React","CentralIconBase","IconStackedBarChart2_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -22442,6 +22442,20 @@
|
|
|
22442
22442
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
22443
22443
|
"componentName": "IconStackedBarChart100"
|
|
22444
22444
|
},
|
|
22445
|
+
{
|
|
22446
|
+
"category": "Statistics & Charts",
|
|
22447
|
+
"svg": "<path d=\"M3 19H21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4 18V13.5C4 12.6716 4.67157 12 5.5 12C6.32843 12 7 12.6716 7 13.5V18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 18V8.5C7 7.67157 7.67157 7 8.5 7C9.32843 7 10 7.67157 10 8.5V18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 18L14 11.5C14 10.6716 14.6716 10 15.5 10C16.3284 10 17 10.6716 17 11.5V18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 18L17 6.5C17 5.67157 17.6716 5 18.5 5C19.3284 5 20 5.67157 20 6.5V18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
22448
|
+
"iconName": "stacked-bar-chart-2, revenue",
|
|
22449
|
+
"variant": {
|
|
22450
|
+
"join": "round",
|
|
22451
|
+
"filled": "off",
|
|
22452
|
+
"radius": "2",
|
|
22453
|
+
"stroke": "2"
|
|
22454
|
+
},
|
|
22455
|
+
"createdAt": "2026-03-17T12:01:24.906844+00:00",
|
|
22456
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
22457
|
+
"componentName": "IconStackedBarChart2"
|
|
22458
|
+
},
|
|
22445
22459
|
{
|
|
22446
22460
|
"category": "Statistics & Charts",
|
|
22447
22461
|
"svg": "<path d=\"M4 4V18C4 19.1046 4.89543 20 6 20H20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 17V12C8 10.8954 8.89543 10 10 10H11C12.1046 10 13 10.8954 13 12V17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 17V9C13 7.89543 13.8954 7 15 7H16C17.1046 7 18 7.89543 18 9V17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.162",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1875,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 70,
|
|
@@ -1698,7 +1698,7 @@
|
|
|
1698
1698
|
]
|
|
1699
1699
|
},
|
|
1700
1700
|
"Statistics & Charts": {
|
|
1701
|
-
"count":
|
|
1701
|
+
"count": 39,
|
|
1702
1702
|
"icons": [
|
|
1703
1703
|
"IconAnalytics",
|
|
1704
1704
|
"IconChart1",
|
|
@@ -1727,6 +1727,7 @@
|
|
|
1727
1727
|
"IconSankeyChart",
|
|
1728
1728
|
"IconStackedBarChart",
|
|
1729
1729
|
"IconStackedBarChart100",
|
|
1730
|
+
"IconStackedBarChart2",
|
|
1730
1731
|
"IconStackedBarChartAxis2",
|
|
1731
1732
|
"IconSunburstChart",
|
|
1732
1733
|
"IconSunburstChart2",
|
|
@@ -3679,6 +3680,7 @@
|
|
|
3679
3680
|
"IconStableVoice": "stable-voice, stable-volume, voice-circle, voice-control",
|
|
3680
3681
|
"IconStackedBarChart": "stacked-bar-chart",
|
|
3681
3682
|
"IconStackedBarChart100": "stacked-bar-chart-100",
|
|
3683
|
+
"IconStackedBarChart2": "stacked-bar-chart-2, revenue",
|
|
3682
3684
|
"IconStackedBarChartAxis2": "stacked-bar-chart-axis-2",
|
|
3683
3685
|
"IconStackOverflow": "stack-overflow",
|
|
3684
3686
|
"IconStage": "stage, show",
|
package/index.d.ts
CHANGED
|
@@ -1602,6 +1602,7 @@ export { IconStableVoice, default as IconStableVoiceDefault, } from "./IconStabl
|
|
|
1602
1602
|
export { IconStackOverflow, default as IconStackOverflowDefault, } from "./IconStackOverflow";
|
|
1603
1603
|
export { IconStackedBarChart, default as IconStackedBarChartDefault, } from "./IconStackedBarChart";
|
|
1604
1604
|
export { IconStackedBarChart100, default as IconStackedBarChart100Default, } from "./IconStackedBarChart100";
|
|
1605
|
+
export { IconStackedBarChart2, default as IconStackedBarChart2Default, } from "./IconStackedBarChart2";
|
|
1605
1606
|
export { IconStackedBarChartAxis2, default as IconStackedBarChartAxis2Default, } from "./IconStackedBarChartAxis2";
|
|
1606
1607
|
export { IconStage, default as IconStageDefault } from "./IconStage";
|
|
1607
1608
|
export { IconStamps, default as IconStampsDefault } from "./IconStamps";
|