@central-icons-react-native/round-outlined-radius-0-stroke-1 1.1.226 → 1.1.228
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/IconAgents/index.d.ts +4 -0
- package/IconAgents/index.js +2 -0
- package/IconAgents/index.js.map +1 -0
- package/IconAgents/index.mjs +2 -0
- package/IconAgents/index.mjs.map +1 -0
- package/IconCloud2/index.d.ts +4 -0
- package/IconCloud2/index.js +2 -0
- package/IconCloud2/index.js.map +1 -0
- package/IconCloud2/index.mjs +2 -0
- package/IconCloud2/index.mjs.map +1 -0
- package/README.md +2 -0
- package/filtered-icons.json +28 -0
- package/icons/index.d.ts +2 -0
- package/icons-index.json +8 -4
- package/index.d.ts +2 -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/skills/central-icons-react-native/SKILL.md +3 -1
- package/tsx-icons.json +14 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var k=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},C=(r,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!x.call(r,s)&&s!==n&&p(r,s,{get:()=>o[s],enumerable:!(i=m(o,s))||i.enumerable});return r};var u=(r,o,n)=>(n=r!=null?k(f(r)):{},C(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>C(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconAgents:()=>d,default:()=>g});module.exports=I(P);var e=u(require("react"));var c=u(require("react")),l=require("react-native-svg"),a=({children:r,size:o=24,...n})=>c.default.createElement(l.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"),d=r=>e.default.createElement(a,{...r},e.default.createElement(t.Circle,{cx:"6",cy:"5",r:"2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Circle,{cx:"18",cy:"19",r:"2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M8.5 5H17C18.933 5 20.5 6.567 20.5 8.5C20.5 10.433 18.933 12 17 12H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M8.5 12H7C5.067 12 3.5 13.567 3.5 15.5C3.5 17.433 5.067 19 7 19H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M8.75 12L12 8.75L15.25 12L12 15.25L8.75 12Z",stroke:"currentColor",strokeLinejoin:"round"})),g=d;0&&(module.exports={IconAgents});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAgents/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 IconAgents: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"6\"\n cy=\"5\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"18\"\n cy=\"19\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 5H17C18.933 5 20.5 6.567 20.5 8.5C20.5 10.433 18.933 12 17 12H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 12H7C5.067 12 3.5 13.567 3.5 15.5C3.5 17.433 5.067 19 7 19H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.75 12L12 8.75L15.25 12L12 15.25L8.75 12Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAgents;\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,UACC,GAAG,IACH,GAAG,IACH,EAAE,MACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,KACH,EAAE,MACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0EACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uEACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8CACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconAgents_exports","__export","IconAgents","IconAgents_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAgents","props","React","CentralIconBase","IconAgents_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import i from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:r=24,...p})=>i.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as s,Path as e}from"react-native-svg";var u=n=>o.createElement(t,{...n},o.createElement(s,{cx:"6",cy:"5",r:"2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(s,{cx:"18",cy:"19",r:"2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8.5 5H17C18.933 5 20.5 6.567 20.5 8.5C20.5 10.433 18.933 12 17 12H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8.5 12H7C5.067 12 3.5 13.567 3.5 15.5C3.5 17.433 5.067 19 7 19H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8.75 12L12 8.75L15.25 12L12 15.25L8.75 12Z",stroke:"currentColor",strokeLinejoin:"round"})),B=u;export{u as IconAgents,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAgents/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 IconAgents: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"6\"\n cy=\"5\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"18\"\n cy=\"19\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 5H17C18.933 5 20.5 6.567 20.5 8.5C20.5 10.433 18.933 12 17 12H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 12H7C5.067 12 3.5 13.567 3.5 15.5C3.5 17.433 5.067 19 7 19H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.75 12L12 8.75L15.25 12L12 15.25L8.75 12Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAgents;\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,cAACJ,EAAA,CACC,GAAG,IACH,GAAG,IACH,EAAE,MACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,KACH,EAAE,MACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,0EACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uEACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8CACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAgents","props","React","CentralIconBase","IconAgents_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of I(r))!P.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(p=B(r,e))||p.enumerable});return o};var s=(o,r,t)=>(t=o!=null?i(x(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),d=o=>a(n({},"__esModule",{value:!0}),o);var h={};g(h,{IconCloud2:()=>u,default:()=>v});module.exports=d(h);var C=s(require("react"));var m=s(require("react")),l=require("react-native-svg"),c=({children:o,size:r=24,...t})=>m.default.createElement(l.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),u=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{d:"M10 4C11.752 4 13.3112 4.82042 14.3184 6.09668C14.619 6.0334 14.9306 6 15.25 6C17.7353 6 19.75 8.01472 19.75 10.5C19.75 10.6167 19.7431 10.7322 19.7344 10.8467C21.3586 11.5257 22.5 13.1295 22.5 15C22.5 17.4853 20.4853 19.5 18 19.5H7C3.96243 19.5 1.5 17.0376 1.5 14C1.5 11.8566 2.72652 10.0003 4.51562 9.09277C4.72405 6.2454 7.09942 4 10 4Z",stroke:"currentColor",strokeLinejoin:"round"})),v=u;0&&(module.exports={IconCloud2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloud2/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 IconCloud2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 4C11.752 4 13.3112 4.82042 14.3184 6.09668C14.619 6.0334 14.9306 6 15.25 6C17.7353 6 19.75 8.01472 19.75 10.5C19.75 10.6167 19.7431 10.7322 19.7344 10.8467C21.3586 11.5257 22.5 13.1295 22.5 15C22.5 17.4853 20.4853 19.5 18 19.5H7C3.96243 19.5 1.5 17.0376 1.5 14C1.5 11.8566 2.72652 10.0003 4.51562 9.09277C4.72405 6.2454 7.09942 4 10 4Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloud2;\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,sVACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCloud2_exports","__export","IconCloud2","IconCloud2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCloud2","props","React","CentralIconBase","IconCloud2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var s=r=>e.createElement(t,{...r},e.createElement(a,{d:"M10 4C11.752 4 13.3112 4.82042 14.3184 6.09668C14.619 6.0334 14.9306 6 15.25 6C17.7353 6 19.75 8.01472 19.75 10.5C19.75 10.6167 19.7431 10.7322 19.7344 10.8467C21.3586 11.5257 22.5 13.1295 22.5 15C22.5 17.4853 20.4853 19.5 18 19.5H7C3.96243 19.5 1.5 17.0376 1.5 14C1.5 11.8566 2.72652 10.0003 4.51562 9.09277C4.72405 6.2454 7.09942 4 10 4Z",stroke:"currentColor",strokeLinejoin:"round"})),P=s;export{s as IconCloud2,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloud2/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 IconCloud2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 4C11.752 4 13.3112 4.82042 14.3184 6.09668C14.619 6.0334 14.9306 6 15.25 6C17.7353 6 19.75 8.01472 19.75 10.5C19.75 10.6167 19.7431 10.7322 19.7344 10.8467C21.3586 11.5257 22.5 13.1295 22.5 15C22.5 17.4853 20.4853 19.5 18 19.5H7C3.96243 19.5 1.5 17.0376 1.5 14C1.5 11.8566 2.72652 10.0003 4.51562 9.09277C4.72405 6.2454 7.09942 4 10 4Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloud2;\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,sVACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCloud2","props","React","CentralIconBase","IconCloud2_default"]}
|
package/README.md
CHANGED
|
@@ -437,6 +437,7 @@ Below is a complete list of available icons:
|
|
|
437
437
|
### Clouds
|
|
438
438
|
|
|
439
439
|
- IconCloud
|
|
440
|
+
- IconCloud2
|
|
440
441
|
- IconCloudApi
|
|
441
442
|
- IconCloudCheck
|
|
442
443
|
- IconCloudDownload
|
|
@@ -453,6 +454,7 @@ Below is a complete list of available icons:
|
|
|
453
454
|
|
|
454
455
|
- IconAgent
|
|
455
456
|
- IconAgenticCoding
|
|
457
|
+
- IconAgents
|
|
456
458
|
- IconAnchor
|
|
457
459
|
- IconAnimatePath
|
|
458
460
|
- IconAnimation
|
package/filtered-icons.json
CHANGED
|
@@ -238,6 +238,20 @@
|
|
|
238
238
|
"packageName": "round-outlined-radius-0-stroke-1",
|
|
239
239
|
"componentName": "IconAgentNetwork"
|
|
240
240
|
},
|
|
241
|
+
{
|
|
242
|
+
"category": "Code",
|
|
243
|
+
"svg": "<circle cx=\"6\" cy=\"5\" r=\"2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"18\" cy=\"19\" r=\"2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 5H17C18.933 5 20.5 6.567 20.5 8.5C20.5 10.433 18.933 12 17 12H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 12H7C5.067 12 3.5 13.567 3.5 15.5C3.5 17.433 5.067 19 7 19H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 12L12 8.75L15.25 12L12 15.25L8.75 12Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
244
|
+
"iconName": "agents, connections, flow",
|
|
245
|
+
"variant": {
|
|
246
|
+
"join": "round",
|
|
247
|
+
"filled": "off",
|
|
248
|
+
"radius": "0",
|
|
249
|
+
"stroke": "1"
|
|
250
|
+
},
|
|
251
|
+
"createdAt": "2026-05-07T20:01:57.412973+00:00",
|
|
252
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
253
|
+
"componentName": "IconAgents"
|
|
254
|
+
},
|
|
241
255
|
{
|
|
242
256
|
"category": "Devices & Signals",
|
|
243
257
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"1.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 11.5H11.5V12.5H12.5V11.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.7508 20.2286C19.5899 18.5859 21.5 15.516 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.516 4.41007 18.5859 7.24917 20.2286\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.24865 16.7634C7.60544 15.8122 6.5 14.0352 6.5 12C6.5 8.96243 8.96243 6.5 12 6.5C15.0376 6.5 17.5 8.96243 17.5 12C17.5 14.0352 16.3946 15.8122 14.7514 16.7634\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -7308,6 +7322,20 @@
|
|
|
7308
7322
|
"packageName": "round-outlined-radius-0-stroke-1",
|
|
7309
7323
|
"componentName": "IconCloud"
|
|
7310
7324
|
},
|
|
7325
|
+
{
|
|
7326
|
+
"category": "Clouds",
|
|
7327
|
+
"svg": "<path d=\"M10 4C11.752 4 13.3112 4.82042 14.3184 6.09668C14.619 6.0334 14.9306 6 15.25 6C17.7353 6 19.75 8.01472 19.75 10.5C19.75 10.6167 19.7431 10.7322 19.7344 10.8467C21.3586 11.5257 22.5 13.1295 22.5 15C22.5 17.4853 20.4853 19.5 18 19.5H7C3.96243 19.5 1.5 17.0376 1.5 14C1.5 11.8566 2.72652 10.0003 4.51562 9.09277C4.72405 6.2454 7.09942 4 10 4Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
7328
|
+
"iconName": "cloud-2",
|
|
7329
|
+
"variant": {
|
|
7330
|
+
"join": "round",
|
|
7331
|
+
"filled": "off",
|
|
7332
|
+
"radius": "0",
|
|
7333
|
+
"stroke": "1"
|
|
7334
|
+
},
|
|
7335
|
+
"createdAt": "2026-05-07T20:01:57.412973+00:00",
|
|
7336
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
7337
|
+
"componentName": "IconCloud2"
|
|
7338
|
+
},
|
|
7311
7339
|
{
|
|
7312
7340
|
"category": "Clouds",
|
|
7313
7341
|
"svg": "<path d=\"M8.18146 13.5C6.07274 13.5 4.36328 11.8211 4.36328 9.75C4.36328 7.85044 5.80133 6.28077 7.66653 6.03381C8.28569 4.26838 9.99185 3 11.9996 3C14.5301 3 16.5815 5.01472 16.5815 7.5C18.2684 7.5 19.636 8.84315 19.636 10.5C19.636 12.1569 18.2684 13.5 16.5815 13.5H8.18146Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"18.5\" r=\"2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 18.5H2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.5 18.5H14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 16V13.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export type CentralIconName =
|
|
|
16
16
|
| "IconAgent"
|
|
17
17
|
| "IconAgenticCoding"
|
|
18
18
|
| "IconAgentNetwork"
|
|
19
|
+
| "IconAgents"
|
|
19
20
|
| "IconAirdrop"
|
|
20
21
|
| "IconAirdrop2"
|
|
21
22
|
| "IconAirplane"
|
|
@@ -521,6 +522,7 @@ export type CentralIconName =
|
|
|
521
522
|
| "IconCloseQuote1"
|
|
522
523
|
| "IconCloseQuote2"
|
|
523
524
|
| "IconCloud"
|
|
525
|
+
| "IconCloud2"
|
|
524
526
|
| "IconCloudApi"
|
|
525
527
|
| "IconCloudCheck"
|
|
526
528
|
| "IconCloudDownload"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.228",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1988,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -313,9 +313,10 @@
|
|
|
313
313
|
]
|
|
314
314
|
},
|
|
315
315
|
"Clouds": {
|
|
316
|
-
"count":
|
|
316
|
+
"count": 13,
|
|
317
317
|
"icons": [
|
|
318
318
|
"IconCloud",
|
|
319
|
+
"IconCloud2",
|
|
319
320
|
"IconCloudApi",
|
|
320
321
|
"IconCloudCheck",
|
|
321
322
|
"IconCloudDownload",
|
|
@@ -330,10 +331,11 @@
|
|
|
330
331
|
]
|
|
331
332
|
},
|
|
332
333
|
"Code": {
|
|
333
|
-
"count":
|
|
334
|
+
"count": 66,
|
|
334
335
|
"icons": [
|
|
335
336
|
"IconAgent",
|
|
336
337
|
"IconAgenticCoding",
|
|
338
|
+
"IconAgents",
|
|
337
339
|
"IconAnchor",
|
|
338
340
|
"IconAnimatePath",
|
|
339
341
|
"IconAnimation",
|
|
@@ -2204,6 +2206,7 @@
|
|
|
2204
2206
|
"IconAgent": "agent, flow, diagram, org",
|
|
2205
2207
|
"IconAgenticCoding": "agentic-coding, ai-code, vibe-code",
|
|
2206
2208
|
"IconAgentNetwork": "agent-network, connections, atoms",
|
|
2209
|
+
"IconAgents": "agents, connections, flow",
|
|
2207
2210
|
"IconAirdrop": "airdrop, file-sharing, radar",
|
|
2208
2211
|
"IconAirdrop2": "airdrop-2, free, drop, parachute",
|
|
2209
2212
|
"IconAirplane": "airplane, flight",
|
|
@@ -2709,6 +2712,7 @@
|
|
|
2709
2712
|
"IconCloseQuote1": "close-quote-1, blockquote",
|
|
2710
2713
|
"IconCloseQuote2": "close-quote-2, blockquote",
|
|
2711
2714
|
"IconCloud": "cloud",
|
|
2715
|
+
"IconCloud2": "cloud-2",
|
|
2712
2716
|
"IconCloudApi": "cloud-api, cloud-network",
|
|
2713
2717
|
"IconCloudCheck": "cloud-check, save",
|
|
2714
2718
|
"IconCloudDownload": "cloud-download",
|
package/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { IconAffinity, default as IconAffinityDefault } from "./IconAffinity";
|
|
|
15
15
|
export { IconAgent, default as IconAgentDefault } from "./IconAgent";
|
|
16
16
|
export { IconAgentNetwork, default as IconAgentNetworkDefault, } from "./IconAgentNetwork";
|
|
17
17
|
export { IconAgenticCoding, default as IconAgenticCodingDefault, } from "./IconAgenticCoding";
|
|
18
|
+
export { IconAgents, default as IconAgentsDefault } from "./IconAgents";
|
|
18
19
|
export { IconAiSlop, default as IconAiSlopDefault } from "./IconAiSlop";
|
|
19
20
|
export { IconAiTokens, default as IconAiTokensDefault } from "./IconAiTokens";
|
|
20
21
|
export { IconAiTranslate, default as IconAiTranslateDefault, } from "./IconAiTranslate";
|
|
@@ -520,6 +521,7 @@ export { IconCloseQuote1, default as IconCloseQuote1Default, } from "./IconClose
|
|
|
520
521
|
export { IconCloseQuote2, default as IconCloseQuote2Default, } from "./IconCloseQuote2";
|
|
521
522
|
export { IconClosedCaptioning, default as IconClosedCaptioningDefault, } from "./IconClosedCaptioning";
|
|
522
523
|
export { IconCloud, default as IconCloudDefault } from "./IconCloud";
|
|
524
|
+
export { IconCloud2, default as IconCloud2Default } from "./IconCloud2";
|
|
523
525
|
export { IconCloudApi, default as IconCloudApiDefault } from "./IconCloudApi";
|
|
524
526
|
export { IconCloudCheck, default as IconCloudCheckDefault, } from "./IconCloudCheck";
|
|
525
527
|
export { IconCloudDownload, default as IconCloudDownloadDefault, } from "./IconCloudDownload";
|