@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.163 → 1.1.165
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/IconMapPin2/index.d.ts +4 -0
- package/IconMapPin2/index.js +2 -0
- package/IconMapPin2/index.js.map +1 -0
- package/IconMapPin2/index.mjs +2 -0
- package/IconMapPin2/index.mjs.map +1 -0
- package/IconStackedBarChart100Axis/index.d.ts +4 -0
- package/IconStackedBarChart100Axis/index.js +2 -0
- package/IconStackedBarChart100Axis/index.js.map +1 -0
- package/IconStackedBarChart100Axis/index.mjs +2 -0
- package/IconStackedBarChart100Axis/index.mjs.map +1 -0
- package/IconStackedBarChartHorizontal100Axis/index.d.ts +4 -0
- package/IconStackedBarChartHorizontal100Axis/index.js +2 -0
- package/IconStackedBarChartHorizontal100Axis/index.js.map +1 -0
- package/IconStackedBarChartHorizontal100Axis/index.mjs +2 -0
- package/IconStackedBarChartHorizontal100Axis/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +10 -4
- package/index.d.ts +3 -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 +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=B(o,e))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(P(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconMapPin2:()=>i,default:()=>h});module.exports=g(v);var C=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>l.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>C.default.createElement(f,{...r},C.default.createElement(p.Path,{d:"M19.2008 10.2C19.2008 6.22355 15.9772 3 12.0008 3C8.02433 3 4.80078 6.22355 4.80078 10.2C4.80078 14.5076 9.30078 16.95 11.0032 20.4076C11.1866 20.7801 11.5856 21 12.0008 21C12.416 21 12.7956 20.7699 12.9983 20.4076C14.7008 16.95 19.2008 14.5076 19.2008 10.2Z",stroke:"currentColor",strokeWidth:"2"}),C.default.createElement(p.Path,{d:"M9 10.2002C9 8.54334 10.3431 7.2002 12 7.2002C13.6569 7.2002 15 8.54334 15 10.2002C15 11.857 13.6569 13.2002 12 13.2002C10.3431 13.2002 9 11.857 9 10.2002Z",stroke:"currentColor",strokeWidth:"2"})),h=i;0&&(module.exports={IconMapPin2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMapPin2/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 IconMapPin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.2008 10.2C19.2008 6.22355 15.9772 3 12.0008 3C8.02433 3 4.80078 6.22355 4.80078 10.2C4.80078 14.5076 9.30078 16.95 11.0032 20.4076C11.1866 20.7801 11.5856 21 12.0008 21C12.416 21 12.7956 20.7699 12.9983 20.4076C14.7008 16.95 19.2008 14.5076 19.2008 10.2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M9 10.2002C9 8.54334 10.3431 7.2002 12 7.2002C13.6569 7.2002 15 8.54334 15 10.2002C15 11.857 13.6569 13.2002 12 13.2002C10.3431 13.2002 9 11.857 9 10.2002Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapPin2;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,qQACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8JACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconMapPin2_exports","__export","IconMapPin2","IconMapPin2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMapPin2","props","React","CentralIconBase","IconMapPin2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M19.2008 10.2C19.2008 6.22355 15.9772 3 12.0008 3C8.02433 3 4.80078 6.22355 4.80078 10.2C4.80078 14.5076 9.30078 16.95 11.0032 20.4076C11.1866 20.7801 11.5856 21 12.0008 21C12.416 21 12.7956 20.7699 12.9983 20.4076C14.7008 16.95 19.2008 14.5076 19.2008 10.2Z",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{d:"M9 10.2002C9 8.54334 10.3431 7.2002 12 7.2002C13.6569 7.2002 15 8.54334 15 10.2002C15 11.857 13.6569 13.2002 12 13.2002C10.3431 13.2002 9 11.857 9 10.2002Z",stroke:"currentColor",strokeWidth:"2"})),x=a;export{a as IconMapPin2,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMapPin2/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 IconMapPin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.2008 10.2C19.2008 6.22355 15.9772 3 12.0008 3C8.02433 3 4.80078 6.22355 4.80078 10.2C4.80078 14.5076 9.30078 16.95 11.0032 20.4076C11.1866 20.7801 11.5856 21 12.0008 21C12.416 21 12.7956 20.7699 12.9983 20.4076C14.7008 16.95 19.2008 14.5076 19.2008 10.2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M9 10.2002C9 8.54334 10.3431 7.2002 12 7.2002C13.6569 7.2002 15 8.54334 15 10.2002C15 11.857 13.6569 13.2002 12 13.2002C10.3431 13.2002 9 11.857 9 10.2002Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapPin2;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,qQACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8JACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMapPin2","props","React","CentralIconBase","IconMapPin2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=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})},k=(r,o,e,d)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(d=L(o,s))||d.enumerable});return r};var p=(r,o,e)=>(e=r!=null?l(h(r)):{},k(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>k(i({},"__esModule",{value:!0}),r);var j={};B(j,{IconStackedBarChart100Axis:()=>c,default:()=>I});module.exports=x(j);var n=p(require("react"));var u=p(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...e})=>u.default.createElement(C.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 t=require("react-native-svg"),c=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M8 17V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M13 17V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M18 17V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M18 10V6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M13 7V6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8 9V6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M4 4V18C4 19.1046 4.89543 20 6 20H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=c;0&&(module.exports={IconStackedBarChart100Axis});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStackedBarChart100Axis/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 IconStackedBarChart100Axis: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 17V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 17V11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18 17V14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18 10V6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 7V6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 9V6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 4V18C4 19.1046 4.89543 20 6 20H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackedBarChart100Axis;\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,gCAAAE,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,EAAwDC,GAEjE,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,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,SACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconStackedBarChart100Axis_exports","__export","IconStackedBarChart100Axis","IconStackedBarChart100Axis_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStackedBarChart100Axis","props","React","CentralIconBase","IconStackedBarChart100Axis_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import i from"react";import{Svg as d}from"react-native-svg";var t=({children:n,size:e=24,...s})=>i.createElement(d,{...s,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},n);import{Path as o}from"react-native-svg";var k=n=>r.createElement(t,{...n},r.createElement(o,{d:"M8 17V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M13 17V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M18 17V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M18 10V6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M13 7V6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M8 9V6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M4 4V18C4 19.1046 4.89543 20 6 20H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),f=k;export{k as IconStackedBarChart100Axis,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStackedBarChart100Axis/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 IconStackedBarChart100Axis: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 17V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 17V11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18 17V14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18 10V6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 7V6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 9V6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 4V18C4 19.1046 4.89543 20 6 20H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackedBarChart100Axis;\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,EAAwDC,GAEjEC,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,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,SACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStackedBarChart100Axis","props","React","CentralIconBase","IconStackedBarChart100Axis_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=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})},k=(r,o,e,d)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(d=L(o,s))||d.enumerable});return r};var p=(r,o,e)=>(e=r!=null?l(h(r)):{},k(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>k(i({},"__esModule",{value:!0}),r);var I={};B(I,{IconStackedBarChartHorizontal100Axis:()=>c,default:()=>H});module.exports=x(I);var n=p(require("react"));var u=p(require("react")),a=require("react-native-svg"),C=({children:r,size:o=24,...e})=>u.default.createElement(a.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 t=require("react-native-svg"),c=r=>n.default.createElement(C,{...r},n.default.createElement(t.Path,{d:"M4 4V18C4 19.1046 4.89543 20 6 20H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19 16H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19 11.5H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19 7H17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M13 7H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M10 11.5H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M11 16H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),H=c;0&&(module.exports={IconStackedBarChartHorizontal100Axis});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStackedBarChartHorizontal100Axis/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 IconStackedBarChartHorizontal100Axis: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 4V18C4 19.1046 4.89543 20 6 20H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 16H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 11.5H14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 7H17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 7H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 11.5H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 16H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackedBarChartHorizontal100Axis;\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,0CAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconStackedBarChartHorizontal100Axis_exports","__export","IconStackedBarChartHorizontal100Axis","IconStackedBarChartHorizontal100Axis_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStackedBarChartHorizontal100Axis","props","React","CentralIconBase","IconStackedBarChartHorizontal100Axis_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import i from"react";import{Svg as d}from"react-native-svg";var t=({children:n,size:e=24,...s})=>i.createElement(d,{...s,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},n);import{Path as o}from"react-native-svg";var k=n=>r.createElement(t,{...n},r.createElement(o,{d:"M4 4V18C4 19.1046 4.89543 20 6 20H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M19 16H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M19 11.5H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M19 7H17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M13 7H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M10 11.5H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M11 16H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),f=k;export{k as IconStackedBarChartHorizontal100Axis,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStackedBarChartHorizontal100Axis/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 IconStackedBarChartHorizontal100Axis: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 4V18C4 19.1046 4.89543 20 6 20H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 16H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 11.5H14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 7H17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 7H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 11.5H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 16H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackedBarChartHorizontal100Axis;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStackedBarChartHorizontal100Axis","props","React","CentralIconBase","IconStackedBarChartHorizontal100Axis_default"]}
|
package/README.md
CHANGED
|
@@ -1272,6 +1272,7 @@ Below is a complete list of available icons:
|
|
|
1272
1272
|
- IconLocation
|
|
1273
1273
|
- IconMap
|
|
1274
1274
|
- IconMapPin
|
|
1275
|
+
- IconMapPin2
|
|
1275
1276
|
- IconMapPinFlat
|
|
1276
1277
|
- IconPinCircle
|
|
1277
1278
|
- IconPinFlag
|
|
@@ -1797,8 +1798,10 @@ Below is a complete list of available icons:
|
|
|
1797
1798
|
- IconSankeyChart
|
|
1798
1799
|
- IconStackedBarChart
|
|
1799
1800
|
- IconStackedBarChart100
|
|
1801
|
+
- IconStackedBarChart100Axis
|
|
1800
1802
|
- IconStackedBarChart2
|
|
1801
1803
|
- IconStackedBarChartAxis2
|
|
1804
|
+
- IconStackedBarChartHorizontal100Axis
|
|
1802
1805
|
- IconSunburstChart
|
|
1803
1806
|
- IconSunburstChart2
|
|
1804
1807
|
- IconTrending1
|
package/filtered-icons.json
CHANGED
|
@@ -15190,6 +15190,20 @@
|
|
|
15190
15190
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
15191
15191
|
"componentName": "IconMapPin"
|
|
15192
15192
|
},
|
|
15193
|
+
{
|
|
15194
|
+
"category": "Location",
|
|
15195
|
+
"svg": "<path d=\"M19.2008 10.2C19.2008 6.22355 15.9772 3 12.0008 3C8.02433 3 4.80078 6.22355 4.80078 10.2C4.80078 14.5076 9.30078 16.95 11.0032 20.4076C11.1866 20.7801 11.5856 21 12.0008 21C12.416 21 12.7956 20.7699 12.9983 20.4076C14.7008 16.95 19.2008 14.5076 19.2008 10.2Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M9 10.2002C9 8.54334 10.3431 7.2002 12 7.2002C13.6569 7.2002 15 8.54334 15 10.2002C15 11.857 13.6569 13.2002 12 13.2002C10.3431 13.2002 9 11.857 9 10.2002Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
15196
|
+
"iconName": "map-pin-2, location",
|
|
15197
|
+
"variant": {
|
|
15198
|
+
"join": "round",
|
|
15199
|
+
"filled": "off",
|
|
15200
|
+
"radius": "2",
|
|
15201
|
+
"stroke": "2"
|
|
15202
|
+
},
|
|
15203
|
+
"createdAt": "2026-03-17T23:01:01.401723+00:00",
|
|
15204
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
15205
|
+
"componentName": "IconMapPin2"
|
|
15206
|
+
},
|
|
15193
15207
|
{
|
|
15194
15208
|
"category": "Location",
|
|
15195
15209
|
"svg": "<path d=\"M10 7H7M3 17.5V6.5C3 5.11929 4.11929 4 5.5 4H7V15H5.5C4.11929 15 3 16.1193 3 17.5ZM3 17.5C3 18.8807 4.11929 20 5.5 20H18C19.1046 20 20 19.1046 20 18V14M20 7C20 9.5 17 11 17 11C17 11 14 9.5 14 7C14 5.34315 15.3431 4 17 4C18.6569 4 20 5.34315 20 7Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -22456,6 +22470,20 @@
|
|
|
22456
22470
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
22457
22471
|
"componentName": "IconStackedBarChart100"
|
|
22458
22472
|
},
|
|
22473
|
+
{
|
|
22474
|
+
"category": "Statistics & Charts",
|
|
22475
|
+
"svg": "<path d=\"M8 17V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 17V11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 17V14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 10V6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 7V6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 9V6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4 4V18C4 19.1046 4.89543 20 6 20H20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
22476
|
+
"iconName": "stacked-bar-chart-100-axis",
|
|
22477
|
+
"variant": {
|
|
22478
|
+
"join": "round",
|
|
22479
|
+
"filled": "off",
|
|
22480
|
+
"radius": "2",
|
|
22481
|
+
"stroke": "2"
|
|
22482
|
+
},
|
|
22483
|
+
"createdAt": "2026-03-17T15:01:05.640281+00:00",
|
|
22484
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
22485
|
+
"componentName": "IconStackedBarChart100Axis"
|
|
22486
|
+
},
|
|
22459
22487
|
{
|
|
22460
22488
|
"category": "Statistics & Charts",
|
|
22461
22489
|
"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\"/>",
|
|
@@ -22484,6 +22512,20 @@
|
|
|
22484
22512
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
22485
22513
|
"componentName": "IconStackedBarChartAxis2"
|
|
22486
22514
|
},
|
|
22515
|
+
{
|
|
22516
|
+
"category": "Statistics & Charts",
|
|
22517
|
+
"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=\"M19 16H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 11.5H14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 7H17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 7H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 11.5H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11 16H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
22518
|
+
"iconName": "stacked-bar-chart-horizontal-100-axis",
|
|
22519
|
+
"variant": {
|
|
22520
|
+
"join": "round",
|
|
22521
|
+
"filled": "off",
|
|
22522
|
+
"radius": "2",
|
|
22523
|
+
"stroke": "2"
|
|
22524
|
+
},
|
|
22525
|
+
"createdAt": "2026-03-17T15:01:05.640281+00:00",
|
|
22526
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
22527
|
+
"componentName": "IconStackedBarChartHorizontal100Axis"
|
|
22528
|
+
},
|
|
22487
22529
|
{
|
|
22488
22530
|
"category": "Social Media & Brands",
|
|
22489
22531
|
"svg": "<path d=\"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -1084,6 +1084,7 @@ export type CentralIconName =
|
|
|
1084
1084
|
| "IconManusAi"
|
|
1085
1085
|
| "IconMap"
|
|
1086
1086
|
| "IconMapPin"
|
|
1087
|
+
| "IconMapPin2"
|
|
1087
1088
|
| "IconMapPinFlat"
|
|
1088
1089
|
| "IconMarkdown"
|
|
1089
1090
|
| "IconMarker"
|
|
@@ -1603,8 +1604,10 @@ export type CentralIconName =
|
|
|
1603
1604
|
| "IconStableVoice"
|
|
1604
1605
|
| "IconStackedBarChart"
|
|
1605
1606
|
| "IconStackedBarChart100"
|
|
1607
|
+
| "IconStackedBarChart100Axis"
|
|
1606
1608
|
| "IconStackedBarChart2"
|
|
1607
1609
|
| "IconStackedBarChartAxis2"
|
|
1610
|
+
| "IconStackedBarChartHorizontal100Axis"
|
|
1608
1611
|
| "IconStackOverflow"
|
|
1609
1612
|
| "IconStage"
|
|
1610
1613
|
| "IconStamps"
|
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.165",
|
|
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": 1880,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 70,
|
|
@@ -1175,7 +1175,7 @@
|
|
|
1175
1175
|
]
|
|
1176
1176
|
},
|
|
1177
1177
|
"Location": {
|
|
1178
|
-
"count":
|
|
1178
|
+
"count": 18,
|
|
1179
1179
|
"icons": [
|
|
1180
1180
|
"IconDirection1",
|
|
1181
1181
|
"IconDirection2",
|
|
@@ -1186,6 +1186,7 @@
|
|
|
1186
1186
|
"IconLocation",
|
|
1187
1187
|
"IconMap",
|
|
1188
1188
|
"IconMapPin",
|
|
1189
|
+
"IconMapPin2",
|
|
1189
1190
|
"IconMapPinFlat",
|
|
1190
1191
|
"IconPinCircle",
|
|
1191
1192
|
"IconPinFlag",
|
|
@@ -1700,7 +1701,7 @@
|
|
|
1700
1701
|
]
|
|
1701
1702
|
},
|
|
1702
1703
|
"Statistics & Charts": {
|
|
1703
|
-
"count":
|
|
1704
|
+
"count": 41,
|
|
1704
1705
|
"icons": [
|
|
1705
1706
|
"IconAnalytics",
|
|
1706
1707
|
"IconChart1",
|
|
@@ -1729,8 +1730,10 @@
|
|
|
1729
1730
|
"IconSankeyChart",
|
|
1730
1731
|
"IconStackedBarChart",
|
|
1731
1732
|
"IconStackedBarChart100",
|
|
1733
|
+
"IconStackedBarChart100Axis",
|
|
1732
1734
|
"IconStackedBarChart2",
|
|
1733
1735
|
"IconStackedBarChartAxis2",
|
|
1736
|
+
"IconStackedBarChartHorizontal100Axis",
|
|
1734
1737
|
"IconSunburstChart",
|
|
1735
1738
|
"IconSunburstChart2",
|
|
1736
1739
|
"IconTrending1",
|
|
@@ -3164,6 +3167,7 @@
|
|
|
3164
3167
|
"IconManusAi": "manus-ai",
|
|
3165
3168
|
"IconMap": "map, paper",
|
|
3166
3169
|
"IconMapPin": "map-pin, location",
|
|
3170
|
+
"IconMapPin2": "map-pin-2, location",
|
|
3167
3171
|
"IconMapPinFlat": "map-pin-flat, route",
|
|
3168
3172
|
"IconMarkdown": "markdown",
|
|
3169
3173
|
"IconMarker": "marker, highlight",
|
|
@@ -3683,8 +3687,10 @@
|
|
|
3683
3687
|
"IconStableVoice": "stable-voice, stable-volume, voice-circle, voice-control",
|
|
3684
3688
|
"IconStackedBarChart": "stacked-bar-chart",
|
|
3685
3689
|
"IconStackedBarChart100": "stacked-bar-chart-100",
|
|
3690
|
+
"IconStackedBarChart100Axis": "stacked-bar-chart-100-axis",
|
|
3686
3691
|
"IconStackedBarChart2": "stacked-bar-chart-2, revenue",
|
|
3687
3692
|
"IconStackedBarChartAxis2": "stacked-bar-chart-axis-2",
|
|
3693
|
+
"IconStackedBarChartHorizontal100Axis": "stacked-bar-chart-horizontal-100-axis",
|
|
3688
3694
|
"IconStackOverflow": "stack-overflow",
|
|
3689
3695
|
"IconStage": "stage, show",
|
|
3690
3696
|
"IconStamps": "stamps, collection",
|
package/index.d.ts
CHANGED
|
@@ -1083,6 +1083,7 @@ export { IconMall, default as IconMallDefault } from "./IconMall";
|
|
|
1083
1083
|
export { IconManusAi, default as IconManusAiDefault } from "./IconManusAi";
|
|
1084
1084
|
export { IconMap, default as IconMapDefault } from "./IconMap";
|
|
1085
1085
|
export { IconMapPin, default as IconMapPinDefault } from "./IconMapPin";
|
|
1086
|
+
export { IconMapPin2, default as IconMapPin2Default } from "./IconMapPin2";
|
|
1086
1087
|
export { IconMapPinFlat, default as IconMapPinFlatDefault, } from "./IconMapPinFlat";
|
|
1087
1088
|
export { IconMarkdown, default as IconMarkdownDefault } from "./IconMarkdown";
|
|
1088
1089
|
export { IconMarker, default as IconMarkerDefault } from "./IconMarker";
|
|
@@ -1603,8 +1604,10 @@ export { IconStableVoice, default as IconStableVoiceDefault, } from "./IconStabl
|
|
|
1603
1604
|
export { IconStackOverflow, default as IconStackOverflowDefault, } from "./IconStackOverflow";
|
|
1604
1605
|
export { IconStackedBarChart, default as IconStackedBarChartDefault, } from "./IconStackedBarChart";
|
|
1605
1606
|
export { IconStackedBarChart100, default as IconStackedBarChart100Default, } from "./IconStackedBarChart100";
|
|
1607
|
+
export { IconStackedBarChart100Axis, default as IconStackedBarChart100AxisDefault, } from "./IconStackedBarChart100Axis";
|
|
1606
1608
|
export { IconStackedBarChart2, default as IconStackedBarChart2Default, } from "./IconStackedBarChart2";
|
|
1607
1609
|
export { IconStackedBarChartAxis2, default as IconStackedBarChartAxis2Default, } from "./IconStackedBarChartAxis2";
|
|
1610
|
+
export { IconStackedBarChartHorizontal100Axis, default as IconStackedBarChartHorizontal100AxisDefault, } from "./IconStackedBarChartHorizontal100Axis";
|
|
1608
1611
|
export { IconStage, default as IconStageDefault } from "./IconStage";
|
|
1609
1612
|
export { IconStamps, default as IconStampsDefault } from "./IconStamps";
|
|
1610
1613
|
export { IconStandingGlobe, default as IconStandingGlobeDefault, } from "./IconStandingGlobe";
|