@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.249 → 1.1.250
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/IconCloudSimpleUpload/index.js +1 -1
- package/IconCloudSimpleUpload/index.js.map +1 -1
- package/IconCloudSimpleUpload/index.mjs +1 -1
- package/IconCloudSimpleUpload/index.mjs.map +1 -1
- package/filtered-icons.json +2 -2
- package/icons-index.json +2 -2
- 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 +2 -2
- package/tsx-icons.json +2 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var d=Object.create;var t=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,s)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of B(r))!x.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(s=f(r,n))||s.enumerable});return o};var l=(o,r,e)=>(e=o!=null?d(I(o)):{},a(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),g=o=>a(t({},"__esModule",{value:!0}),o);var L={};P(L,{IconCloudSimpleUpload:()=>c,default:()=>k});module.exports=g(L);var p=l(require("react"));var m=l(require("react")),i=require("react-native-svg"),u=({children:o,size:r=24,...e})=>m.default.createElement(i.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 C=require("react-native-svg"),c=o=>p.default.createElement(u,{...o},p.default.createElement(C.Path,{d:"M17.5 19.494C20.2834 19.3609 22.5 17.016 22.5 14.1429C22.5 11.1842 20.1495 8.78571 17.25 8.78571C16.6775 8.78571 16.1263 8.87923 15.6105 9.05211C14.4881 6.37545 11.8837 4.5 8.85 4.5C4.79071 4.5 1.5 7.85786 1.5 12C1.5 15.3036 3.59316 18.1082 6.5 19.1085",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M9.5 16L12 13.5L14.5 16M12 20.25V14.256",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),k=c;0&&(module.exports={IconCloudSimpleUpload});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconCloudSimpleUpload/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 IconCloudSimpleUpload: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 19.494C20.2834 19.3609 22.5 17.016 22.5 14.1429C22.5 11.1842 20.1495 8.78571 17.25 8.78571C16.6775 8.78571 16.1263 8.87923 15.6105 9.05211C14.4881 6.37545 11.8837 4.5 8.85 4.5C4.79071 4.5 1.5 7.85786 1.5 12C1.5 15.3036 3.59316 18.1082 6.5 19.
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudSimpleUpload/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 IconCloudSimpleUpload: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 19.494C20.2834 19.3609 22.5 17.016 22.5 14.1429C22.5 11.1842 20.1495 8.78571 17.25 8.78571C16.6775 8.78571 16.1263 8.87923 15.6105 9.05211C14.4881 6.37545 11.8837 4.5 8.85 4.5C4.79071 4.5 1.5 7.85786 1.5 12C1.5 15.3036 3.59316 18.1082 6.5 19.1085\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 16L12 13.5L14.5 16M12 20.25V14.256\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudSimpleUpload;\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,2BAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+PACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCloudSimpleUpload_exports","__export","IconCloudSimpleUpload","IconCloudSimpleUpload_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCloudSimpleUpload","props","React","CentralIconBase","IconCloudSimpleUpload_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({children:r,size:o=24,...p})=>C.createElement(s,{...p,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 t}from"react-native-svg";var a=r=>e.createElement(n,{...r},e.createElement(t,{d:"M17.5 19.494C20.2834 19.3609 22.5 17.016 22.5 14.1429C22.5 11.1842 20.1495 8.78571 17.25 8.78571C16.6775 8.78571 16.1263 8.87923 15.6105 9.05211C14.4881 6.37545 11.8837 4.5 8.85 4.5C4.79071 4.5 1.5 7.85786 1.5 12C1.5 15.3036 3.59316 18.1082 6.5 19.1085",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M9.5 16L12 13.5L14.5 16M12 20.25V14.256",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=a;export{a as IconCloudSimpleUpload,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconCloudSimpleUpload/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 IconCloudSimpleUpload: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 19.494C20.2834 19.3609 22.5 17.016 22.5 14.1429C22.5 11.1842 20.1495 8.78571 17.25 8.78571C16.6775 8.78571 16.1263 8.87923 15.6105 9.05211C14.4881 6.37545 11.8837 4.5 8.85 4.5C4.79071 4.5 1.5 7.85786 1.5 12C1.5 15.3036 3.59316 18.1082 6.5 19.
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudSimpleUpload/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 IconCloudSimpleUpload: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 19.494C20.2834 19.3609 22.5 17.016 22.5 14.1429C22.5 11.1842 20.1495 8.78571 17.25 8.78571C16.6775 8.78571 16.1263 8.87923 15.6105 9.05211C14.4881 6.37545 11.8837 4.5 8.85 4.5C4.79071 4.5 1.5 7.85786 1.5 12C1.5 15.3036 3.59316 18.1082 6.5 19.1085\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 16L12 13.5L14.5 16M12 20.25V14.256\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudSimpleUpload;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+PACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCloudSimpleUpload","props","React","CentralIconBase","IconCloudSimpleUpload_default"]}
|
package/filtered-icons.json
CHANGED
|
@@ -7520,7 +7520,7 @@
|
|
|
7520
7520
|
},
|
|
7521
7521
|
{
|
|
7522
7522
|
"category": "Clouds",
|
|
7523
|
-
"svg": "<path d=\"M17.5 19.494C20.2834 19.3609 22.5 17.016 22.5 14.1429C22.5 11.1842 20.1495 8.78571 17.25 8.78571C16.6775 8.78571 16.1263 8.87923 15.6105 9.05211C14.4881 6.37545 11.8837 4.5 8.85 4.5C4.79071 4.5 1.5 7.85786 1.5 12C1.5 15.3036 3.59316 18.1082 6.5 19.
|
|
7523
|
+
"svg": "<path d=\"M17.5 19.494C20.2834 19.3609 22.5 17.016 22.5 14.1429C22.5 11.1842 20.1495 8.78571 17.25 8.78571C16.6775 8.78571 16.1263 8.87923 15.6105 9.05211C14.4881 6.37545 11.8837 4.5 8.85 4.5C4.79071 4.5 1.5 7.85786 1.5 12C1.5 15.3036 3.59316 18.1082 6.5 19.1085\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 16L12 13.5L14.5 16M12 20.25V14.256\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
7524
7524
|
"iconName": "cloud-simple-upload",
|
|
7525
7525
|
"variant": {
|
|
7526
7526
|
"join": "round",
|
|
@@ -14927,7 +14927,7 @@
|
|
|
14927
14927
|
{
|
|
14928
14928
|
"category": "Security",
|
|
14929
14929
|
"svg": "<path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M13.5 13.1632C14.6825 12.6015 15.5 11.3962 15.5 10C15.5 8.067 13.933 6.5 12 6.5C10.067 6.5 8.5 8.067 8.5 10C8.5 11.3962 9.31753 12.6015 10.5 13.1632V16C10.5 16.8284 11.1716 17.5 12 17.5C12.8284 17.5 13.5 16.8284 13.5 16V13.1632Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
14930
|
-
"iconName": "keyhole",
|
|
14930
|
+
"iconName": "keyhole, lock, unlock",
|
|
14931
14931
|
"variant": {
|
|
14932
14932
|
"join": "round",
|
|
14933
14933
|
"filled": "off",
|
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.250",
|
|
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';",
|
|
@@ -3289,7 +3289,7 @@
|
|
|
3289
3289
|
"IconKeyboardDown": "keyboard-down",
|
|
3290
3290
|
"IconKeyboardUp": "keyboard-up",
|
|
3291
3291
|
"IconKeyframe": "keyframe, rhombus",
|
|
3292
|
-
"IconKeyhole": "keyhole",
|
|
3292
|
+
"IconKeyhole": "keyhole, lock, unlock",
|
|
3293
3293
|
"IconKeyhole2": "keyhole-2, lock, unlock",
|
|
3294
3294
|
"IconKickball": "kickball",
|
|
3295
3295
|
"IconLab": "lab",
|