@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.274 → 1.1.275
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/IconFolderBookmarks/index.js +2 -2
- package/IconFolderBookmarks/index.js.map +3 -3
- package/IconFolderBookmarks/index.mjs +2 -2
- package/IconFolderBookmarks/index.mjs.map +3 -3
- package/IconFolderCloud/index.js +2 -2
- package/IconFolderCloud/index.js.map +3 -3
- package/IconFolderCloud/index.mjs +2 -2
- package/IconFolderCloud/index.mjs.map +3 -3
- package/IconMoveFolder/index.js +2 -2
- package/IconMoveFolder/index.js.map +3 -3
- package/IconMoveFolder/index.mjs +2 -2
- package/IconMoveFolder/index.mjs.map +3 -3
- package/IconMoveFolderInside/index.d.ts +4 -0
- package/IconMoveFolderInside/index.js +3 -0
- package/IconMoveFolderInside/index.js.map +11 -0
- package/IconMoveFolderInside/index.mjs +3 -0
- package/IconMoveFolderInside/index.mjs.map +11 -0
- package/README.md +1 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +1 -0
- package/index.js +3 -0
- package/index.mjs +1 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var F=Object.create;var{getPrototypeOf:H,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:V}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var h,y,v=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var d=r?h??=new WeakMap:y??=new WeakMap,f=d.get(o);if(f)return f}e=o!=null?F(H(o)):{};let l=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let p of c(o))if(!i.call(l,p))t(l,p,{get:u.bind(o,p),enumerable:!0});if(n)d.set(o,l);return l},B=(o)=>{var r=(s??=new WeakMap).get(o),e;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of c(o))if(!i.call(r,n))t(r,n,{get:u.bind(o,n),enumerable:!(e=V(o,n))||e.enumerable})}return s.set(o,r),r},s;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var I=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var L={};I(L,{CentralIconBase:()=>a});module.exports=B(L);var x=v(require("react")),P=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return x.default.createElement(P.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 k={};I(k,{default:()=>w,IconFolderBookmarks:()=>g});module.exports=B(k);var C=v(require("react"));var m=require("react-native-svg"),g=(o)=>{return C.default.createElement(a,{...o},C.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M2 5.5C2 4.11929 3.11929 3 4.5 3H8.92963C9.76551 3 10.5461 3.41775 11.0098 4.11325L11.8223 5.33205C12.1005 5.74935 12.5688 6 13.0704 6H19.5C20.8807 6 22 7.11929 22 8.5V17.5C22 18.8807 20.8807 20 19.5 20H9V14C9 12.8954 8.10457 12 7 12H2V5.5Z",fill:"currentColor"}),C.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 14.5C1 13.6716 1.67157 13 2.5 13H6.5C7.32843 13 8 13.6716 8 14.5V20.5C8 20.6733 7.91027 20.8342 7.76287 20.9253C7.61546 21.0164 7.43139 21.0247 7.27639 20.9472L4.5 19.559L1.72361 20.9472C1.56861 21.0247 1.38454 21.0164 1.23713 20.9253C1.08973 20.8342 1 20.6733 1 20.5V14.5Z",fill:"currentColor"}))},w=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=DC4B12CA384BAA7F64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderBookmarks/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderBookmarks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 5.5C2 4.11929 3.11929 3 4.5 3H8.92963C9.76551 3 10.5461 3.41775 11.0098 4.11325L11.8223 5.33205C12.1005 5.74935 12.5688 6 13.0704 6H19.5C20.8807 6 22 7.11929 22 8.5V17.5C22 18.8807 20.8807 20 19.5 20H9V14C9 12.8954 8.10457 12 7 12H2V5.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 14.5C1 13.6716 1.67157 13 2.5 13H6.5C7.32843 13 8 13.6716 8 14.5V20.5C8 20.6733 7.91027 20.8342 7.76287 20.9253C7.61546 21.0164 7.43139 21.0247 7.27639 20.9472L4.5 19.559L1.72361 20.9472C1.56861 21.0247 1.38454 21.0164 1.23713 20.9253C1.08973 20.8342 1 20.6733 1 20.5V14.
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderBookmarks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 5.5C2 4.11929 3.11929 3 4.5 3H8.92963C9.76551 3 10.5461 3.41775 11.0098 4.11325L11.8223 5.33205C12.1005 5.74935 12.5688 6 13.0704 6H19.5C20.8807 6 22 7.11929 22 8.5V17.5C22 18.8807 20.8807 20 19.5 20H9V14C9 12.8954 8.10457 12 7 12H2V5.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 14.5C1 13.6716 1.67157 13 2.5 13H6.5C7.32843 13 8 13.6716 8 14.5V20.5C8 20.6733 7.91027 20.8342 7.76287 20.9253C7.61546 21.0164 7.43139 21.0247 7.27639 20.9472L4.5 19.559L1.72361 20.9472C1.56861 21.0247 1.38454 21.0164 1.23713 20.9253C1.08973 20.8342 1 20.6733 1 20.5V14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderBookmarks;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAA8qB,EAA9qB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mPAAmP,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uRAAuR,KAAK,eAAc,CAAI,GAGxqB",
|
|
9
|
+
"debugId": "DC4B12CA384BAA7F64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import C from"react";import{Svg as p}from"react-native-svg";var n=({children:r,size:o=24,...l})=>{return C.createElement(p,{...l,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import e from"react";import{Path as t}from"react-native-svg";var a=(r)=>{return e.createElement(n,{...r},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M2 5.5C2 4.11929 3.11929 3 4.5 3H8.92963C9.76551 3 10.5461 3.41775 11.0098 4.11325L11.8223 5.33205C12.1005 5.74935 12.5688 6 13.0704 6H19.5C20.8807 6 22 7.11929 22 8.5V17.5C22 18.8807 20.8807 20 19.5 20H9V14C9 12.8954 8.10457 12 7 12H2V5.5Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 14.5C1 13.6716 1.67157 13 2.5 13H6.5C7.32843 13 8 13.6716 8 14.5V20.5C8 20.6733 7.91027 20.8342 7.76287 20.9253C7.61546 21.0164 7.43139 21.0247 7.27639 20.9472L4.5 19.559L1.72361 20.9472C1.56861 21.0247 1.38454 21.0164 1.23713 20.9253C1.08973 20.8342 1 20.6733 1 20.5V14.5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconFolderBookmarks};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=0B5957D6C9FC778964756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderBookmarks/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderBookmarks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 5.5C2 4.11929 3.11929 3 4.5 3H8.92963C9.76551 3 10.5461 3.41775 11.0098 4.11325L11.8223 5.33205C12.1005 5.74935 12.5688 6 13.0704 6H19.5C20.8807 6 22 7.11929 22 8.5V17.5C22 18.8807 20.8807 20 19.5 20H9V14C9 12.8954 8.10457 12 7 12H2V5.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 14.5C1 13.6716 1.67157 13 2.5 13H6.5C7.32843 13 8 13.6716 8 14.5V20.5C8 20.6733 7.91027 20.8342 7.76287 20.9253C7.61546 21.0164 7.43139 21.0247 7.27639 20.9472L4.5 19.559L1.72361 20.9472C1.56861 21.0247 1.38454 21.0164 1.23713 20.9253C1.08973 20.8342 1 20.6733 1 20.5V14.
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderBookmarks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 5.5C2 4.11929 3.11929 3 4.5 3H8.92963C9.76551 3 10.5461 3.41775 11.0098 4.11325L11.8223 5.33205C12.1005 5.74935 12.5688 6 13.0704 6H19.5C20.8807 6 22 7.11929 22 8.5V17.5C22 18.8807 20.8807 20 19.5 20H9V14C9 12.8954 8.10457 12 7 12H2V5.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 14.5C1 13.6716 1.67157 13 2.5 13H6.5C7.32843 13 8 13.6716 8 14.5V20.5C8 20.6733 7.91027 20.8342 7.76287 20.9253C7.61546 21.0164 7.43139 21.0247 7.27639 20.9472L4.5 19.559L1.72361 20.9472C1.56861 21.0247 1.38454 21.0164 1.23713 20.9253C1.08973 20.8342 1 20.6733 1 20.5V14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderBookmarks;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA8qB,EAA9qB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uRAAuR,KAAK,eAAc,CAAI,GAGxqB",
|
|
9
|
+
"debugId": "0B5957D6C9FC778964756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconFolderCloud/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var F=Object.create;var{getPrototypeOf:
|
|
1
|
+
var F=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:y}=Object,d=Object.prototype.hasOwnProperty;function i(o){return this[o]}var H,S,B=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var f=r?H??=new WeakMap:S??=new WeakMap,s=f.get(o);if(s)return s}e=o!=null?F(h(o)):{};let C=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let p of u(o))if(!d.call(C,p))t(C,p,{get:i.bind(o,p),enumerable:!0});if(n)f.set(o,C);return C},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of u(o))if(!d.call(r,n))t(r,n,{get:i.bind(o,n),enumerable:!(e=y(o,n))||e.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function w(o,r){this[o]=b.bind(null,r)}var v=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:w.bind(r,e)})};var L={};v(L,{CentralIconBase:()=>a});module.exports=I(L);var x=B(require("react")),P=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return x.default.createElement(P.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 M={};v(M,{default:()=>V,IconFolderCloud:()=>g});module.exports=I(M);var l=B(require("react"));var m=require("react-native-svg"),g=(o)=>{return l.default.createElement(a,{...o},l.default.createElement(m.Path,{d:"M4.5 3C3.11929 3 2 4.11929 2 5.5V14.1438C2.65251 13.7358 3.42372 13.5 4.25 13.5C5.56843 13.5 6.74466 14.1005 7.52265 15.0388C9.20774 15.2911 10.5 16.7446 10.5 18.5C10.5 19.0368 10.3792 19.5454 10.1632 20H19.5C20.8807 20 22 18.8807 22 17.5V8.5C22 7.11929 20.8807 6 19.5 6H13.0704C12.5688 6 12.1005 5.74935 11.8223 5.33205L11.0098 4.11325C10.5461 3.41775 9.76551 3 8.92963 3H4.5Z",fill:"currentColor"}),l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M4.25 14.5C2.45507 14.5 1 15.9551 1 17.75C1 19.5449 2.45507 21 4.25 21H7C8.38071 21 9.5 19.8807 9.5 18.5C9.5 17.1193 8.38071 16 7 16L6.98885 16C6.41203 15.099 5.40179 14.5 4.25 14.5Z",fill:"currentColor"}))},V=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=6142B5F8E333DC6664756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderCloud/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderCloud: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.5 3C3.11929 3 2 4.11929 2 5.5V14.1438C2.65251 13.7358 3.42372 13.5 4.25 13.5C5.56843 13.5 6.74466 14.1005 7.52265 15.0388C9.20774 15.2911 10.5 16.7446 10.5 18.5C10.5 19.0368 10.3792 19.5454 10.1632 20H19.5C20.8807 20 22 18.8807 22 17.5V8.5C22 7.11929 20.8807 6 19.5 6H13.0704C12.5688 6 12.1005 5.74935 11.8223 5.33205L11.0098 4.11325C10.5461 3.41775 9.76551 3 8.92963 3H4.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.25 14.5C2.45507 14.5 1 15.9551 1 17.75C1 19.5449 2.45507 21 4.25 21H7C8.38071 21 9.5 19.8807 9.5 18.5C9.5 17.1193 8.38071 16 7 16L6.98885 16C6.41203 15.099 5.40179 14.5 4.25 14.
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderCloud: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.5 3C3.11929 3 2 4.11929 2 5.5V14.1438C2.65251 13.7358 3.42372 13.5 4.25 13.5C5.56843 13.5 6.74466 14.1005 7.52265 15.0388C9.20774 15.2911 10.5 16.7446 10.5 18.5C10.5 19.0368 10.3792 19.5454 10.1632 20H19.5C20.8807 20 22 18.8807 22 17.5V8.5C22 7.11929 20.8807 6 19.5 6H13.0704C12.5688 6 12.1005 5.74935 11.8223 5.33205L11.0098 4.11325C10.5461 3.41775 9.76551 3 8.92963 3H4.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.25 14.5C2.45507 14.5 1 15.9551 1 17.75C1 19.5449 2.45507 21 4.25 21H7C8.38071 21 9.5 19.8807 9.5 18.5C9.5 17.1193 8.38071 16 7 16L6.98885 16C6.41203 15.099 5.40179 14.5 4.25 14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderCloud;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,2ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA4C,CAAC,IAAU,CAClE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,2ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA4C,CAAC,IAAU,CAClE,OAAO,wBAAmrB,EAAnrB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,4XAA4X,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yLAAyL,KAAK,eAAc,CAAI,GAG7qB",
|
|
9
|
+
"debugId": "6142B5F8E333DC6664756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import l from"react";import{Svg as p}from"react-native-svg";var
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var n=({children:r,size:o=24,...C})=>{return l.createElement(p,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import e from"react";import{Path as t}from"react-native-svg";var a=(r)=>{return e.createElement(n,{...r},e.createElement(t,{d:"M4.5 3C3.11929 3 2 4.11929 2 5.5V14.1438C2.65251 13.7358 3.42372 13.5 4.25 13.5C5.56843 13.5 6.74466 14.1005 7.52265 15.0388C9.20774 15.2911 10.5 16.7446 10.5 18.5C10.5 19.0368 10.3792 19.5454 10.1632 20H19.5C20.8807 20 22 18.8807 22 17.5V8.5C22 7.11929 20.8807 6 19.5 6H13.0704C12.5688 6 12.1005 5.74935 11.8223 5.33205L11.0098 4.11325C10.5461 3.41775 9.76551 3 8.92963 3H4.5Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M4.25 14.5C2.45507 14.5 1 15.9551 1 17.75C1 19.5449 2.45507 21 4.25 21H7C8.38071 21 9.5 19.8807 9.5 18.5C9.5 17.1193 8.38071 16 7 16L6.98885 16C6.41203 15.099 5.40179 14.5 4.25 14.5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconFolderCloud};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=A693F89D431406EF64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderCloud/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderCloud: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.5 3C3.11929 3 2 4.11929 2 5.5V14.1438C2.65251 13.7358 3.42372 13.5 4.25 13.5C5.56843 13.5 6.74466 14.1005 7.52265 15.0388C9.20774 15.2911 10.5 16.7446 10.5 18.5C10.5 19.0368 10.3792 19.5454 10.1632 20H19.5C20.8807 20 22 18.8807 22 17.5V8.5C22 7.11929 20.8807 6 19.5 6H13.0704C12.5688 6 12.1005 5.74935 11.8223 5.33205L11.0098 4.11325C10.5461 3.41775 9.76551 3 8.92963 3H4.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.25 14.5C2.45507 14.5 1 15.9551 1 17.75C1 19.5449 2.45507 21 4.25 21H7C8.38071 21 9.5 19.8807 9.5 18.5C9.5 17.1193 8.38071 16 7 16L6.98885 16C6.41203 15.099 5.40179 14.5 4.25 14.
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderCloud: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.5 3C3.11929 3 2 4.11929 2 5.5V14.1438C2.65251 13.7358 3.42372 13.5 4.25 13.5C5.56843 13.5 6.74466 14.1005 7.52265 15.0388C9.20774 15.2911 10.5 16.7446 10.5 18.5C10.5 19.0368 10.3792 19.5454 10.1632 20H19.5C20.8807 20 22 18.8807 22 17.5V8.5C22 7.11929 20.8807 6 19.5 6H13.0704C12.5688 6 12.1005 5.74935 11.8223 5.33205L11.0098 4.11325C10.5461 3.41775 9.76551 3 8.92963 3H4.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.25 14.5C2.45507 14.5 1 15.9551 1 17.75C1 19.5449 2.45507 21 4.25 21H7C8.38071 21 9.5 19.8807 9.5 18.5C9.5 17.1193 8.38071 16 7 16L6.98885 16C6.41203 15.099 5.40179 14.5 4.25 14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderCloud;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAmrB,EAAnrB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,4XAA4X,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yLAAyL,KAAK,eAAc,CAAI,GAG7qB",
|
|
9
|
+
"debugId": "A693F89D431406EF64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconMoveFolder/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:d,defineProperty:t,getOwnPropertyNames:L,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var h,y,B=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?h??=new WeakMap:y??=new WeakMap,f=s.get(r);if(f)return f}C=r!=null?v(d(r)):{};let n=o||!r||!r.__esModule?t(C,"default",{value:r,enumerable:!0}):C;for(let l of L(r))if(!i.call(n,l))t(n,l,{get:u.bind(r,l),enumerable:!0});if(e)s.set(r,n);return n},I=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of L(r))if(!i.call(o,e))t(o,e,{get:u.bind(r,e),enumerable:!(C=F(r,e))||C.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var C in o)t(r,C,{get:o[C],enumerable:!0,configurable:!0,set:b.bind(o,C)})};var M={};x(M,{CentralIconBase:()=>a});module.exports=I(M);var H=B(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return H.default.createElement(P.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var w={};x(w,{default:()=>V,IconMoveFolder:()=>g});module.exports=I(w);var p=B(require("react"));var m=require("react-native-svg"),g=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M19.1465 14.1465C19.3417 13.9512 19.6583 13.9512 19.8535 14.1465L22.8535 17.1465C23.0488 17.3417 23.0488 17.6583 22.8535 17.8535L19.8535 20.8535C19.6583 21.0488 19.3417 21.0488 19.1465 20.8535C18.9512 20.6583 18.9512 20.3417 19.1465 20.1465L21.293 18H15.5C15.2239 18 15 17.7761 15 17.5C15 17.2239 15.2239 17 15.5 17H21.293L19.1465 14.8535C18.9512 14.6583 18.9512 14.3417 19.1465 14.1465Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M8.92969 3C9.76554 3.00002 10.5461 3.4178 11.0098 4.11328L11.5254 4.88672C11.989 5.5822 12.7696 5.99998 13.6055 6H19.5C20.8807 6 22 7.11929 22 8.5V14.8789L20.5605 13.4395C20.0115 12.8904 19.1429 12.8558 18.5537 13.3359L18.4395 13.4395C17.8538 14.0252 17.8536 14.9747 18.4395 15.5605L18.8789 16H15.5C14.7233 16 14.0846 16.5903 14.0078 17.3467L14 17.5C14.0001 18.3283 14.6715 19 15.5 19H18.8789L18.4395 19.4395C18.2759 19.603 18.1601 19.7956 18.0879 20H4.5C3.11929 20 2 18.8807 2 17.5V5.5C2 4.11929 3.11929 3 4.5 3H8.92969Z",fill:"currentColor"}))},V=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=027144A7BBE79A6A64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconMoveFolder/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMoveFolder: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMoveFolder: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M19.1465 14.1465C19.3417 13.9512 19.6583 13.9512 19.8535 14.1465L22.8535 17.1465C23.0488 17.3417 23.0488 17.6583 22.8535 17.8535L19.8535 20.8535C19.6583 21.0488 19.3417 21.0488 19.1465 20.8535C18.9512 20.6583 18.9512 20.3417 19.1465 20.1465L21.293 18H15.5C15.2239 18 15 17.7761 15 17.5C15 17.2239 15.2239 17 15.5 17H21.293L19.1465 14.8535C18.9512 14.6583 18.9512 14.3417 19.1465 14.1465Z\" fill=\"currentColor\"/><Path d=\"M8.92969 3C9.76554 3.00002 10.5461 3.4178 11.0098 4.11328L11.5254 4.88672C11.989 5.5822 12.7696 5.99998 13.6055 6H19.5C20.8807 6 22 7.11929 22 8.5V14.8789L20.5605 13.4395C20.0115 12.8904 19.1429 12.8558 18.5537 13.3359L18.4395 13.4395C17.8538 14.0252 17.8536 14.9747 18.4395 15.5605L18.8789 16H15.5C14.7233 16 14.0846 16.5903 14.0078 17.3467L14 17.5C14.0001 18.3283 14.6715 19 15.5 19H18.8789L18.4395 19.4395C18.2759 19.603 18.1601 19.7956 18.0879 20H4.5C3.11929 20 2 18.8807 2 17.5V5.5C2 4.11929 3.11929 3 4.5 3H8.92969Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolder;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,0ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA2C,CAAC,IAAU,CACjE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,0ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA2C,CAAC,IAAU,CACjE,OAAO,wBAA0+B,EAA1+B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sYAAsY,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4gBAA4gB,KAAK,eAAc,CAAI,GAGp+B",
|
|
9
|
+
"debugId": "027144A7BBE79A6A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconMoveFolder/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return p.createElement(l,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as t}from"react-native-svg";var a=(o)=>{return C.createElement(e,{...o},C.createElement(t,{d:"M19.1465 14.1465C19.3417 13.9512 19.6583 13.9512 19.8535 14.1465L22.8535 17.1465C23.0488 17.3417 23.0488 17.6583 22.8535 17.8535L19.8535 20.8535C19.6583 21.0488 19.3417 21.0488 19.1465 20.8535C18.9512 20.6583 18.9512 20.3417 19.1465 20.1465L21.293 18H15.5C15.2239 18 15 17.7761 15 17.5C15 17.2239 15.2239 17 15.5 17H21.293L19.1465 14.8535C18.9512 14.6583 18.9512 14.3417 19.1465 14.1465Z",fill:"currentColor"}),C.createElement(t,{d:"M8.92969 3C9.76554 3.00002 10.5461 3.4178 11.0098 4.11328L11.5254 4.88672C11.989 5.5822 12.7696 5.99998 13.6055 6H19.5C20.8807 6 22 7.11929 22 8.5V14.8789L20.5605 13.4395C20.0115 12.8904 19.1429 12.8558 18.5537 13.3359L18.4395 13.4395C17.8538 14.0252 17.8536 14.9747 18.4395 15.5605L18.8789 16H15.5C14.7233 16 14.0846 16.5903 14.0078 17.3467L14 17.5C14.0001 18.3283 14.6715 19 15.5 19H18.8789L18.4395 19.4395C18.2759 19.603 18.1601 19.7956 18.0879 20H4.5C3.11929 20 2 18.8807 2 17.5V5.5C2 4.11929 3.11929 3 4.5 3H8.92969Z",fill:"currentColor"}))},H=a;export{H as default,a as IconMoveFolder};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=8C326D96ABB125DD64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconMoveFolder/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMoveFolder: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMoveFolder: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M19.1465 14.1465C19.3417 13.9512 19.6583 13.9512 19.8535 14.1465L22.8535 17.1465C23.0488 17.3417 23.0488 17.6583 22.8535 17.8535L19.8535 20.8535C19.6583 21.0488 19.3417 21.0488 19.1465 20.8535C18.9512 20.6583 18.9512 20.3417 19.1465 20.1465L21.293 18H15.5C15.2239 18 15 17.7761 15 17.5C15 17.2239 15.2239 17 15.5 17H21.293L19.1465 14.8535C18.9512 14.6583 18.9512 14.3417 19.1465 14.1465Z\" fill=\"currentColor\"/><Path d=\"M8.92969 3C9.76554 3.00002 10.5461 3.4178 11.0098 4.11328L11.5254 4.88672C11.989 5.5822 12.7696 5.99998 13.6055 6H19.5C20.8807 6 22 7.11929 22 8.5V14.8789L20.5605 13.4395C20.0115 12.8904 19.1429 12.8558 18.5537 13.3359L18.4395 13.4395C17.8538 14.0252 17.8536 14.9747 18.4395 15.5605L18.8789 16H15.5C14.7233 16 14.0846 16.5903 14.0078 17.3467L14 17.5C14.0001 18.3283 14.6715 19 15.5 19H18.8789L18.4395 19.4395C18.2759 19.603 18.1601 19.7956 18.0879 20H4.5C3.11929 20 2 18.8807 2 17.5V5.5C2 4.11929 3.11929 3 4.5 3H8.92969Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolder;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA0+B,EAA1+B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sYAAsY,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4gBAA4gB,KAAK,eAAc,CAAI,GAGp+B",
|
|
9
|
+
"debugId": "8C326D96ABB125DD64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:F}=Object,L=Object.prototype.hasOwnProperty;function u(r){return this[r]}var h,y,I=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?h??=new WeakMap:y??=new WeakMap,f=s.get(r);if(f)return f}C=r!=null?g(v(r)):{};let p=o||!r||!r.__esModule?n(C,"default",{value:r,enumerable:!0}):C;for(let a of i(r))if(!L.call(p,a))n(p,a,{get:u.bind(r,a),enumerable:!0});if(e)s.set(r,p);return p},B=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of i(r))if(!L.call(o,e))n(o,e,{get:u.bind(r,e),enumerable:!(C=F(r,e))||C.enumerable})}return c.set(r,o),o},c;var M=(r)=>r;function S(r,o){this[r]=M.bind(null,o)}var d=(r,o)=>{for(var C in o)n(r,C,{get:o[C],enumerable:!0,configurable:!0,set:S.bind(o,C)})};var b={};d(b,{CentralIconBase:()=>m});module.exports=B(b);var x=I(require("react")),H=require("react-native-svg"),m=({children:r,size:o=24,...C})=>{return x.default.createElement(H.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};d(Z,{default:()=>w,IconMoveFolderInside:()=>P});module.exports=B(Z);var t=I(require("react"));var l=require("react-native-svg"),P=(r)=>{return t.default.createElement(m,{...r},t.default.createElement(l.Path,{d:"M18.1465 14.1465C18.3417 13.9512 18.6583 13.9512 18.8535 14.1465C19.0488 14.3417 19.0488 14.6583 18.8535 14.8535L16.707 17H22.5C22.7761 17 23 17.2239 23 17.5C23 17.7761 22.7761 18 22.5 18H16.707L18.8535 20.1465C19.0488 20.3417 19.0488 20.6583 18.8535 20.8535C18.6583 21.0488 18.3417 21.0488 18.1465 20.8535L15.1465 17.8535C14.9512 17.6583 14.9512 17.3417 15.1465 17.1465L18.1465 14.1465Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M8.92969 3C9.76554 3.00002 10.5461 3.4178 11.0098 4.11328L11.5254 4.88672C11.989 5.5822 12.7696 5.99998 13.6055 6H19.5C20.8807 6 22 7.11929 22 8.5V16H19.1211L19.5605 15.5605C20.1463 14.9747 20.1462 14.0252 19.5605 13.4395L19.4463 13.3359C18.8572 12.8558 17.9885 12.8905 17.4395 13.4395L14.4395 16.4395C13.854 17.0251 13.8536 17.9747 14.4395 18.5605L15.8789 20H4.5C3.11929 20 2 18.8807 2 17.5V5.5C2 4.11929 3.11929 3 4.5 3H8.92969Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M21.4961 19C21.1159 19.5051 20.5508 19.8601 19.8994 19.9648C19.8264 19.7736 19.7146 19.5936 19.5605 19.4395L19.1211 19H21.4961Z",fill:"currentColor"}))},w=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=DFEA56B46DFAD95964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconMoveFolderInside/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMoveFolderInside: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18.1465 14.1465C18.3417 13.9512 18.6583 13.9512 18.8535 14.1465C19.0488 14.3417 19.0488 14.6583 18.8535 14.8535L16.707 17H22.5C22.7761 17 23 17.2239 23 17.5C23 17.7761 22.7761 18 22.5 18H16.707L18.8535 20.1465C19.0488 20.3417 19.0488 20.6583 18.8535 20.8535C18.6583 21.0488 18.3417 21.0488 18.1465 20.8535L15.1465 17.8535C14.9512 17.6583 14.9512 17.3417 15.1465 17.1465L18.1465 14.1465Z\" fill=\"currentColor\"/><Path d=\"M8.92969 3C9.76554 3.00002 10.5461 3.4178 11.0098 4.11328L11.5254 4.88672C11.989 5.5822 12.7696 5.99998 13.6055 6H19.5C20.8807 6 22 7.11929 22 8.5V16H19.1211L19.5605 15.5605C20.1463 14.9747 20.1462 14.0252 19.5605 13.4395L19.4463 13.3359C18.8572 12.8558 17.9885 12.8905 17.4395 13.4395L14.4395 16.4395C13.854 17.0251 13.8536 17.9747 14.4395 18.5605L15.8789 20H4.5C3.11929 20 2 18.8807 2 17.5V5.5C2 4.11929 3.11929 3 4.5 3H8.92969Z\" fill=\"currentColor\"/><Path d=\"M21.4961 19C21.1159 19.5051 20.5508 19.8601 19.8994 19.9648C19.8264 19.7736 19.7146 19.5936 19.5605 19.4395L19.1211 19H21.4961Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolderInside;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,gFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAiD,CAAC,IAAU,CACvE,OAAO,wBAA8iC,EAA9iC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sYAAsY,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,ibAAib,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kIAAkI,KAAK,eAAc,CAAI,GAGxiC",
|
|
9
|
+
"debugId": "DFEA56B46DFAD95964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var n=({children:C,size:r=24,...t})=>{return p.createElement(l,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};import o from"react";import{Path as e}from"react-native-svg";var a=(C)=>{return o.createElement(n,{...C},o.createElement(e,{d:"M18.1465 14.1465C18.3417 13.9512 18.6583 13.9512 18.8535 14.1465C19.0488 14.3417 19.0488 14.6583 18.8535 14.8535L16.707 17H22.5C22.7761 17 23 17.2239 23 17.5C23 17.7761 22.7761 18 22.5 18H16.707L18.8535 20.1465C19.0488 20.3417 19.0488 20.6583 18.8535 20.8535C18.6583 21.0488 18.3417 21.0488 18.1465 20.8535L15.1465 17.8535C14.9512 17.6583 14.9512 17.3417 15.1465 17.1465L18.1465 14.1465Z",fill:"currentColor"}),o.createElement(e,{d:"M8.92969 3C9.76554 3.00002 10.5461 3.4178 11.0098 4.11328L11.5254 4.88672C11.989 5.5822 12.7696 5.99998 13.6055 6H19.5C20.8807 6 22 7.11929 22 8.5V16H19.1211L19.5605 15.5605C20.1463 14.9747 20.1462 14.0252 19.5605 13.4395L19.4463 13.3359C18.8572 12.8558 17.9885 12.8905 17.4395 13.4395L14.4395 16.4395C13.854 17.0251 13.8536 17.9747 14.4395 18.5605L15.8789 20H4.5C3.11929 20 2 18.8807 2 17.5V5.5C2 4.11929 3.11929 3 4.5 3H8.92969Z",fill:"currentColor"}),o.createElement(e,{d:"M21.4961 19C21.1159 19.5051 20.5508 19.8601 19.8994 19.9648C19.8264 19.7736 19.7146 19.5936 19.5605 19.4395L19.1211 19H21.4961Z",fill:"currentColor"}))},x=a;export{x as default,a as IconMoveFolderInside};
|
|
2
|
+
|
|
3
|
+
//# debugId=CAB9092C18DB3EEA64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconMoveFolderInside/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMoveFolderInside: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18.1465 14.1465C18.3417 13.9512 18.6583 13.9512 18.8535 14.1465C19.0488 14.3417 19.0488 14.6583 18.8535 14.8535L16.707 17H22.5C22.7761 17 23 17.2239 23 17.5C23 17.7761 22.7761 18 22.5 18H16.707L18.8535 20.1465C19.0488 20.3417 19.0488 20.6583 18.8535 20.8535C18.6583 21.0488 18.3417 21.0488 18.1465 20.8535L15.1465 17.8535C14.9512 17.6583 14.9512 17.3417 15.1465 17.1465L18.1465 14.1465Z\" fill=\"currentColor\"/><Path d=\"M8.92969 3C9.76554 3.00002 10.5461 3.4178 11.0098 4.11328L11.5254 4.88672C11.989 5.5822 12.7696 5.99998 13.6055 6H19.5C20.8807 6 22 7.11929 22 8.5V16H19.1211L19.5605 15.5605C20.1463 14.9747 20.1462 14.0252 19.5605 13.4395L19.4463 13.3359C18.8572 12.8558 17.9885 12.8905 17.4395 13.4395L14.4395 16.4395C13.854 17.0251 13.8536 17.9747 14.4395 18.5605L15.8789 20H4.5C3.11929 20 2 18.8807 2 17.5V5.5C2 4.11929 3.11929 3 4.5 3H8.92969Z\" fill=\"currentColor\"/><Path d=\"M21.4961 19C21.1159 19.5051 20.5508 19.8601 19.8994 19.9648C19.8264 19.7736 19.7146 19.5936 19.5605 19.4395L19.1211 19H21.4961Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolderInside;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA8iC,EAA9iC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sYAAsY,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ibAAib,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kIAAkI,KAAK,eAAc,CAAI,GAGxiC",
|
|
9
|
+
"debugId": "CAB9092C18DB3EEA64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|