@central-icons-react-native/round-filled-radius-1-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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCloudApi: FC<CentralIconBaseProps>;
4
+ export default IconCloudApi;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let C of B(r))!v.call(o,C)&&C!==e&&t(o,C,{get:()=>r[C],enumerable:!(p=d(r,C))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(t({},"__esModule",{value:!0}),o);var H={};x(H,{IconCloudApi:()=>i,default:()=>g});module.exports=P(H);var n=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.Svg,{...e,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"),i=o=>n.default.createElement(c,{...o},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.6164 2 16.7874 3.9013 17.21 6.39746C18.8939 6.81147 20.1434 8.33097 20.1436 10.1426C20.1436 12.2728 18.4163 13.9999 16.2861 14H13V15.1455C14.1288 15.4815 15.0185 16.3712 15.3545 17.5H21C21.5523 17.5 22 17.9477 22 18.5C22 19.0523 21.5523 19.5 21 19.5H15.3545C14.9242 20.9457 13.5855 22 12 22C10.4145 22 9.07583 20.9457 8.64551 19.5H3C2.44772 19.5 2 19.0523 2 18.5C2 17.9477 2.44772 17.5 3 17.5H8.64551C8.9815 16.3712 9.87124 15.4815 11 15.1455V14H8.42871C5.90409 13.9999 3.8575 11.9533 3.85742 9.42871C3.85742 7.32039 5.28387 5.54639 7.22461 5.01758C8.07303 3.23431 9.8914 2.00011 12 2ZM12 17C11.1716 17 10.5 17.6716 10.5 18.5C10.5 19.3284 11.1716 20 12 20C12.8284 20 13.5 19.3284 13.5 18.5C13.5 17.6716 12.8284 17 12 17Z",fill:"currentColor"})),g=i;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 { Path } from \"react-native-svg\";\n\nexport const IconCloudApi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.6164 2 16.7874 3.9013 17.21 6.39746C18.8939 6.81147 20.1434 8.33097 20.1436 10.1426C20.1436 12.2728 18.4163 13.9999 16.2861 14H13V15.1455C14.1288 15.4815 15.0185 16.3712 15.3545 17.5H21C21.5523 17.5 22 17.9477 22 18.5C22 19.0523 21.5523 19.5 21 19.5H15.3545C14.9242 20.9457 13.5855 22 12 22C10.4145 22 9.07583 20.9457 8.64551 19.5H3C2.44772 19.5 2 19.0523 2 18.5C2 17.9477 2.44772 17.5 3 17.5H8.64551C8.9815 16.3712 9.87124 15.4815 11 15.1455V14H8.42871C5.90409 13.9999 3.8575 11.9533 3.85742 9.42871C3.85742 7.32039 5.28387 5.54639 7.22461 5.01758C8.07303 3.23431 9.8914 2.00011 12 2ZM12 17C11.1716 17 10.5 17.6716 10.5 18.5C10.5 19.3284 11.1716 20 12 20C12.8284 20 13.5 19.3284 13.5 18.5C13.5 17.6716 12.8284 17 12 17Z\"\n fill=\"currentColor\"\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,EAAqB,4BAERC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,4tBACF,KAAK,eACP,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 C from"react";import n from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>n.createElement(p,{...t,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 l}from"react-native-svg";var a=r=>C.createElement(e,{...r},C.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.6164 2 16.7874 3.9013 17.21 6.39746C18.8939 6.81147 20.1434 8.33097 20.1436 10.1426C20.1436 12.2728 18.4163 13.9999 16.2861 14H13V15.1455C14.1288 15.4815 15.0185 16.3712 15.3545 17.5H21C21.5523 17.5 22 17.9477 22 18.5C22 19.0523 21.5523 19.5 21 19.5H15.3545C14.9242 20.9457 13.5855 22 12 22C10.4145 22 9.07583 20.9457 8.64551 19.5H3C2.44772 19.5 2 19.0523 2 18.5C2 17.9477 2.44772 17.5 3 17.5H8.64551C8.9815 16.3712 9.87124 15.4815 11 15.1455V14H8.42871C5.90409 13.9999 3.8575 11.9533 3.85742 9.42871C3.85742 7.32039 5.28387 5.54639 7.22461 5.01758C8.07303 3.23431 9.8914 2.00011 12 2ZM12 17C11.1716 17 10.5 17.6716 10.5 18.5C10.5 19.3284 11.1716 20 12 20C12.8284 20 13.5 19.3284 13.5 18.5C13.5 17.6716 12.8284 17 12 17Z",fill:"currentColor"})),v=a;export{a as IconCloudApi,v 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 { Path } from \"react-native-svg\";\n\nexport const IconCloudApi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.6164 2 16.7874 3.9013 17.21 6.39746C18.8939 6.81147 20.1434 8.33097 20.1436 10.1426C20.1436 12.2728 18.4163 13.9999 16.2861 14H13V15.1455C14.1288 15.4815 15.0185 16.3712 15.3545 17.5H21C21.5523 17.5 22 17.9477 22 18.5C22 19.0523 21.5523 19.5 21 19.5H15.3545C14.9242 20.9457 13.5855 22 12 22C10.4145 22 9.07583 20.9457 8.64551 19.5H3C2.44772 19.5 2 19.0523 2 18.5C2 17.9477 2.44772 17.5 3 17.5H8.64551C8.9815 16.3712 9.87124 15.4815 11 15.1455V14H8.42871C5.90409 13.9999 3.8575 11.9533 3.85742 9.42871C3.85742 7.32039 5.28387 5.54639 7.22461 5.01758C8.07303 3.23431 9.8914 2.00011 12 2ZM12 17C11.1716 17 10.5 17.6716 10.5 18.5C10.5 19.3284 11.1716 20 12 20C12.8284 20 13.5 19.3284 13.5 18.5C13.5 17.6716 12.8284 17 12 17Z\"\n fill=\"currentColor\"\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,QAAAG,MAAY,mBAEd,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,4tBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCloudApi","props","React","CentralIconBase","IconCloudApi_default"]}
package/README.md CHANGED
@@ -396,6 +396,7 @@ Below is a complete list of available icons:
396
396
  ### Clouds
