@central-icons-react-native/round-outlined-radius-0-stroke-1 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 B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var P=Object.getOwnPropertyNames;var i=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of P(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=I(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?B(i(r)):{},s(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>s(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconMapPin2:()=>u,default:()=>d});module.exports=v(h);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"),u=r=>C.default.createElement(f,{...r},C.default.createElement(p.Path,{d:"M8.5 10.25C8.5 8.317 10.067 6.75 12 6.75C13.933 6.75 15.5 8.317 15.5 10.25C15.5 12.183 13.933 13.75 12 13.75C10.067 13.75 8.5 12.183 8.5 10.25Z",stroke:"currentColor"}),C.default.createElement(p.Path,{d:"M19.75 10.1C19.75 5.90264 16.2802 2.5 12 2.5C7.71979 2.5 4.25 5.90264 4.25 10.1C4.25 14.6469 9.09375 17.225 10.9262 20.8747C11.1236 21.2679 11.5531 21.5 12 21.5C12.4469 21.5 12.8555 21.2572 13.0738 20.8747C14.9062 17.225 19.75 14.6469 19.75 10.1Z",stroke:"currentColor"})),d=u;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=\"M8.5 10.25C8.5 8.317 10.067 6.75 12 6.75C13.933 6.75 15.5 8.317 15.5 10.25C15.5 12.183 13.933 13.75 12 13.75C10.067 13.75 8.5 12.183 8.5 10.25Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M19.75 10.1C19.75 5.90264 16.2802 2.5 12 2.5C7.71979 2.5 4.25 5.90264 4.25 10.1C4.25 14.6469 9.09375 17.225 10.9262 20.8747C11.1236 21.2679 11.5531 21.5 12 21.5C12.4469 21.5 12.8555 21.2572 13.0738 20.8747C14.9062 17.225 19.75 14.6469 19.75 10.1Z\"\n stroke=\"currentColor\"\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,kJACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yPACF,OAAO,eACT,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 a}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(a,{...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 s=o=>t.createElement(e,{...o},t.createElement(n,{d:"M8.5 10.25C8.5 8.317 10.067 6.75 12 6.75C13.933 6.75 15.5 8.317 15.5 10.25C15.5 12.183 13.933 13.75 12 13.75C10.067 13.75 8.5 12.183 8.5 10.25Z",stroke:"currentColor"}),t.createElement(n,{d:"M19.75 10.1C19.75 5.90264 16.2802 2.5 12 2.5C7.71979 2.5 4.25 5.90264 4.25 10.1C4.25 14.6469 9.09375 17.225 10.9262 20.8747C11.1236 21.2679 11.5531 21.5 12 21.5C12.4469 21.5 12.8555 21.2572 13.0738 20.8747C14.9062 17.225 19.75 14.6469 19.75 10.1Z",stroke:"currentColor"})),x=s;export{s 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=\"M8.5 10.25C8.5 8.317 10.067 6.75 12 6.75C13.933 6.75 15.5 8.317 15.5 10.25C15.5 12.183 13.933 13.75 12 13.75C10.067 13.75 8.5 12.183 8.5 10.25Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M19.75 10.1C19.75 5.90264 16.2802 2.5 12 2.5C7.71979 2.5 4.25 5.90264 4.25 10.1C4.25 14.6469 9.09375 17.225 10.9262 20.8747C11.1236 21.2679 11.5531 21.5 12 21.5C12.4469 21.5 12.8555 21.2572 13.0738 20.8747C14.9062 17.225 19.75 14.6469 19.75 10.1Z\"\n stroke=\"currentColor\"\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,kJACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yPACF,OAAO,eACT,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 f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var n in o)i(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!B.call(r,s)&&s!==n&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var d=(r,o,n)=>(n=r!=null?l(f(r)):{},u(o||!r||!r.__esModule?i(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>u(i({},"__esModule",{value:!0}),r);var M={};x(M,{IconStackedBarChart100Axis:()=>c,default:()=>j});module.exports=I(M);var e=d(require("react"));var k=d(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...n})=>k.default.createElement(C.Svg,{...n,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=>e.default.createElement(a,{...r},e.default.createElement(t.Path,{d:"M7.5 17.5V12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12.5 17.5V10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M17.5 10.5V5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12.5 7.5V5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M7.5 9.5V5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M3.5 3.5L3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),j=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=\"M7.5 17.5V12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 17.5V10.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 10.5V5.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 7.5V5.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 9.5V5.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.5 3.5L3.5 20.5H20.5\"\n stroke=\"currentColor\"\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,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,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 p}from"react-native-svg";var t=({children:e,size:n=24,...s})=>i.createElement(p,{...s,width:typeof n=="number"?`${n}px`:n,height:typeof n=="number"?`${n}px`:n,viewBox:"0 0 24 24",fill:"none"},e);import{Path as o}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(o,{d:"M7.5 17.5V12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M12.5 17.5V10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M17.5 10.5V5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M12.5 7.5V5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M7.5 9.5V5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M3.5 3.5L3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconStackedBarChart100Axis,B 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=\"M7.5 17.5V12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 17.5V10.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 10.5V5.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 7.5V5.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 9.5V5.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.5 3.5L3.5 20.5H20.5\"\n stroke=\"currentColor\"\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,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yBACF,OAAO,eACP,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 f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var n in o)i(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!B.call(r,s)&&s!==n&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var d=(r,o,n)=>(n=r!=null?l(f(r)):{},u(o||!r||!r.__esModule?i(n,"default",{value:r,enumerable:!0}):n,r)),H=r=>u(i({},"__esModule",{value:!0}),r);var j={};x(j,{IconStackedBarChartHorizontal100Axis:()=>c,default:()=>I});module.exports=H(j);var e=d(require("react"));var k=d(require("react")),a=require("react-native-svg"),C=({children:r,size:o=24,...n})=>k.default.createElement(a.Svg,{...n,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=>e.default.createElement(C,{...r},e.default.createElement(t.Path,{d:"M3.5 3.5V20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M19.5 16.5H14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M19.5 11.5H13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M19.5 6.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M13.5 6.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M10.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M11.5 16.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=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=\"M3.5 3.5V20.5H20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 16.5H14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 11.5H13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 6.5H16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.5 6.5H6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10.5 11.5H6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11.5 16.5H6.5\"\n stroke=\"currentColor\"\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,qBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,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 p}from"react-native-svg";var t=({children:e,size:n=24,...s})=>i.createElement(p,{...s,width:typeof n=="number"?`${n}px`:n,height:typeof n=="number"?`${n}px`:n,viewBox:"0 0 24 24",fill:"none"},e);import{Path as o}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(o,{d:"M3.5 3.5V20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M19.5 16.5H14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M19.5 11.5H13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M19.5 6.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M13.5 6.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M10.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M11.5 16.5H6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconStackedBarChartHorizontal100Axis,B 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=\"M3.5 3.5V20.5H20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 16.5H14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 11.5H13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 6.5H16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.5 6.5H6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10.5 11.5H6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11.5 16.5H6.5\"\n stroke=\"currentColor\"\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,qBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,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-0-stroke-1",
|
|
15191
15191
|
"componentName": "IconMapPin"
|
|
15192
15192
|
},
|
|
15193
|
+
{
|
|
15194
|
+
"category": "Location",
|
|
15195
|
+
"svg": "<path d=\"M8.5 10.25C8.5 8.317 10.067 6.75 12 6.75C13.933 6.75 15.5 8.317 15.5 10.25C15.5 12.183 13.933 13.75 12 13.75C10.067 13.75 8.5 12.183 8.5 10.25Z\" stroke=\"currentColor\"/><path d=\"M19.75 10.1C19.75 5.90264 16.2802 2.5 12 2.5C7.71979 2.5 4.25 5.90264 4.25 10.1C4.25 14.6469 9.09375 17.225 10.9262 20.8747C11.1236 21.2679 11.5531 21.5 12 21.5C12.4469 21.5 12.8555 21.2572 13.0738 20.8747C14.9062 17.225 19.75 14.6469 19.75 10.1Z\" stroke=\"currentColor\"/>",
|
|
15196
|
+
"iconName": "map-pin-2, location",
|
|
15197
|
+
"variant": {
|
|
15198
|
+
"join": "round",
|
|
15199
|
+
"filled": "off",
|
|
15200
|
+
"radius": "0",
|
|
15201
|
+
"stroke": "1"
|
|
15202
|
+
},
|
|
15203
|
+
"createdAt": "2026-03-17T23:01:01.401723+00:00",
|
|
15204
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
15205
|
+
"componentName": "IconMapPin2"
|
|
15206
|
+
},
|
|
15193
15207
|
{
|
|
15194
15208
|
"category": "Location",
|
|
15195
15209
|
"svg": "<path d=\"M11.5 6.5H7.5M20.5 11.5V20.5H5C3.61929 20.5 2.5 19.3807 2.5 18M5 15.5H7M5 15.5C3.61929 15.5 2.5 16.6193 2.5 18M5 15.5H7.5V3.5H5C3.61929 3.5 2.5 4.61929 2.5 6V18M20.5 6.92857C20.5 9.78571 17 11.5 17 11.5C17 11.5 13.5 9.78571 13.5 6.92857C13.5 5.03502 15.067 3.5 17 3.5C18.933 3.5 20.5 5.03502 20.5 6.92857Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -22456,6 +22470,20 @@
|
|
|
22456
22470
|
"packageName": "round-outlined-radius-0-stroke-1",
|
|
22457
22471
|
"componentName": "IconStackedBarChart100"
|
|
22458
22472
|
},
|
|
22473
|
+
{
|
|
22474
|
+
"category": "Statistics & Charts",
|
|
22475
|
+
"svg": "<path d=\"M7.5 17.5V12.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 17.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 10.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 7.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 9.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 3.5L3.5 20.5H20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
22476
|
+
"iconName": "stacked-bar-chart-100-axis",
|
|
22477
|
+
"variant": {
|
|
22478
|
+
"join": "round",
|
|
22479
|
+
"filled": "off",
|
|
22480
|
+
"radius": "0",
|
|
22481
|
+
"stroke": "1"
|
|
22482
|
+
},
|
|
22483
|
+
"createdAt": "2026-03-17T15:01:05.640281+00:00",
|
|
22484
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
22485
|
+
"componentName": "IconStackedBarChart100Axis"
|
|
22486
|
+
},
|
|
22459
22487
|
{
|
|
22460
22488
|
"category": "Statistics & Charts",
|
|
22461
22489
|
"svg": "<path d=\"M2.5 19.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 19.5V11.5H7.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 19.5V6.5H10.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.5 19.5V9.5H16.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 19.5V4.5H19.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -22484,6 +22512,20 @@
|
|
|
22484
22512
|
"packageName": "round-outlined-radius-0-stroke-1",
|
|
22485
22513
|
"componentName": "IconStackedBarChartAxis2"
|
|
22486
22514
|
},
|
|
22515
|
+
{
|
|
22516
|
+
"category": "Statistics & Charts",
|
|
22517
|
+
"svg": "<path d=\"M3.5 3.5V20.5H20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 16.5H14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 11.5H13.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 6.5H16.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.5 6.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.5 11.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.5 16.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
22518
|
+
"iconName": "stacked-bar-chart-horizontal-100-axis",
|
|
22519
|
+
"variant": {
|
|
22520
|
+
"join": "round",
|
|
22521
|
+
"filled": "off",
|
|
22522
|
+
"radius": "0",
|
|
22523
|
+
"stroke": "1"
|
|
22524
|
+
},
|
|
22525
|
+
"createdAt": "2026-03-17T15:01:05.640281+00:00",
|
|
22526
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
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-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.165",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-1/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";
|