@central-icons-react-native/round-outlined-radius-3-stroke-2 1.1.88 → 1.1.89
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/IconCloudApi/index.d.ts +4 -0
- package/IconCloudApi/index.js +2 -0
- package/IconCloudApi/index.js.map +1 -0
- package/IconCloudApi/index.mjs +2 -0
- package/IconCloudApi/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +15 -1
- package/icons/index.d.ts +1 -0
- package/icons-index.json +6 -4
- package/index.d.ts +1 -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 +8 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var a=Object.create;var i=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!h.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=m(o,s))||p.enumerable});return r};var d=(r,o,e)=>(e=r!=null?a(f(r)):{},C(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>C(i({},"__esModule",{value:!0}),r);var P={};x(P,{IconCloudApi:()=>l,default:()=>I});module.exports=B(P);var n=d(require("react"));var u=d(require("react")),k=require("react-native-svg"),c=({children:r,size:o=24,...e})=>u.default.createElement(k.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"),l=r=>n.default.createElement(c,{...r},n.default.createElement(t.Path,{d:"M8.42885 13C6.4564 13 4.85742 11.401 4.85742 9.42857C4.85742 7.61947 6.20253 6.12454 7.94719 5.88935C8.52634 4.20799 10.1222 3 12.0003 3C14.3672 3 16.286 4.91878 16.286 7.28571C17.8639 7.28571 19.1431 8.5649 19.1431 10.1429C19.1431 11.7208 17.8639 13 16.286 13H8.42885Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"12",cy:"18.5",r:"2.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9.5 18.5H3",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M21 18.5H14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M12 16V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=l;0&&(module.exports={IconCloudApi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudApi/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 IconCloudApi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.42885 13C6.4564 13 4.85742 11.401 4.85742 9.42857C4.85742 7.61947 6.20253 6.12454 7.94719 5.88935C8.52634 4.20799 10.1222 3 12.0003 3C14.3672 3 16.286 4.91878 16.286 7.28571C17.8639 7.28571 19.1431 8.5649 19.1431 10.1429C19.1431 11.7208 17.8639 13 16.286 13H8.42885Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"18.5\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 18.5H3\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21 18.5H14.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 16V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudApi;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gRACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,OACH,EAAE,MACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCloudApi_exports","__export","IconCloudApi","IconCloudApi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCloudApi","props","React","CentralIconBase","IconCloudApi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...s})=>i.createElement(p,{...s,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 C,Path as e}from"react-native-svg";var d=n=>o.createElement(t,{...n},o.createElement(e,{d:"M8.42885 13C6.4564 13 4.85742 11.401 4.85742 9.42857C4.85742 7.61947 6.20253 6.12454 7.94719 5.88935C8.52634 4.20799 10.1222 3 12.0003 3C14.3672 3 16.286 4.91878 16.286 7.28571C17.8639 7.28571 19.1431 8.5649 19.1431 10.1429C19.1431 11.7208 17.8639 13 16.286 13H8.42885Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(C,{cx:"12",cy:"18.5",r:"2.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9.5 18.5H3",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M21 18.5H14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M12 16V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=d;export{d as IconCloudApi,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudApi/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 IconCloudApi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.42885 13C6.4564 13 4.85742 11.401 4.85742 9.42857C4.85742 7.61947 6.20253 6.12454 7.94719 5.88935C8.52634 4.20799 10.1222 3 12.0003 3C14.3672 3 16.286 4.91878 16.286 7.28571C17.8639 7.28571 19.1431 8.5649 19.1431 10.1429C19.1431 11.7208 17.8639 13 16.286 13H8.42885Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"18.5\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 18.5H3\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21 18.5H14.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 16V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudApi;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gRACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,OACH,EAAE,MACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconCloudApi","props","React","CentralIconBase","IconCloudApi_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -6513,7 +6513,7 @@
|
|
|
6513
6513
|
{
|
|
6514
6514
|
"category": "Clouds",
|
|
6515
6515
|
"svg": "<path d=\"M7 19C4.23858 19 2 16.7614 2 14C2 11.4673 3.88316 9.37436 6.32568 9.04508C7.13649 6.69118 9.37075 5 12 5C15.3137 5 18 7.68629 18 11C20.2091 11 22 12.7909 22 15C22 17.2091 20.2091 19 18 19H7Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
6516
|
-
"iconName": "cloud
|
|
6516
|
+
"iconName": "cloud",
|
|
6517
6517
|
"variant": {
|
|
6518
6518
|
"join": "round",
|
|
6519
6519
|
"filled": "off",
|
|
@@ -6524,6 +6524,20 @@
|
|
|
6524
6524
|
"packageName": "round-outlined-radius-3-stroke-2",
|
|
6525
6525
|
"componentName": "IconCloud"
|
|
6526
6526
|
},
|
|
6527
|
+
{
|
|
6528
|
+
"category": "Clouds",
|
|
6529
|
+
"svg": "<path d=\"M8.42885 13C6.4564 13 4.85742 11.401 4.85742 9.42857C4.85742 7.61947 6.20253 6.12454 7.94719 5.88935C8.52634 4.20799 10.1222 3 12.0003 3C14.3672 3 16.286 4.91878 16.286 7.28571C17.8639 7.28571 19.1431 8.5649 19.1431 10.1429C19.1431 11.7208 17.8639 13 16.286 13H8.42885Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"18.5\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 18.5H3\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21 18.5H14.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 16V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
6530
|
+
"iconName": "cloud-api, cloud-network",
|
|
6531
|
+
"variant": {
|
|
6532
|
+
"join": "round",
|
|
6533
|
+
"filled": "off",
|
|
6534
|
+
"radius": "3",
|
|
6535
|
+
"stroke": "2"
|
|
6536
|
+
},
|
|
6537
|
+
"createdAt": "2026-01-09T16:01:07.432786+00:00",
|
|
6538
|
+
"packageName": "round-outlined-radius-3-stroke-2",
|
|
6539
|
+
"componentName": "IconCloudApi"
|
|
6540
|
+
},
|
|
6527
6541
|
{
|
|
6528
6542
|
"category": "Clouds",
|
|
6529
6543
|
"svg": "<path d=\"M5.14089 18.6429C3.30008 17.9052 2 16.1044 2 14C2 11.6807 3.57923 9.73012 5.72107 9.16506C6.08659 9.06863 6.39695 8.8162 6.55632 8.47342C7.50998 6.42217 9.58891 5 12 5C14.4111 5 16.49 6.42217 17.4437 8.47342C17.603 8.8162 17.9134 9.06863 18.2789 9.16506C20.4208 9.73012 22 11.6807 22 14C22 16.1044 20.6999 17.9052 18.8591 18.6429\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 17L11.3333 19.5L16 14.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-3-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.89",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1689,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 66,
|
|
@@ -273,9 +273,10 @@
|
|
|
273
273
|
]
|
|
274
274
|
},
|
|
275
275
|
"Clouds": {
|
|
276
|
-
"count":
|
|
276
|
+
"count": 12,
|
|
277
277
|
"icons": [
|
|
278
278
|
"IconCloud",
|
|
279
|
+
"IconCloudApi",
|
|
279
280
|
"IconCloudCheck",
|
|
280
281
|
"IconCloudDownload",
|
|
281
282
|
"IconCloudOff",
|
|
@@ -2348,7 +2349,8 @@
|
|
|
2348
2349
|
"IconClosedCaptioning": "closed-captioning, cc",
|
|
2349
2350
|
"IconCloseQuote1": "close-quote-1, blockquote",
|
|
2350
2351
|
"IconCloseQuote2": "close-quote-2, blockquote",
|
|
2351
|
-
"IconCloud": "cloud
|
|
2352
|
+
"IconCloud": "cloud",
|
|
2353
|
+
"IconCloudApi": "cloud-api, cloud-network",
|
|
2352
2354
|
"IconCloudCheck": "cloud-check, save",
|
|
2353
2355
|
"IconCloudDownload": "cloud-download",
|
|
2354
2356
|
"IconCloudOff": "cloud-off, offline",
|
package/index.d.ts
CHANGED
|
@@ -464,6 +464,7 @@ export { IconCloseQuote1, default as IconCloseQuote1Default, } from "./IconClose
|
|
|
464
464
|
export { IconCloseQuote2, default as IconCloseQuote2Default, } from "./IconCloseQuote2";
|
|
465
465
|
export { IconClosedCaptioning, default as IconClosedCaptioningDefault, } from "./IconClosedCaptioning";
|
|
466
466
|
export { IconCloud, default as IconCloudDefault } from "./IconCloud";
|
|
467
|
+
export { IconCloudApi, default as IconCloudApiDefault } from "./IconCloudApi";
|
|
467
468
|
export { IconCloudCheck, default as IconCloudCheckDefault, } from "./IconCloudCheck";
|
|
468
469
|
export { IconCloudDownload, default as IconCloudDownloadDefault, } from "./IconCloudDownload";
|
|
469
470
|
export { IconCloudOff, default as IconCloudOffDefault } from "./IconCloudOff";
|