397
397
 
398
398
  - IconCloud
399
+ - IconCloudApi
399
400
  - IconCloudCheck
400
401
  - IconCloudDownload
401
402
  - IconCloudOff
@@ -6513,7 +6513,7 @@
6513
6513
  {
6514
6514
  "category": "Clouds",
6515
6515
  "svg": "<path d=\"M12 4C9.14187 4 6.68595 5.71241 5.59824 8.16485C2.96041 8.79651 1 11.1686 1 14C1 17.3137 3.68629 20 7 20H18C20.7614 20 23 17.7614 23 15C23 12.5603 21.2527 10.5287 18.9412 10.0884C18.4944 6.65314 15.5571 4 12 4Z\" fill=\"currentColor\"/>",
6516
- "iconName": "cloud-",
6516
+ "iconName": "cloud",
6517
6517
  "variant": {
6518
6518
  "join": "round",
6519
6519
  "filled": "on",
@@ -6524,6 +6524,20 @@
6524
6524
  "packageName": "round-filled-radius-1-stroke-2",
6525
6525
  "componentName": "IconCloud"
6526
6526
  },
6527
+ {
6528
+ "category": "Clouds",
6529
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C14.6164 2 16.7874 3.9013 17.21 6.39746C18.8939 6.81147 20.1434 8.33097 20.1436 10.1426C20.1436 12.2728 18.4163 13.9999 16.2861 14H13V15.1455C14.1288 15.4815 15.0185 16.3712 15.3545 17.5H21C21.5523 17.5 22 17.9477 22 18.5C22 19.0523 21.5523 19.5 21 19.5H15.3545C14.9242 20.9457 13.5855 22 12 22C10.4145 22 9.07583 20.9457 8.64551 19.5H3C2.44772 19.5 2 19.0523 2 18.5C2 17.9477 2.44772 17.5 3 17.5H8.64551C8.9815 16.3712 9.87124 15.4815 11 15.1455V14H8.42871C5.90409 13.9999 3.8575 11.9533 3.85742 9.42871C3.85742 7.32039 5.28387 5.54639 7.22461 5.01758C8.07303 3.23431 9.8914 2.00011 12 2ZM12 17C11.1716 17 10.5 17.6716 10.5 18.5C10.5 19.3284 11.1716 20 12 20C12.8284 20 13.5 19.3284 13.5 18.5C13.5 17.6716 12.8284 17 12 17Z\" fill=\"currentColor\"/>",
6530
+ "iconName": "cloud-api, cloud-network",
6531
+ "variant": {
6532
+ "join": "round",
6533
+ "filled": "on",
6534
+ "radius": "1",
6535
+ "stroke": "2"
6536
+ },
6537
+ "createdAt": "2026-01-09T16:01:07.432786+00:00",
6538
+ "packageName": "round-filled-radius-1-stroke-2",
6539
+ "componentName": "IconCloudApi"
6540
+ },
6527
6541
  {
6528
6542
  "category": "Clouds",
6529
6543
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 20C3.68629 20 1 17.3137 1 14C1 11.342 2.72831 9.08774 5.12243 8.29963C5.41842 8.20219 5.66814 7.99536 5.81435 7.72017C6.99026 5.50705 9.31914 4 12 4C14.6809 4 17.0097 5.50705 18.1856 7.72017C18.3319 7.99536 18.5816 8.20219 18.8776 8.29963C21.2717 9.08774 23 11.342 23 14C23 17.3137 20.3137 20 17 20H7ZM15.6579 11.1141C15.9971 10.7507 15.9775 10.1812 15.6141 9.84205C15.2507 9.5029 14.6812 9.52254 14.3421 9.88591L10.3333 14.181L8.65795 12.3859C8.3188 12.0225 7.74929 12.0029 7.38591 12.3421C7.02254 12.6812 7.0029 13.2507 7.34205 13.6141L9.67538 16.1141C9.8456 16.2965 10.0839 16.4 10.3333 16.4C10.5828 16.4 10.8211 16.2965 10.9913 16.1141L15.6579 11.1141Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -465,6 +465,7 @@ export type CentralIconName =
465
465
  | "IconCloseQuote1"
466
466
  | "IconCloseQuote2"
467
467
  | "IconCloud"
468
+ | "IconCloudApi"
468
469
  | "IconCloudCheck"
469
470
  | "IconCloudDownload"
470
471
  | "IconCloudOff"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-1-stroke-2",
3
- "version": "1.1.88",
3
+ "version": "1.1.89",
4
4
  "style": "round-filled-radius-1-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-1-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": 1688,
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": 11,
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";