@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.233 → 1.1.234
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/IconCloudSync2/index.d.ts +4 -0
- package/IconCloudSync2/index.js +2 -0
- package/IconCloudSync2/index.js.map +1 -0
- package/IconCloudSync2/index.mjs +2 -0
- package/IconCloudSync2/index.mjs.map +1 -0
- package/IconCloudTransfer/index.d.ts +4 -0
- package/IconCloudTransfer/index.js +2 -0
- package/IconCloudTransfer/index.js.map +1 -0
- package/IconCloudTransfer/index.mjs +2 -0
- package/IconCloudTransfer/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 +7 -3
- 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 i=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!x.call(r,n)&&n!==t&&p(r,n,{get:()=>o[n],enumerable:!(l=d(o,n))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?i(I(r)):{},s(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>s(p({},"__esModule",{value:!0}),r);var v={};P(v,{IconCloudSync2:()=>u,default:()=>h});module.exports=g(v);var e=m(require("react"));var a=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>a.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),u=r=>e.default.createElement(f,{...r},e.default.createElement(C.Path,{d:"M8 15.4999C8 13.2908 9.79081 11.5 11.9999 11.5M15.9998 15.4999C15.9998 17.709 14.209 19.4998 11.9999 19.4998",stroke:"currentColor",strokeWidth:"1.12497"}),e.default.createElement(C.Path,{d:"M14.5 11.5L12 13.5V11V9.39014L14.5 11.5Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M9.5 19.5L12 17.5V19V21.5L9.5 19.5Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M7 18.5H6.85714C3.89847 18.5 1.5 16.1015 1.5 13.1429C1.5 10.4292 3.51767 8.18681 6.13466 7.83402C7.00338 5.31198 9.39723 3.5 12.2143 3.5C15.7647 3.5 18.6429 6.37817 18.6429 9.92857C21.0098 9.92857 22.9286 11.8474 22.9286 14.2143C22.9286 16.5812 21.0098 18.5 18.6429 18.5H18.5",stroke:"currentColor"})),h=u;0&&(module.exports={IconCloudSync2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudSync2/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 IconCloudSync2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 15.4999C8 13.2908 9.79081 11.5 11.9999 11.5M15.9998 15.4999C15.9998 17.709 14.209 19.4998 11.9999 19.4998\"\n stroke=\"currentColor\"\n strokeWidth=\"1.12497\"\n />\n <Path d=\"M14.5 11.5L12 13.5V11V9.39014L14.5 11.5Z\" fill=\"currentColor\" />\n <Path d=\"M9.5 19.5L12 17.5V19V21.5L9.5 19.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M7 18.5H6.85714C3.89847 18.5 1.5 16.1015 1.5 13.1429C1.5 10.4292 3.51767 8.18681 6.13466 7.83402C7.00338 5.31198 9.39723 3.5 12.2143 3.5C15.7647 3.5 18.6429 6.37817 18.6429 9.92857C21.0098 9.92857 22.9286 11.8474 22.9286 14.2143C22.9286 16.5812 21.0098 18.5 18.6429 18.5H18.5\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudSync2;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+GACF,OAAO,eACP,YAAY,UACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,2CAA2C,KAAK,eAAe,EACvE,EAAAA,QAAA,cAAC,QAAK,EAAE,sCAAsC,KAAK,eAAe,EAClE,EAAAA,QAAA,cAAC,QACC,EAAE,sRACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconCloudSync2_exports","__export","IconCloudSync2","IconCloudSync2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCloudSync2","props","React","CentralIconBase","IconCloudSync2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(l,{...C,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 t}from"react-native-svg";var s=e=>o.createElement(n,{...e},o.createElement(t,{d:"M8 15.4999C8 13.2908 9.79081 11.5 11.9999 11.5M15.9998 15.4999C15.9998 17.709 14.209 19.4998 11.9999 19.4998",stroke:"currentColor",strokeWidth:"1.12497"}),o.createElement(t,{d:"M14.5 11.5L12 13.5V11V9.39014L14.5 11.5Z",fill:"currentColor"}),o.createElement(t,{d:"M9.5 19.5L12 17.5V19V21.5L9.5 19.5Z",fill:"currentColor"}),o.createElement(t,{d:"M7 18.5H6.85714C3.89847 18.5 1.5 16.1015 1.5 13.1429C1.5 10.4292 3.51767 8.18681 6.13466 7.83402C7.00338 5.31198 9.39723 3.5 12.2143 3.5C15.7647 3.5 18.6429 6.37817 18.6429 9.92857C21.0098 9.92857 22.9286 11.8474 22.9286 14.2143C22.9286 16.5812 21.0098 18.5 18.6429 18.5H18.5",stroke:"currentColor"})),x=s;export{s as IconCloudSync2,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudSync2/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 IconCloudSync2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 15.4999C8 13.2908 9.79081 11.5 11.9999 11.5M15.9998 15.4999C15.9998 17.709 14.209 19.4998 11.9999 19.4998\"\n stroke=\"currentColor\"\n strokeWidth=\"1.12497\"\n />\n <Path d=\"M14.5 11.5L12 13.5V11V9.39014L14.5 11.5Z\" fill=\"currentColor\" />\n <Path d=\"M9.5 19.5L12 17.5V19V21.5L9.5 19.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M7 18.5H6.85714C3.89847 18.5 1.5 16.1015 1.5 13.1429C1.5 10.4292 3.51767 8.18681 6.13466 7.83402C7.00338 5.31198 9.39723 3.5 12.2143 3.5C15.7647 3.5 18.6429 6.37817 18.6429 9.92857C21.0098 9.92857 22.9286 11.8474 22.9286 14.2143C22.9286 16.5812 21.0098 18.5 18.6429 18.5H18.5\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudSync2;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+GACF,OAAO,eACP,YAAY,UACd,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,2CAA2C,KAAK,eAAe,EACvEG,EAAA,cAACH,EAAA,CAAK,EAAE,sCAAsC,KAAK,eAAe,EAClEG,EAAA,cAACH,EAAA,CACC,EAAE,sRACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCloudSync2","props","React","CentralIconBase","IconCloudSync2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of x(o))!g.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=I(o,e))||a.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(P(r)):{},s(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>s(n({},"__esModule",{value:!0}),r);var h={};i(h,{IconCloudTransfer:()=>u,default:()=>v});module.exports=d(h);var p=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>m.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),u=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M13.05 18.4998H6.75C3.8505 18.4998 1.5 16.1493 1.5 13.2498C1.5 10.5904 3.47732 8.39288 6.04196 8.04714C6.89331 5.57554 9.23928 3.7998 12 3.7998C15.4794 3.7998 18.3 6.62041 18.3 10.0998C20.6196 10.0998 22.5 11.9802 22.5 14.2998C22.5 16.6194 20.6196 18.4998 18.3 18.4998L17 18.4998",stroke:"currentColor"}),p.default.createElement(C.Path,{d:"M10 14.9999L13.5 18.5L10 21.9999",stroke:"currentColor"})),v=u;0&&(module.exports={IconCloudTransfer});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudTransfer/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 IconCloudTransfer: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.05 18.4998H6.75C3.8505 18.4998 1.5 16.1493 1.5 13.2498C1.5 10.5904 3.47732 8.39288 6.04196 8.04714C6.89331 5.57554 9.23928 3.7998 12 3.7998C15.4794 3.7998 18.3 6.62041 18.3 10.0998C20.6196 10.0998 22.5 11.9802 22.5 14.2998C22.5 16.6194 20.6196 18.4998 18.3 18.4998L17 18.4998\"\n stroke=\"currentColor\"\n />\n <Path d=\"M10 14.9999L13.5 18.5L10 21.9999\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudTransfer;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,0RACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,mCAAmC,OAAO,eAAe,CACnE,EAIGE,EAAQJ","names":["IconCloudTransfer_exports","__export","IconCloudTransfer","IconCloudTransfer_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCloudTransfer","props","React","CentralIconBase","IconCloudTransfer_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(a,{...p,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 n}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(n,{d:"M13.05 18.4998H6.75C3.8505 18.4998 1.5 16.1493 1.5 13.2498C1.5 10.5904 3.47732 8.39288 6.04196 8.04714C6.89331 5.57554 9.23928 3.7998 12 3.7998C15.4794 3.7998 18.3 6.62041 18.3 10.0998C20.6196 10.0998 22.5 11.9802 22.5 14.2998C22.5 16.6194 20.6196 18.4998 18.3 18.4998L17 18.4998",stroke:"currentColor"}),t.createElement(n,{d:"M10 14.9999L13.5 18.5L10 21.9999",stroke:"currentColor"})),g=s;export{s as IconCloudTransfer,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudTransfer/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 IconCloudTransfer: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.05 18.4998H6.75C3.8505 18.4998 1.5 16.1493 1.5 13.2498C1.5 10.5904 3.47732 8.39288 6.04196 8.04714C6.89331 5.57554 9.23928 3.7998 12 3.7998C15.4794 3.7998 18.3 6.62041 18.3 10.0998C20.6196 10.0998 22.5 11.9802 22.5 14.2998C22.5 16.6194 20.6196 18.4998 18.3 18.4998L17 18.4998\"\n stroke=\"currentColor\"\n />\n <Path d=\"M10 14.9999L13.5 18.5L10 21.9999\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudTransfer;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,0RACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,mCAAmC,OAAO,eAAe,CACnE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCloudTransfer","props","React","CentralIconBase","IconCloudTransfer_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -7504,6 +7504,34 @@
|
|
|
7504
7504
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
7505
7505
|
"componentName": "IconCloudSync"
|
|
7506
7506
|
},
|
|
7507
|
+
{
|
|
7508
|
+
"category": "Clouds",
|
|
7509
|
+
"svg": "<path d=\"M8 15.4999C8 13.2908 9.79081 11.5 11.9999 11.5M15.9998 15.4999C15.9998 17.709 14.209 19.4998 11.9999 19.4998\" stroke=\"currentColor\" stroke-width=\"1.12497\"/><path d=\"M14.5 11.5L12 13.5V11V9.39014L14.5 11.5Z\" fill=\"currentColor\"/><path d=\"M9.5 19.5L12 17.5V19V21.5L9.5 19.5Z\" fill=\"currentColor\"/><path d=\"M7 18.5H6.85714C3.89847 18.5 1.5 16.1015 1.5 13.1429C1.5 10.4292 3.51767 8.18681 6.13466 7.83402C7.00338 5.31198 9.39723 3.5 12.2143 3.5C15.7647 3.5 18.6429 6.37817 18.6429 9.92857C21.0098 9.92857 22.9286 11.8474 22.9286 14.2143C22.9286 16.5812 21.0098 18.5 18.6429 18.5H18.5\" stroke=\"currentColor\"/>",
|
|
7510
|
+
"iconName": "cloud-sync-2",
|
|
7511
|
+
"variant": {
|
|
7512
|
+
"join": "square",
|
|
7513
|
+
"filled": "off",
|
|
7514
|
+
"radius": "0",
|
|
7515
|
+
"stroke": "1"
|
|
7516
|
+
},
|
|
7517
|
+
"createdAt": "2026-05-13T10:01:55.225159+00:00",
|
|
7518
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
7519
|
+
"componentName": "IconCloudSync2"
|
|
7520
|
+
},
|
|
7521
|
+
{
|
|
7522
|
+
"category": "Clouds",
|
|
7523
|
+
"svg": "<path d=\"M13.05 18.4998H6.75C3.8505 18.4998 1.5 16.1493 1.5 13.2498C1.5 10.5904 3.47732 8.39288 6.04196 8.04714C6.89331 5.57554 9.23928 3.7998 12 3.7998C15.4794 3.7998 18.3 6.62041 18.3 10.0998C20.6196 10.0998 22.5 11.9802 22.5 14.2998C22.5 16.6194 20.6196 18.4998 18.3 18.4998L17 18.4998\" stroke=\"currentColor\"/><path d=\"M10 14.9999L13.5 18.5L10 21.9999\" stroke=\"currentColor\"/>",
|
|
7524
|
+
"iconName": "cloud-transfer, move-data, move-cloud-files",
|
|
7525
|
+
"variant": {
|
|
7526
|
+
"join": "square",
|
|
7527
|
+
"filled": "off",
|
|
7528
|
+
"radius": "0",
|
|
7529
|
+
"stroke": "1"
|
|
7530
|
+
},
|
|
7531
|
+
"createdAt": "2026-05-13T10:01:55.225159+00:00",
|
|
7532
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
7533
|
+
"componentName": "IconCloudTransfer"
|
|
7534
|
+
},
|
|
7507
7535
|
{
|
|
7508
7536
|
"category": "Clouds",
|
|
7509
7537
|
"svg": "<path d=\"M9.5 19.5H7C3.96243 19.5 1.5 17.0376 1.5 14C1.5 11.3187 3.4187 9.08552 5.95801 8.59857C6.91321 6.19737 9.25838 4.5 12 4.5C15.4303 4.5 18.24 7.15724 18.483 10.5256C20.7411 10.7666 22.5 12.6779 22.5 15C22.5 17.4853 20.4853 19.5 18 19.5H14.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M14.5 14.25L12 11.75L9.5 14.25\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12 19.5V12.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.234",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1992,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -313,7 +313,7 @@
|
|
|
313
313
|
]
|
|
314
314
|
},
|
|
315
315
|
"Clouds": {
|
|
316
|
-
"count":
|
|
316
|
+
"count": 15,
|
|
317
317
|
"icons": [
|
|
318
318
|
"IconCloud",
|
|
319
319
|
"IconCloud2",
|
|
@@ -327,6 +327,8 @@
|
|
|
327
327
|
"IconCloudSimpleDownload",
|
|
328
328
|
"IconCloudSimpleUpload",
|
|
329
329
|
"IconCloudSync",
|
|
330
|
+
"IconCloudSync2",
|
|
331
|
+
"IconCloudTransfer",
|
|
330
332
|
"IconCloudUpload"
|
|
331
333
|
]
|
|
332
334
|
},
|
|
@@ -2727,6 +2729,8 @@
|
|
|
2727
2729
|
"IconCloudSimpleUpload": "cloud-simple-upload",
|
|
2728
2730
|
"IconCloudSnow": "cloud-snow",
|
|
2729
2731
|
"IconCloudSync": "cloud-sync",
|
|
2732
|
+
"IconCloudSync2": "cloud-sync-2",
|
|
2733
|
+
"IconCloudTransfer": "cloud-transfer, move-data, move-cloud-files",
|
|
2730
2734
|
"IconCloudUpload": "cloud-upload",
|
|
2731
2735
|
"IconCloudWeather": "cloud-weather, clouds",
|
|
2732
2736
|
"IconCloudy": "cloudy, clouds",
|
package/index.d.ts
CHANGED
|
@@ -534,6 +534,8 @@ export { IconCloudSimpleDownload, default as IconCloudSimpleDownloadDefault, } f
|
|
|
534
534
|
export { IconCloudSimpleUpload, default as IconCloudSimpleUploadDefault, } from "./IconCloudSimpleUpload";
|
|
535
535
|
export { IconCloudSnow, default as IconCloudSnowDefault, } from "./IconCloudSnow";
|
|
536
536
|
export { IconCloudSync, default as IconCloudSyncDefault, } from "./IconCloudSync";
|
|
537
|
+
export { IconCloudSync2, default as IconCloudSync2Default, } from "./IconCloudSync2";
|
|
538
|
+
export { IconCloudTransfer, default as IconCloudTransferDefault, } from "./IconCloudTransfer";
|
|
537
539
|
export { IconCloudUpload, default as IconCloudUploadDefault, } from "./IconCloudUpload";
|
|
538
540
|
export { IconCloudWeather, default as IconCloudWeatherDefault, } from "./IconCloudWeather";
|
|
539
541
|
export { IconCloudy, default as IconCloudyDefault } from "./IconCloudy";
|