@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.161 → 1.1.163
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/IconStackedBarChart2/index.d.ts +4 -0
- package/IconStackedBarChart2/index.js +2 -0
- package/IconStackedBarChart2/index.js.map +1 -0
- package/IconStackedBarChart2/index.mjs +2 -0
- package/IconStackedBarChart2/index.mjs.map +1 -0
- package/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 +3 -0
- package/filtered-icons.json +44 -2
- package/icons/index.d.ts +3 -0
- package/icons-index.json +13 -7
- 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 +23 -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)),d=r=>a(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconGarlic:()=>f,default:()=>v});module.exports=d(h);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 i=require("react-native-svg"),f=r=>p.default.createElement(l,{...r},p.default.createElement(i.Path,{d:"M14.5 21.1662C20 22.2257 21.25 18.307 21.25 15.5101C20.854 10.1675 14.561 8.11868 13.2047 3.28308C13.0271 2.64969 12.3657 2.2194 11.7469 2.44268L10.8288 2.77397C10.3782 2.93659 10.1177 3.39993 10.1239 3.87898C10.1908 9.04062 2.75 10.2712 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:"round",strokeLinejoin:"round"})),v=f;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.854 10.1675 14.561 8.11868 13.2047 3.28308C13.0271 2.64969 12.3657 2.2194 11.7469 2.44268L10.8288 2.77397C10.3782 2.93659 10.1177 3.39993 10.1239 3.87898C10.1908 9.04062 2.75 10.2712 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=\"round\"\n strokeLinejoin=\"round\"\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,ucACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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.854 10.1675 14.561 8.11868 13.2047 3.28308C13.0271 2.64969 12.3657 2.2194 11.7469 2.44268L10.8288 2.77397C10.3782 2.93659 10.1177 3.39993 10.1239 3.87898C10.1908 9.04062 2.75 10.2712 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:"round",strokeLinejoin:"round"})),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.854 10.1675 14.561 8.11868 13.2047 3.28308C13.0271 2.64969 12.3657 2.2194 11.7469 2.44268L10.8288 2.77397C10.3782 2.93659 10.1177 3.39993 10.1239 3.87898C10.1908 9.04062 2.75 10.2712 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=\"round\"\n strokeLinejoin=\"round\"\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,ucACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 l=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},i=(r,o,n,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!B.call(r,s)&&s!==n&&p(r,s,{get:()=>o[s],enumerable:!(C=m(o,s))||C.enumerable});return r};var u=(r,o,n)=>(n=r!=null?l(f(r)):{},i(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),V=r=>i(p({},"__esModule",{value:!0}),r);var P={};I(P,{IconStackedBarChart2:()=>k,default:()=>x});module.exports=V(P);var e=u(require("react"));var a=u(require("react")),d=require("react-native-svg"),c=({children:r,size:o=24,...n})=>a.default.createElement(d.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"),k=r=>e.default.createElement(c,{...r},e.default.createElement(t.Path,{d:"M2.5 19.5H21.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M4.5 19.5V13C4.5 12.1716 5.17157 11.5 6 11.5C6.82843 11.5 7.5 12.1716 7.5 13V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M7.5 19.5V8C7.5 7.17157 8.17157 6.5 9 6.5C9.82843 6.5 10.5 7.17157 10.5 8V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M13.5 19.5V11C13.5 10.1716 14.1716 9.5 15 9.5C15.8284 9.5 16.5 10.1716 16.5 11V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M16.5 19.5V6C16.5 5.17157 17.1716 4.5 18 4.5C18.8284 4.5 19.5 5.17157 19.5 6V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=k;0&&(module.exports={IconStackedBarChart2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStackedBarChart2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconStackedBarChart2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2.5 19.5H21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.5 19.5V13C4.5 12.1716 5.17157 11.5 6 11.5C6.82843 11.5 7.5 12.1716 7.5 13V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 19.5V8C7.5 7.17157 8.17157 6.5 9 6.5C9.82843 6.5 10.5 7.17157 10.5 8V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.5 19.5V11C13.5 10.1716 14.1716 9.5 15 9.5C15.8284 9.5 16.5 10.1716 16.5 11V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 19.5V6C16.5 5.17157 17.1716 4.5 18 4.5C18.8284 4.5 19.5 5.17157 19.5 6V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackedBarChart2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconStackedBarChart2_exports","__export","IconStackedBarChart2","IconStackedBarChart2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStackedBarChart2","props","React","CentralIconBase","IconStackedBarChart2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...s})=>p.createElement(C,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var i=e=>o.createElement(t,{...e},o.createElement(n,{d:"M2.5 19.5H21.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M4.5 19.5V13C4.5 12.1716 5.17157 11.5 6 11.5C6.82843 11.5 7.5 12.1716 7.5 13V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M7.5 19.5V8C7.5 7.17157 8.17157 6.5 9 6.5C9.82843 6.5 10.5 7.17157 10.5 8V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M13.5 19.5V11C13.5 10.1716 14.1716 9.5 15 9.5C15.8284 9.5 16.5 10.1716 16.5 11V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M16.5 19.5V6C16.5 5.17157 17.1716 4.5 18 4.5C18.8284 4.5 19.5 5.17157 19.5 6V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=i;export{i as IconStackedBarChart2,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStackedBarChart2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconStackedBarChart2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2.5 19.5H21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.5 19.5V13C4.5 12.1716 5.17157 11.5 6 11.5C6.82843 11.5 7.5 12.1716 7.5 13V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 19.5V8C7.5 7.17157 8.17157 6.5 9 6.5C9.82843 6.5 10.5 7.17157 10.5 8V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.5 19.5V11C13.5 10.1716 14.1716 9.5 15 9.5C15.8284 9.5 16.5 10.1716 16.5 11V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 19.5V6C16.5 5.17157 17.1716 4.5 18 4.5C18.8284 4.5 19.5 5.17157 19.5 6V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackedBarChart2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStackedBarChart2","props","React","CentralIconBase","IconStackedBarChart2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var s=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},c=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of k(o))!B.call(r,p)&&p!==e&&s(r,p,{get:()=>o[p],enumerable:!(C=f(o,p))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?d(x(r)):{},c(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>c(s({},"__esModule",{value:!0}),r);var g={};I(g,{IconWrite3:()=>m,default:()=>P});module.exports=L(g);var n=l(require("react"));var a=l(require("react")),i=require("react-native-svg"),u=({children:r,size:o=24,...e})=>a.default.createElement(i.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),m=r=>n.default.createElement(u,{...r},n.default.createElement(t.Path,{d:"M4.5 21.5H19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M7.5 21.25L4.88956 14.5064C4.64642 13.8783 4.73576 13.1699 5.12724 12.6219L12.0001 3L18.8728 12.6219C19.2643 13.17 19.3536 13.8782 19.1104 14.5063L16.5 21.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"12",cy:"14",r:"2.25",stroke:"currentColor"}),n.default.createElement(t.Path,{d:"M12 12V3.5",stroke:"currentColor"})),P=m;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\n d=\"M4.5 21.5H19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 21.25L4.88956 14.5064C4.64642 13.8783 4.73576 13.1699 5.12724 12.6219L12.0001 3L18.8728 12.6219C19.2643 13.17 19.3536 13.8782 19.1104 14.5063L16.5 21.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 t=({children:e,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"},e);import{Circle as c,Path as n}from"react-native-svg";var l=e=>o.createElement(t,{...e},o.createElement(n,{d:"M4.5 21.5H19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M7.5 21.25L4.88956 14.5064C4.64642 13.8783 4.73576 13.1699 5.12724 12.6219L12.0001 3L18.8728 12.6219C19.2643 13.17 19.3536 13.8782 19.1104 14.5063L16.5 21.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(c,{cx:"12",cy:"14",r:"2.25",stroke:"currentColor"}),o.createElement(n,{d:"M12 12V3.5",stroke:"currentColor"})),I=l;export{l as IconWrite3,I 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\n d=\"M4.5 21.5H19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 21.25L4.88956 14.5064C4.64642 13.8783 4.73576 13.1699 5.12724 12.6219L12.0001 3L18.8728 12.6219C19.2643 13.17 19.3536 13.8782 19.1104 14.5063L16.5 21.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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,6 +1797,7 @@ Below is a complete list of available icons:
|
|
|
1795
1797
|
- IconSankeyChart
|
|
1796
1798
|
- IconStackedBarChart
|
|
1797
1799
|
- IconStackedBarChart100
|
|
1800
|
+
- IconStackedBarChart2
|
|
1798
1801
|
- IconStackedBarChartAxis2
|
|
1799
1802
|
- IconSunburstChart
|
|
1800
1803
|
- IconSunburstChart2
|
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\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.6562 6.49988C13.9899 5.39858 14.5445 4.11576 15.294 3.06139C15.8839 2.23153 17.0447 2.29414 17.7647 3.01407L20.9863 6.23568C21.7062 6.95562 21.7688 8.1165 20.939 8.70635C19.8846 9.45576 18.6018 10.0104 17.5005 10.344\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.50037 13.6558C5.39907 13.9894 4.11624 14.5441 3.06188 15.2935C2.23202 15.8834 2.29463 17.0443 3.01456 17.7642L6.23617 20.9858C6.95611 21.7057 8.11699 21.7683 8.70684 20.9385C9.45625 19.8841 10.0109 18.6013 10.3445 17.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
5256
|
-
"iconName": "candy",
|
|
5256
|
+
"iconName": "candy, sweet",
|
|
5257
5257
|
"variant": {
|
|
5258
5258
|
"join": "round",
|
|
5259
5259
|
"filled": "off",
|
|
@@ -5659,7 +5659,7 @@
|
|
|
5659
5659
|
{
|
|
5660
5660
|
"category": "Food",
|
|
5661
5661
|
"svg": "<path d=\"M5.08093 11.3037C5.53268 10.8519 6.28642 10.9339 6.63056 11.4721L7.53139 12.8812C8.34848 14.1592 8.16648 15.8336 7.09387 16.9062L5.57974 18.4203L4.00886 15.9633C3.19177 14.6853 3.37377 13.0109 4.44638 11.9383L5.08093 11.3037Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M12.6968 18.919C13.1485 18.4673 13.0666 17.7136 12.5283 17.3694L11.1193 16.4686C9.84129 15.6515 8.16682 15.8335 7.09421 16.9061L5.58008 18.4203L8.0372 19.9911C9.31522 20.8082 10.9896 20.6262 12.0622 19.5536L12.6968 18.919Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.50866 7.8767C8.96042 7.42494 9.71416 7.50687 10.0583 8.04514L10.9591 9.45415C11.7762 10.7322 11.5942 12.4066 10.5216 13.4792L9.00748 14.9933L7.4366 12.5363C6.6195 11.2583 6.8015 9.58387 7.87411 8.51125L8.50866 7.8767Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M16.1224 15.4923C16.5742 15.0405 16.4922 14.2868 15.954 13.9427L14.545 13.0418C13.2669 12.2247 11.5926 12.4067 10.52 13.4794L9.00586 14.9935L11.4629 16.5644C12.7409 17.3815 14.4152 17.1995 15.4878 16.1269L16.1224 15.4923Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M11.9344 4.44994C12.3862 3.99818 13.1399 4.08011 13.4841 4.61839L14.3849 6.02739C15.202 7.30542 15.02 8.97981 13.9474 10.0524L12.4333 11.5666L10.8624 9.10953C10.0453 7.8315 10.2273 6.15711 11.2999 5.0845L11.9344 4.44994Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M19.5501 12.0653C20.0019 11.6135 19.92 10.8598 19.3817 10.5157L17.9727 9.61481C16.6947 8.79771 15.0203 8.97974 13.9477 10.0524L12.4336 11.5665L14.8906 13.1374C16.1686 13.9545 17.843 13.7725 18.9156 12.6999L19.5501 12.0653Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M16.2528 8.58522C15.7974 8.56811 15.4325 8.20329 15.4154 7.74788C15.3088 4.90937 16.8195 3.39867 19.658 3.50528C20.1134 3.52239 20.4782 3.88721 20.4953 4.34262C20.6019 7.18113 19.0912 8.69183 16.2528 8.58522Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M5.96039 18.0396L3.67578 20.3242\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
|
|
5662
|
-
"iconName": "cereals, wheat",
|
|
5662
|
+
"iconName": "cereals, wheat, gluten, corn, grain",
|
|
5663
5663
|
"variant": {
|
|
5664
5664
|
"join": "round",
|
|
5665
5665
|
"filled": "off",
|
|
@@ -12138,6 +12138,20 @@
|
|
|
12138
12138
|
"packageName": "round-outlined-radius-2-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.854 10.1675 14.561 8.11868 13.2047 3.28308C13.0271 2.64969 12.3657 2.2194 11.7469 2.44268L10.8288 2.77397C10.3782 2.93659 10.1177 3.39993 10.1239 3.87898C10.1908 9.04062 2.75 10.2712 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=\"round\" stroke-linejoin=\"round\"/>",
|
|
12144
|
+
"iconName": "garlic",
|
|
12145
|
+
"variant": {
|
|
12146
|
+
"join": "round",
|
|
12147
|
+
"filled": "off",
|
|
12148
|
+
"radius": "2",
|
|
12149
|
+
"stroke": "1"
|
|
12150
|
+
},
|
|
12151
|
+
"createdAt": "2026-03-17T14:00:55.854067+00:00",
|
|
12152
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
12153
|
+
"componentName": "IconGarlic"
|
|
12154
|
+
},
|
|
12141
12155
|
{
|
|
12142
12156
|
"category": "Crypto",
|
|
12143
12157
|
"svg": "<path d=\"M15.5 20.5H16.5M15.5 20.5V9.5M15.5 20.5H4.5M15.5 9.5V5.5C15.5 4.39543 14.6046 3.5 13.5 3.5H6.5C5.39543 3.5 4.5 4.39543 4.5 5.5V20.5M15.5 9.5H16.5C17.6046 9.5 18.5 10.3954 18.5 11.5V16C18.5 16.8284 19.1716 17.5 20 17.5C20.8284 17.5 21.5 16.8284 21.5 16V8.32843C21.5 7.79799 21.2893 7.28929 20.9142 6.91421L19.5 5.5M3.5 20.5H4.5M12.5 9.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -22442,6 +22456,20 @@
|
|
|
22442
22456
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
22443
22457
|
"componentName": "IconStackedBarChart100"
|
|
22444
22458
|
},
|
|
22459
|
+
{
|
|
22460
|
+
"category": "Statistics & Charts",
|
|
22461
|
+
"svg": "<path d=\"M2.5 19.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 19.5V13C4.5 12.1716 5.17157 11.5 6 11.5C6.82843 11.5 7.5 12.1716 7.5 13V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 19.5V8C7.5 7.17157 8.17157 6.5 9 6.5C9.82843 6.5 10.5 7.17157 10.5 8V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.5 19.5V11C13.5 10.1716 14.1716 9.5 15 9.5C15.8284 9.5 16.5 10.1716 16.5 11V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 19.5V6C16.5 5.17157 17.1716 4.5 18 4.5C18.8284 4.5 19.5 5.17157 19.5 6V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
22462
|
+
"iconName": "stacked-bar-chart-2, revenue",
|
|
22463
|
+
"variant": {
|
|
22464
|
+
"join": "round",
|
|
22465
|
+
"filled": "off",
|
|
22466
|
+
"radius": "2",
|
|
22467
|
+
"stroke": "1"
|
|
22468
|
+
},
|
|
22469
|
+
"createdAt": "2026-03-17T12:01:24.906844+00:00",
|
|
22470
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
22471
|
+
"componentName": "IconStackedBarChart2"
|
|
22472
|
+
},
|
|
22445
22473
|
{
|
|
22446
22474
|
"category": "Statistics & Charts",
|
|
22447
22475
|
"svg": "<path d=\"M3.5 3.5V18.5C3.5 19.6046 4.39543 20.5 5.5 20.5H20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 18.5V11.5C6.5 10.3954 7.39543 9.5 8.5 9.5H10.5C11.6046 9.5 12.5 10.3954 12.5 11.5V18.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 18.5V8.5C12.5 7.39543 13.3954 6.5 14.5 6.5H16.5C17.6046 6.5 18.5 7.39543 18.5 8.5V18.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -26110,6 +26138,20 @@
|
|
|
26110
26138
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
26111
26139
|
"componentName": "IconWrite2"
|
|
26112
26140
|
},
|
|
26141
|
+
{
|
|
26142
|
+
"category": "Edit",
|
|
26143
|
+
"svg": "<path d=\"M4.5 21.5H19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 21.25L4.88956 14.5064C4.64642 13.8783 4.73576 13.1699 5.12724 12.6219L12.0001 3L18.8728 12.6219C19.2643 13.17 19.3536 13.8782 19.1104 14.5063L16.5 21.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"14\" r=\"2.25\" stroke=\"currentColor\"/><path d=\"M12 12V3.5\" stroke=\"currentColor\"/>",
|
|
26144
|
+
"iconName": "write-3, fountain-pen, vector, ink",
|
|
26145
|
+
"variant": {
|
|
26146
|
+
"join": "round",
|
|
26147
|
+
"filled": "off",
|
|
26148
|
+
"radius": "2",
|
|
26149
|
+
"stroke": "1"
|
|
26150
|
+
},
|
|
26151
|
+
"createdAt": "2026-03-17T14:00:55.854067+00:00",
|
|
26152
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
26153
|
+
"componentName": "IconWrite3"
|
|
26154
|
+
},
|
|
26113
26155
|
{
|
|
26114
26156
|
"category": "Edit",
|
|
26115
26157
|
"svg": "<path d=\"M19.9142 3.91416C19.1332 3.13311 17.8668 3.13311 17.0858 3.91415L12.0858 8.91416C11.7107 9.28923 11.5 9.79794 11.5 10.3284V12.4999H13.6716C14.202 12.4999 14.7107 12.2892 15.0858 11.9142L20.0858 6.91416C20.8668 6.13311 20.8668 4.86678 20.0858 4.08573L19.9142 3.91416Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><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=\"round\" stroke-linejoin=\"round\"/>",
|
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,6 +1603,7 @@ export type CentralIconName =
|
|
|
1602
1603
|
| "IconStableVoice"
|
|
1603
1604
|
| "IconStackedBarChart"
|
|
1604
1605
|
| "IconStackedBarChart100"
|
|
1606
|
+
| "IconStackedBarChart2"
|
|
1605
1607
|
| "IconStackedBarChartAxis2"
|
|
1606
1608
|
| "IconStackOverflow"
|
|
1607
1609
|
| "IconStage"
|
|
@@ -1864,6 +1866,7 @@ export type CentralIconName =
|
|
|
1864
1866
|
| "IconWrite"
|
|
1865
1867
|
| "IconWrite1"
|
|
1866
1868
|
| "IconWrite2"
|
|
1869
|
+
| "IconWrite3"
|
|
1867
1870
|
| "IconWriting"
|
|
1868
1871
|
| "IconX"
|
|
1869
1872
|
| "IconXbox"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.163",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-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": 1877,
|
|
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": 39,
|
|
1702
1704
|
"icons": [
|
|
1703
1705
|
"IconAnalytics",
|
|
1704
1706
|
"IconChart1",
|
|
@@ -1727,6 +1729,7 @@
|
|
|
1727
1729
|
"IconSankeyChart",
|
|
1728
1730
|
"IconStackedBarChart",
|
|
1729
1731
|
"IconStackedBarChart100",
|
|
1732
|
+
"IconStackedBarChart2",
|
|
1730
1733
|
"IconStackedBarChartAxis2",
|
|
1731
1734
|
"IconSunburstChart",
|
|
1732
1735
|
"IconSunburstChart2",
|
|
@@ -2451,7 +2454,7 @@
|
|
|
2451
2454
|
"IconCameraOff": "camera-off",
|
|
2452
2455
|
"IconCameraOff1": "camera-off-1, cam-off",
|
|
2453
2456
|
"IconCameraSparkle": "camera-sparkle, picture, image, cam",
|
|
2454
|
-
"IconCandy": "candy",
|
|
2457
|
+
"IconCandy": "candy, sweet",
|
|
2455
2458
|
"IconCap": "cap, fan",
|
|
2456
2459
|
"IconCapture": "capture, screen",
|
|
2457
2460
|
"IconCar1": "car-1",
|
|
@@ -2480,7 +2483,7 @@
|
|
|
2480
2483
|
"IconCat": "cat, image, animal, cute",
|
|
2481
2484
|
"IconCelebrate": "celebrate, party, confetti",
|
|
2482
2485
|
"IconCentralIconSystem": "central-icon-system",
|
|
2483
|
-
"IconCereals": "cereals, wheat",
|
|
2486
|
+
"IconCereals": "cereals, wheat, gluten, corn, grain",
|
|
2484
2487
|
"IconChainLink1": "chain-link-1, url",
|
|
2485
2488
|
"IconChainLink2": "chain-link-2, url",
|
|
2486
2489
|
"IconChainLink3": "chain-link-3, url",
|
|
@@ -2943,6 +2946,7 @@
|
|
|
2943
2946
|
"IconGamepadControlsRoundUp": "gamepad-controls-round-up",
|
|
2944
2947
|
"IconGamepadControlsUp": "gamepad-controls-up, joystick",
|
|
2945
2948
|
"IconGarage": "garage",
|
|
2949
|
+
"IconGarlic": "garlic",
|
|
2946
2950
|
"IconGas": "gas",
|
|
2947
2951
|
"IconGauge": "gauge, tachometer, performance, speed, scale",
|
|
2948
2952
|
"IconGemini": "gemini",
|
|
@@ -3679,6 +3683,7 @@
|
|
|
3679
3683
|
"IconStableVoice": "stable-voice, stable-volume, voice-circle, voice-control",
|
|
3680
3684
|
"IconStackedBarChart": "stacked-bar-chart",
|
|
3681
3685
|
"IconStackedBarChart100": "stacked-bar-chart-100",
|
|
3686
|
+
"IconStackedBarChart2": "stacked-bar-chart-2, revenue",
|
|
3682
3687
|
"IconStackedBarChartAxis2": "stacked-bar-chart-axis-2",
|
|
3683
3688
|
"IconStackOverflow": "stack-overflow",
|
|
3684
3689
|
"IconStage": "stage, show",
|
|
@@ -3941,6 +3946,7 @@
|
|
|
3941
3946
|
"IconWrite": "write, edit-list, list",
|
|
3942
3947
|
"IconWrite1": "write-1, fountain-pen",
|
|
3943
3948
|
"IconWrite2": "write-2, fountain-pen",
|
|
3949
|
+
"IconWrite3": "write-3, fountain-pen, vector, ink",
|
|
3944
3950
|
"IconWriting": "writing, sketching, drawing",
|
|
3945
3951
|
"IconX": "x",
|
|
3946
3952
|
"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,6 +1603,7 @@ 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 { IconStackedBarChart2, default as IconStackedBarChart2Default, } from "./IconStackedBarChart2";
|
|
1605
1607
|
export { IconStackedBarChartAxis2, default as IconStackedBarChartAxis2Default, } from "./IconStackedBarChartAxis2";
|
|
1606
1608
|
export { IconStage, default as IconStageDefault } from "./IconStage";
|
|
1607
1609
|
export { IconStamps, default as IconStampsDefault } from "./IconStamps";
|
|
@@ -1863,6 +1865,7 @@ export { IconWreathSimple, default as IconWreathSimpleDefault, } from "./IconWre
|
|
|
1863
1865
|
export { IconWrite, default as IconWriteDefault } from "./IconWrite";
|
|
1864
1866
|
export { IconWrite1, default as IconWrite1Default } from "./IconWrite1";
|
|
1865
1867
|
export { IconWrite2, default as IconWrite2Default } from "./IconWrite2";
|
|
1868
|
+
export { IconWrite3, default as IconWrite3Default } from "./IconWrite3";
|
|
1866
1869
|
export { IconWriting, default as IconWritingDefault } from "./IconWriting";
|
|
1867
1870
|
export { IconX, default as IconXDefault } from "./IconX";
|
|
1868
1871
|
export { IconXbox, default as IconXboxDefault } from "./IconXbox";
|