@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.162 → 1.1.164
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/IconGarlic/index.d.ts +4 -0
- package/IconGarlic/index.js +2 -0
- package/IconGarlic/index.js.map +1 -0
- package/IconGarlic/index.mjs +2 -0
- package/IconGarlic/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/IconWrite3/index.d.ts +4 -0
- package/IconWrite3/index.js +2 -0
- package/IconWrite3/index.js.map +1 -0
- package/IconWrite3/index.mjs +2 -0
- package/IconWrite3/index.mjs.map +1 -0
- package/README.md +4 -0
- package/filtered-icons.json +58 -2
- package/icons/index.d.ts +4 -0
- package/icons-index.json +15 -7
- package/index.d.ts +4 -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 +30 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var s=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var y={};g(y,{IconGarlic:()=>i,default:()=>h});module.exports=v(y);var p=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...e})=>m.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 f=require("react-native-svg"),i=r=>p.default.createElement(l,{...r},p.default.createElement(f.Path,{d:"M14.5 21.1662C20 22.2257 21.25 18.307 21.25 15.5101C20.8207 9.71807 13.4605 7.7973 12.9737 2L10.0526 3.05405C10.9722 8.92763 2.75 9.95395 2.75 16.4676C2.75 20.4132 6.15709 22.2 9.28628 21.0553M13.4605 10.9595C14.4342 13.0676 16.2052 19.8102 13.9015 21.0143C12.6879 21.6487 10.8561 21.7187 9.71091 20.8814C8.16439 19.7459 8.59211 14.6486 9.56579 12.5405",stroke:"currentColor",strokeLinecap:"square"})),h=i;0&&(module.exports={IconGarlic});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGarlic/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 IconGarlic: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.5 21.1662C20 22.2257 21.25 18.307 21.25 15.5101C20.8207 9.71807 13.4605 7.7973 12.9737 2L10.0526 3.05405C10.9722 8.92763 2.75 9.95395 2.75 16.4676C2.75 20.4132 6.15709 22.2 9.28628 21.0553M13.4605 10.9595C14.4342 13.0676 16.2052 19.8102 13.9015 21.0143C12.6879 21.6487 10.8561 21.7187 9.71091 20.8814C8.16439 19.7459 8.59211 14.6486 9.56579 12.5405\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGarlic;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mWACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconGarlic_exports","__export","IconGarlic","IconGarlic_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGarlic","props","React","CentralIconBase","IconGarlic_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,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 a}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(a,{d:"M14.5 21.1662C20 22.2257 21.25 18.307 21.25 15.5101C20.8207 9.71807 13.4605 7.7973 12.9737 2L10.0526 3.05405C10.9722 8.92763 2.75 9.95395 2.75 16.4676C2.75 20.4132 6.15709 22.2 9.28628 21.0553M13.4605 10.9595C14.4342 13.0676 16.2052 19.8102 13.9015 21.0143C12.6879 21.6487 10.8561 21.7187 9.71091 20.8814C8.16439 19.7459 8.59211 14.6486 9.56579 12.5405",stroke:"currentColor",strokeLinecap:"square"})),P=s;export{s as IconGarlic,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGarlic/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 IconGarlic: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.5 21.1662C20 22.2257 21.25 18.307 21.25 15.5101C20.8207 9.71807 13.4605 7.7973 12.9737 2L10.0526 3.05405C10.9722 8.92763 2.75 9.95395 2.75 16.4676C2.75 20.4132 6.15709 22.2 9.28628 21.0553M13.4605 10.9595C14.4342 13.0676 16.2052 19.8102 13.9015 21.0143C12.6879 21.6487 10.8561 21.7187 9.71091 20.8814C8.16439 19.7459 8.59211 14.6486 9.56579 12.5405\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGarlic;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mWACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGarlic","props","React","CentralIconBase","IconGarlic_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var q=Object.getOwnPropertyNames;var M=Object.getPrototypeOf,m=Object.prototype.hasOwnProperty;var V=(r,o)=>{for(var s in o)p(r,s,{get:o[s],enumerable:!0})},a=(r,o,s,u)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of q(o))!m.call(r,n)&&n!==s&&p(r,n,{get:()=>o[n],enumerable:!(u=L(o,n))||u.enumerable});return r};var k=(r,o,s)=>(s=r!=null?d(M(r)):{},a(o||!r||!r.__esModule?p(s,"default",{value:r,enumerable:!0}):s,r)),f=r=>a(p({},"__esModule",{value:!0}),r);var x={};V(x,{IconStackedBarChart100Axis:()=>i,default:()=>B});module.exports=f(x);var e=k(require("react"));var C=k(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...s})=>C.default.createElement(c.Svg,{...s,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"),i=r=>e.default.createElement(l,{...r},e.default.createElement(t.Path,{d:"M7.5 17.5V12.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M12.5 17.5V10.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M17.5 10.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M12.5 7.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M7.5 9.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M3.5 3.5L3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M7.5 17.5V12.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M12.5 17.5V10.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M17.5 10.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M12.5 7.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M7.5 9.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),e.default.createElement(t.Path,{d:"M3.5 3.5L3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"square"})),B=i;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 d=\"M7.5 17.5V12.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M12.5 17.5V10.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path d=\"M17.5 10.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M12.5 7.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M7.5 9.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M3.5 3.5L3.5 20.5H20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path d=\"M7.5 17.5V12.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M12.5 17.5V10.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path d=\"M17.5 10.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M12.5 7.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M7.5 9.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M3.5 3.5L3.5 20.5H20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtE,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,SAAS,EACvE,EAAAA,QAAA,cAAC,QACC,EAAE,iDACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtE,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,eAAe,OAAO,eAAe,cAAc,SAAS,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtE,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,SAAS,EACvE,EAAAA,QAAA,cAAC,QACC,EAAE,iDACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtE,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,eAAe,OAAO,eAAe,cAAc,SAAS,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,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 p from"react";import{Svg as u}from"react-native-svg";var s=({children:t,size:e=24,...n})=>p.createElement(u,{...n,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},t);import{Path as o}from"react-native-svg";var a=t=>r.createElement(s,{...t},r.createElement(o,{d:"M7.5 17.5V12.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M12.5 17.5V10.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M17.5 10.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M12.5 7.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M7.5 9.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M3.5 3.5L3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M7.5 17.5V12.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M12.5 17.5V10.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M17.5 10.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M12.5 7.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M7.5 9.5V5.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M3.5 3.5L3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"square"})),m=a;export{a as IconStackedBarChart100Axis,m 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 d=\"M7.5 17.5V12.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M12.5 17.5V10.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path d=\"M17.5 10.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M12.5 7.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M7.5 9.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M3.5 3.5L3.5 20.5H20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path d=\"M7.5 17.5V12.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M12.5 17.5V10.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path d=\"M17.5 10.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M12.5 7.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M7.5 9.5V5.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path\n d=\"M3.5 3.5L3.5 20.5H20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtEG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,SAAS,EACvEG,EAAA,cAACH,EAAA,CACC,EAAE,iDACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtEG,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrEG,EAAA,cAACH,EAAA,CAAK,EAAE,eAAe,OAAO,eAAe,cAAc,SAAS,EACpEG,EAAA,cAACH,EAAA,CACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtEG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,SAAS,EACvEG,EAAA,cAACH,EAAA,CACC,EAAE,iDACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtEG,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrEG,EAAA,cAACH,EAAA,CAAK,EAAE,eAAe,OAAO,eAAe,cAAc,SAAS,EACpEG,EAAA,cAACH,EAAA,CACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,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 m=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var H=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},u=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!x.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(a=d(o,s))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?m(B(r)):{},u(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>u(p({},"__esModule",{value:!0}),r);var L={};H(L,{IconStackedBarChartHorizontal100Axis:()=>k,default:()=>q});module.exports=I(L);var t=C(require("react"));var c=C(require("react")),l=require("react-native-svg"),i=({children:r,size:o=24,...e})=>c.default.createElement(l.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"),k=r=>t.default.createElement(i,{...r},t.default.createElement(n.Path,{d:"M3.5 3.5V20.5H20.5",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M19.5 16.5H14.5",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M19.5 11.5H13.5",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M19.5 6.5H16.5",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M13.5 6.5H6.5",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M10.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M11.5 16.5H6.5",stroke:"currentColor",strokeLinecap:"square"})),q=k;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=\"square\"\n />\n <Path d=\"M19.5 16.5H14.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M19.5 11.5H13.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M19.5 6.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M13.5 6.5H6.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M10.5 11.5H6.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M11.5 16.5H6.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\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,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,SAAS,EACvE,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,SAAS,EACvE,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtE,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtE,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,CACxE,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 p from"react";import{Svg as a}from"react-native-svg";var n=({children:t,size:e=24,...s})=>p.createElement(a,{...s,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},t);import{Path as o}from"react-native-svg";var u=t=>r.createElement(n,{...t},r.createElement(o,{d:"M3.5 3.5V20.5H20.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M19.5 16.5H14.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M19.5 11.5H13.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M19.5 6.5H16.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M13.5 6.5H6.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M10.5 11.5H6.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(o,{d:"M11.5 16.5H6.5",stroke:"currentColor",strokeLinecap:"square"})),x=u;export{u as IconStackedBarChartHorizontal100Axis,x 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=\"square\"\n />\n <Path d=\"M19.5 16.5H14.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M19.5 11.5H13.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M19.5 6.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M13.5 6.5H6.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M10.5 11.5H6.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <Path d=\"M11.5 16.5H6.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\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,SAChB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,SAAS,EACvEG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,cAAc,SAAS,EACvEG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtEG,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrEG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtEG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,CACxE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStackedBarChartHorizontal100Axis","props","React","CentralIconBase","IconStackedBarChartHorizontal100Axis_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var s=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of B(o))!P.call(r,p)&&p!==t&&s(r,p,{get:()=>o[p],enumerable:!(C=x(o,p))||C.enumerable});return r};var c=(r,o,t)=>(t=r!=null?i(I(r)):{},l(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>l(s({},"__esModule",{value:!0}),r);var y={};g(y,{IconWrite3:()=>f,default:()=>v});module.exports=d(y);var e=c(require("react"));var m=c(require("react")),a=require("react-native-svg"),u=({children:r,size:o=24,...t})=>m.default.createElement(a.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 n=require("react-native-svg"),f=r=>e.default.createElement(u,{...r},e.default.createElement(n.Path,{d:"M4 21.5H20",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M7.5 21.25L4.5 13.5L12.0001 3L19.5 13.5L16.5 21.25",stroke:"currentColor"}),e.default.createElement(n.Circle,{cx:"12",cy:"14",r:"2.25",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M12 12V3.5",stroke:"currentColor"})),v=f;0&&(module.exports={IconWrite3});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconWrite3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconWrite3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M4 21.5H20\" stroke=\"currentColor\" />\n <Path\n d=\"M7.5 21.25L4.5 13.5L12.0001 3L19.5 13.5L16.5 21.25\"\n stroke=\"currentColor\"\n />\n <Circle cx=\"12\" cy=\"14\" r=\"2.25\" stroke=\"currentColor\" />\n <Path d=\"M12 12V3.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconWrite3;\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,gBAAAE,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,EAA6B,4BAEhBC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,EAC3C,EAAAA,QAAA,cAAC,QACC,EAAE,qDACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAe,EACvD,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,CAC7C,EAIGE,EAAQJ","names":["IconWrite3_exports","__export","IconWrite3","IconWrite3_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconWrite3","props","React","CentralIconBase","IconWrite3_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as l,Path as e}from"react-native-svg";var c=t=>o.createElement(n,{...t},o.createElement(e,{d:"M4 21.5H20",stroke:"currentColor"}),o.createElement(e,{d:"M7.5 21.25L4.5 13.5L12.0001 3L19.5 13.5L16.5 21.25",stroke:"currentColor"}),o.createElement(l,{cx:"12",cy:"14",r:"2.25",stroke:"currentColor"}),o.createElement(e,{d:"M12 12V3.5",stroke:"currentColor"})),g=c;export{c as IconWrite3,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconWrite3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconWrite3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M4 21.5H20\" stroke=\"currentColor\" />\n <Path\n d=\"M7.5 21.25L4.5 13.5L12.0001 3L19.5 13.5L16.5 21.25\"\n stroke=\"currentColor\"\n />\n <Circle cx=\"12\" cy=\"14\" r=\"2.25\" stroke=\"currentColor\" />\n <Path d=\"M12 12V3.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconWrite3;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,EAC3CG,EAAA,cAACH,EAAA,CACC,EAAE,qDACF,OAAO,eACT,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAe,EACvDI,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,CAC7C,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconWrite3","props","React","CentralIconBase","IconWrite3_default"]}
|
package/README.md
CHANGED
|
@@ -723,6 +723,7 @@ Below is a complete list of available icons:
|
|
|
723
723
|
- IconWhiteboard
|
|
724
724
|
- IconWrite1
|
|
725
725
|
- IconWrite2
|
|
726
|
+
- IconWrite3
|
|
726
727
|
- IconWriting
|
|
727
728
|
|
|
728
729
|
### Emoji
|
|
@@ -890,6 +891,7 @@ Below is a complete list of available icons:
|
|
|
890
891
|
- IconFork
|
|
891
892
|
- IconForkKnife
|
|
892
893
|
- IconForkSpoon
|
|
894
|
+
- IconGarlic
|
|
893
895
|
- IconGlassWater
|
|
894
896
|
- IconHotDrinkCup
|
|
895
897
|
- IconIcebowl
|
|
@@ -1795,8 +1797,10 @@ Below is a complete list of available icons:
|
|
|
1795
1797
|
- IconSankeyChart
|
|
1796
1798
|
- IconStackedBarChart
|
|
1797
1799
|
- IconStackedBarChart100
|
|
1800
|
+
- IconStackedBarChart100Axis
|
|
1798
1801
|
- IconStackedBarChart2
|
|
1799
1802
|
- IconStackedBarChartAxis2
|
|
1803
|
+
- IconStackedBarChartHorizontal100Axis
|
|
1800
1804
|
- IconSunburstChart
|
|
1801
1805
|
- IconSunburstChart2
|
|
1802
1806
|
- IconTrending1
|
package/filtered-icons.json
CHANGED
|
@@ -5253,7 +5253,7 @@
|
|
|
5253
5253
|
{
|
|
5254
5254
|
"category": "Food",
|
|
5255
5255
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"5.5\" stroke=\"currentColor\"/><path d=\"M13.6562 6.5C14.1495 4.87182 14.9829 3.59687 16.3575 2.5L21.5004 7.64286C20.4035 9.01743 19.1286 9.85092 17.5005 10.3441\" stroke=\"currentColor\"/><path d=\"M6.5 13.6558C4.87182 14.149 3.59687 14.9825 2.5 16.3571L7.64286 21.4999C9.01743 20.4031 9.85092 19.1281 10.3441 17.5\" stroke=\"currentColor\"/>",
|
|
5256
|
-
"iconName": "candy",
|
|
5256
|
+
"iconName": "candy, sweet",
|
|
5257
5257
|
"variant": {
|
|
5258
5258
|
"join": "square",
|
|
5259
5259
|
"filled": "off",
|
|
@@ -5659,7 +5659,7 @@
|
|
|
5659
5659
|
{
|
|
5660
5660
|
"category": "Food",
|
|
5661
5661
|
"svg": "<path d=\"M5.78465 9.92896L7.24325 12.2104C8.00194 13.397 7.83295 14.9517 6.837 15.9477L5.43109 17.3536L3.97249 15.0722C3.2138 13.8855 3.38279 12.3308 4.37874 11.3349L5.78465 9.92896Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12.8564 17.0002L10.575 15.5416C9.38828 14.7829 7.8335 14.9519 6.83755 15.9478L5.43164 17.3538L7.71314 18.8123C8.89982 19.571 10.4545 19.402 11.4504 18.4061L12.8564 17.0002Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M8.96629 6.74707L10.4249 9.02847C11.1836 10.2151 11.0146 11.7698 10.0186 12.7658L8.61273 14.1717L7.15413 11.8903C6.39544 10.7036 6.56443 9.14892 7.56038 8.15298L8.96629 6.74707Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M16.0379 13.8183L13.7565 12.3597C12.5698 11.601 11.0151 11.77 10.0192 12.766L8.61328 14.1719L10.8947 15.6304C12.0813 16.3891 13.636 16.2201 14.632 15.2242L16.0379 13.8183Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12.1479 3.56519L13.6065 5.84659C14.3652 7.03326 14.1962 8.58795 13.2003 9.5839L11.7944 10.9898L10.3358 8.7084C9.57708 7.52173 9.74607 5.96704 10.742 4.9711L12.1479 3.56519Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M19.2195 10.6364L16.9381 9.1778C15.7514 8.41911 14.1968 8.58813 13.2008 9.58407L11.7949 10.99L14.0763 12.4486C15.263 13.2073 16.8177 13.0383 17.8136 12.0423L19.2195 10.6364Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M14.6238 8.1614C14.1977 4.81628 15.8749 3.13909 19.22 3.56521C19.6461 6.91033 17.9689 8.58751 14.6238 8.1614Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M5.78538 17L3.66406 19.1213\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
5662
|
-
"iconName": "cereals, wheat",
|
|
5662
|
+
"iconName": "cereals, wheat, gluten, corn, grain",
|
|
5663
5663
|
"variant": {
|
|
5664
5664
|
"join": "square",
|
|
5665
5665
|
"filled": "off",
|
|
@@ -12138,6 +12138,20 @@
|
|
|
12138
12138
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
12139
12139
|
"componentName": "IconGarage"
|
|
12140
12140
|
},
|
|
12141
|
+
{
|
|
12142
|
+
"category": "Food",
|
|
12143
|
+
"svg": "<path d=\"M14.5 21.1662C20 22.2257 21.25 18.307 21.25 15.5101C20.8207 9.71807 13.4605 7.7973 12.9737 2L10.0526 3.05405C10.9722 8.92763 2.75 9.95395 2.75 16.4676C2.75 20.4132 6.15709 22.2 9.28628 21.0553M13.4605 10.9595C14.4342 13.0676 16.2052 19.8102 13.9015 21.0143C12.6879 21.6487 10.8561 21.7187 9.71091 20.8814C8.16439 19.7459 8.59211 14.6486 9.56579 12.5405\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
12144
|
+
"iconName": "garlic",
|
|
12145
|
+
"variant": {
|
|
12146
|
+
"join": "square",
|
|
12147
|
+
"filled": "off",
|
|
12148
|
+
"radius": "0",
|
|
12149
|
+
"stroke": "1"
|
|
12150
|
+
},
|
|
12151
|
+
"createdAt": "2026-03-17T14:00:55.854067+00:00",
|
|
12152
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
12153
|
+
"componentName": "IconGarlic"
|
|
12154
|
+
},
|
|
12141
12155
|
{
|
|
12142
12156
|
"category": "Crypto",
|
|
12143
12157
|
"svg": "<path d=\"M15.5 20.5H16.5M15.5 20.5V3.5H4.5V20.5M15.5 20.5H4.5M3.5 20.5H4.5M15.5 9.5H18.5V17.5H21.5V7.5L19.5 5.5M12.5 9.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -22442,6 +22456,20 @@
|
|
|
22442
22456
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22443
22457
|
"componentName": "IconStackedBarChart100"
|
|
22444
22458
|
},
|
|
22459
|
+
{
|
|
22460
|
+
"category": "Statistics & Charts",
|
|
22461
|
+
"svg": "<path d=\"M7.5 17.5V12.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12.5 17.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M17.5 10.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12.5 7.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M7.5 9.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M3.5 3.5L3.5 20.5H20.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M7.5 17.5V12.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12.5 17.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M17.5 17.5C17.5 16.3284 17.5 14.6716 17.5 13.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M17.5 10.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12.5 7.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M7.5 9.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M3.5 3.5L3.5 20.5H20.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
22462
|
+
"iconName": "stacked-bar-chart-100-axis",
|
|
22463
|
+
"variant": {
|
|
22464
|
+
"join": "square",
|
|
22465
|
+
"filled": "off",
|
|
22466
|
+
"radius": "0",
|
|
22467
|
+
"stroke": "1"
|
|
22468
|
+
},
|
|
22469
|
+
"createdAt": "2026-03-17T15:01:05.640281+00:00",
|
|
22470
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22471
|
+
"componentName": "IconStackedBarChart100Axis"
|
|
22472
|
+
},
|
|
22445
22473
|
{
|
|
22446
22474
|
"category": "Statistics & Charts",
|
|
22447
22475
|
"svg": "<path d=\"M2.5 19.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M4.5 19.5V11.5H7.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M7.5 19.5V6.5H10.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M13.5 19.5V9.5H16.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M16.5 19.5V4.5H19.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -22470,6 +22498,20 @@
|
|
|
22470
22498
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22471
22499
|
"componentName": "IconStackedBarChartAxis2"
|
|
22472
22500
|
},
|
|
22501
|
+
{
|
|
22502
|
+
"category": "Statistics & Charts",
|
|
22503
|
+
"svg": "<path d=\"M3.5 3.5V20.5H20.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M19.5 16.5H14.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M19.5 11.5H13.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M19.5 6.5H16.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M13.5 6.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M10.5 11.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M11.5 16.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
22504
|
+
"iconName": "stacked-bar-chart-horizontal-100-axis",
|
|
22505
|
+
"variant": {
|
|
22506
|
+
"join": "square",
|
|
22507
|
+
"filled": "off",
|
|
22508
|
+
"radius": "0",
|
|
22509
|
+
"stroke": "1"
|
|
22510
|
+
},
|
|
22511
|
+
"createdAt": "2026-03-17T15:01:05.640281+00:00",
|
|
22512
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22513
|
+
"componentName": "IconStackedBarChartHorizontal100Axis"
|
|
22514
|
+
},
|
|
22473
22515
|
{
|
|
22474
22516
|
"category": "Social Media & Brands",
|
|
22475
22517
|
"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\"/>",
|
|
@@ -26124,6 +26166,20 @@
|
|
|
26124
26166
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
26125
26167
|
"componentName": "IconWrite2"
|
|
26126
26168
|
},
|
|
26169
|
+
{
|
|
26170
|
+
"category": "Edit",
|
|
26171
|
+
"svg": "<path d=\"M4 21.5H20\" stroke=\"currentColor\"/><path d=\"M7.5 21.25L4.5 13.5L12.0001 3L19.5 13.5L16.5 21.25\" stroke=\"currentColor\"/><circle cx=\"12\" cy=\"14\" r=\"2.25\" stroke=\"currentColor\"/><path d=\"M12 12V3.5\" stroke=\"currentColor\"/>",
|
|
26172
|
+
"iconName": "write-3, fountain-pen, vector, ink",
|
|
26173
|
+
"variant": {
|
|
26174
|
+
"join": "square",
|
|
26175
|
+
"filled": "off",
|
|
26176
|
+
"radius": "0",
|
|
26177
|
+
"stroke": "1"
|
|
26178
|
+
},
|
|
26179
|
+
"createdAt": "2026-03-17T14:00:55.854067+00:00",
|
|
26180
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
26181
|
+
"componentName": "IconWrite3"
|
|
26182
|
+
},
|
|
26127
26183
|
{
|
|
26128
26184
|
"category": "Edit",
|
|
26129
26185
|
"svg": "<path d=\"M18.5 2.5L11.5 9.5V12.5H14.5L21.5 5.5L18.5 2.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M8.5 12.5H5.5C4.39543 12.5 3.5 13.3954 3.5 14.5C3.5 15.6046 4.39543 16.5 5.5 16.5H16.5C17.6046 16.5 18.5 17.3954 18.5 18.5C18.5 19.6046 17.6046 20.5 16.5 20.5H11.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -866,6 +866,7 @@ export type CentralIconName =
|
|
|
866
866
|
| "IconGamepadControlsRoundUp"
|
|
867
867
|
| "IconGamepadControlsUp"
|
|
868
868
|
| "IconGarage"
|
|
869
|
+
| "IconGarlic"
|
|
869
870
|
| "IconGas"
|
|
870
871
|
| "IconGauge"
|
|
871
872
|
| "IconGemini"
|
|
@@ -1602,8 +1603,10 @@ export type CentralIconName =
|
|
|
1602
1603
|
| "IconStableVoice"
|
|
1603
1604
|
| "IconStackedBarChart"
|
|
1604
1605
|
| "IconStackedBarChart100"
|
|
1606
|
+
| "IconStackedBarChart100Axis"
|
|
1605
1607
|
| "IconStackedBarChart2"
|
|
1606
1608
|
| "IconStackedBarChartAxis2"
|
|
1609
|
+
| "IconStackedBarChartHorizontal100Axis"
|
|
1607
1610
|
| "IconStackOverflow"
|
|
1608
1611
|
| "IconStage"
|
|
1609
1612
|
| "IconStamps"
|
|
@@ -1865,6 +1868,7 @@ export type CentralIconName =
|
|
|
1865
1868
|
| "IconWrite"
|
|
1866
1869
|
| "IconWrite1"
|
|
1867
1870
|
| "IconWrite2"
|
|
1871
|
+
| "IconWrite3"
|
|
1868
1872
|
| "IconWriting"
|
|
1869
1873
|
| "IconX"
|
|
1870
1874
|
| "IconXbox"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.164",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-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": 1879,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 70,
|
|
@@ -525,7 +525,7 @@
|
|
|
525
525
|
]
|
|
526
526
|
},
|
|
527
527
|
"Edit": {
|
|
528
|
-
"count":
|
|
528
|
+
"count": 88,
|
|
529
529
|
"icons": [
|
|
530
530
|
"Icon3d",
|
|
531
531
|
"IconAddKeyframe",
|
|
@@ -613,6 +613,7 @@
|
|
|
613
613
|
"IconWhiteboard",
|
|
614
614
|
"IconWrite1",
|
|
615
615
|
"IconWrite2",
|
|
616
|
+
"IconWrite3",
|
|
616
617
|
"IconWriting"
|
|
617
618
|
]
|
|
618
619
|
},
|
|
@@ -758,7 +759,7 @@
|
|
|
758
759
|
]
|
|
759
760
|
},
|
|
760
761
|
"Food": {
|
|
761
|
-
"count":
|
|
762
|
+
"count": 47,
|
|
762
763
|
"icons": [
|
|
763
764
|
"IconAppleNewton",
|
|
764
765
|
"IconApples",
|
|
@@ -788,6 +789,7 @@
|
|
|
788
789
|
"IconFork",
|
|
789
790
|
"IconForkKnife",
|
|
790
791
|
"IconForkSpoon",
|
|
792
|
+
"IconGarlic",
|
|
791
793
|
"IconGlassWater",
|
|
792
794
|
"IconHotDrinkCup",
|
|
793
795
|
"IconIcebowl",
|
|
@@ -1698,7 +1700,7 @@
|
|
|
1698
1700
|
]
|
|
1699
1701
|
},
|
|
1700
1702
|
"Statistics & Charts": {
|
|
1701
|
-
"count":
|
|
1703
|
+
"count": 41,
|
|
1702
1704
|
"icons": [
|
|
1703
1705
|
"IconAnalytics",
|
|
1704
1706
|
"IconChart1",
|
|
@@ -1727,8 +1729,10 @@
|
|
|
1727
1729
|
"IconSankeyChart",
|
|
1728
1730
|
"IconStackedBarChart",
|
|
1729
1731
|
"IconStackedBarChart100",
|
|
1732
|
+
"IconStackedBarChart100Axis",
|
|
1730
1733
|
"IconStackedBarChart2",
|
|
1731
1734
|
"IconStackedBarChartAxis2",
|
|
1735
|
+
"IconStackedBarChartHorizontal100Axis",
|
|
1732
1736
|
"IconSunburstChart",
|
|
1733
1737
|
"IconSunburstChart2",
|
|
1734
1738
|
"IconTrending1",
|
|
@@ -2452,7 +2456,7 @@
|
|
|
2452
2456
|
"IconCameraOff": "camera-off",
|
|
2453
2457
|
"IconCameraOff1": "camera-off-1, cam-off",
|
|
2454
2458
|
"IconCameraSparkle": "camera-sparkle, picture, image, cam",
|
|
2455
|
-
"IconCandy": "candy",
|
|
2459
|
+
"IconCandy": "candy, sweet",
|
|
2456
2460
|
"IconCap": "cap, fan",
|
|
2457
2461
|
"IconCapture": "capture, screen",
|
|
2458
2462
|
"IconCar1": "car-1",
|
|
@@ -2481,7 +2485,7 @@
|
|
|
2481
2485
|
"IconCat": "cat, image, animal, cute",
|
|
2482
2486
|
"IconCelebrate": "celebrate, party, confetti",
|
|
2483
2487
|
"IconCentralIconSystem": "central-icon-system",
|
|
2484
|
-
"IconCereals": "cereals, wheat",
|
|
2488
|
+
"IconCereals": "cereals, wheat, gluten, corn, grain",
|
|
2485
2489
|
"IconChainLink1": "chain-link-1, url",
|
|
2486
2490
|
"IconChainLink2": "chain-link-2, url",
|
|
2487
2491
|
"IconChainLink3": "chain-link-3, url",
|
|
@@ -2944,6 +2948,7 @@
|
|
|
2944
2948
|
"IconGamepadControlsRoundUp": "gamepad-controls-round-up",
|
|
2945
2949
|
"IconGamepadControlsUp": "gamepad-controls-up, joystick",
|
|
2946
2950
|
"IconGarage": "garage",
|
|
2951
|
+
"IconGarlic": "garlic",
|
|
2947
2952
|
"IconGas": "gas",
|
|
2948
2953
|
"IconGauge": "gauge, tachometer, performance, speed, scale",
|
|
2949
2954
|
"IconGemini": "gemini",
|
|
@@ -3680,8 +3685,10 @@
|
|
|
3680
3685
|
"IconStableVoice": "stable-voice, stable-volume, voice-circle, voice-control",
|
|
3681
3686
|
"IconStackedBarChart": "stacked-bar-chart",
|
|
3682
3687
|
"IconStackedBarChart100": "stacked-bar-chart-100",
|
|
3688
|
+
"IconStackedBarChart100Axis": "stacked-bar-chart-100-axis",
|
|
3683
3689
|
"IconStackedBarChart2": "stacked-bar-chart-2, revenue",
|
|
3684
3690
|
"IconStackedBarChartAxis2": "stacked-bar-chart-axis-2",
|
|
3691
|
+
"IconStackedBarChartHorizontal100Axis": "stacked-bar-chart-horizontal-100-axis",
|
|
3685
3692
|
"IconStackOverflow": "stack-overflow",
|
|
3686
3693
|
"IconStage": "stage, show",
|
|
3687
3694
|
"IconStamps": "stamps, collection",
|
|
@@ -3943,6 +3950,7 @@
|
|
|
3943
3950
|
"IconWrite": "write, edit-list, list",
|
|
3944
3951
|
"IconWrite1": "write-1, fountain-pen",
|
|
3945
3952
|
"IconWrite2": "write-2, fountain-pen",
|
|
3953
|
+
"IconWrite3": "write-3, fountain-pen, vector, ink",
|
|
3946
3954
|
"IconWriting": "writing, sketching, drawing",
|
|
3947
3955
|
"IconX": "x",
|
|
3948
3956
|
"IconXbox": "xbox",
|
package/index.d.ts
CHANGED
|
@@ -865,6 +865,7 @@ export { IconGamepadControlsRoundRight, default as IconGamepadControlsRoundRight
|
|
|
865
865
|
export { IconGamepadControlsRoundUp, default as IconGamepadControlsRoundUpDefault, } from "./IconGamepadControlsRoundUp";
|
|
866
866
|
export { IconGamepadControlsUp, default as IconGamepadControlsUpDefault, } from "./IconGamepadControlsUp";
|
|
867
867
|
export { IconGarage, default as IconGarageDefault } from "./IconGarage";
|
|
868
|
+
export { IconGarlic, default as IconGarlicDefault } from "./IconGarlic";
|
|
868
869
|
export { IconGas, default as IconGasDefault } from "./IconGas";
|
|
869
870
|
export { IconGauge, default as IconGaugeDefault } from "./IconGauge";
|
|
870
871
|
export { IconGemini, default as IconGeminiDefault } from "./IconGemini";
|
|
@@ -1602,8 +1603,10 @@ export { IconStableVoice, default as IconStableVoiceDefault, } from "./IconStabl
|
|
|
1602
1603
|
export { IconStackOverflow, default as IconStackOverflowDefault, } from "./IconStackOverflow";
|
|
1603
1604
|
export { IconStackedBarChart, default as IconStackedBarChartDefault, } from "./IconStackedBarChart";
|
|
1604
1605
|
export { IconStackedBarChart100, default as IconStackedBarChart100Default, } from "./IconStackedBarChart100";
|
|
1606
|
+
export { IconStackedBarChart100Axis, default as IconStackedBarChart100AxisDefault, } from "./IconStackedBarChart100Axis";
|
|
1605
1607
|
export { IconStackedBarChart2, default as IconStackedBarChart2Default, } from "./IconStackedBarChart2";
|
|
1606
1608
|
export { IconStackedBarChartAxis2, default as IconStackedBarChartAxis2Default, } from "./IconStackedBarChartAxis2";
|
|
1609
|
+
export { IconStackedBarChartHorizontal100Axis, default as IconStackedBarChartHorizontal100AxisDefault, } from "./IconStackedBarChartHorizontal100Axis";
|
|
1607
1610
|
export { IconStage, default as IconStageDefault } from "./IconStage";
|
|
1608
1611
|
export { IconStamps, default as IconStampsDefault } from "./IconStamps";
|
|
1609
1612
|
export { IconStandingGlobe, default as IconStandingGlobeDefault, } from "./IconStandingGlobe";
|
|
@@ -1864,6 +1867,7 @@ export { IconWreathSimple, default as IconWreathSimpleDefault, } from "./IconWre
|
|
|
1864
1867
|
export { IconWrite, default as IconWriteDefault } from "./IconWrite";
|
|
1865
1868
|
export { IconWrite1, default as IconWrite1Default } from "./IconWrite1";
|
|
1866
1869
|
export { IconWrite2, default as IconWrite2Default } from "./IconWrite2";
|
|
1870
|
+
export { IconWrite3, default as IconWrite3Default } from "./IconWrite3";
|
|
1867
1871
|
export { IconWriting, default as IconWritingDefault } from "./IconWriting";
|
|
1868
1872
|
export { IconX, default as IconXDefault } from "./IconX";
|
|
1869
1873
|
export { IconXbox, default as IconXboxDefault } from "./IconXbox";
|