@central-icons-react-native/square-filled-radius-0-stroke-2 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.
@@ -1,3 +1,3 @@
1
- var g=Object.create;var{getPrototypeOf:H,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var L,h,v=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var f=r?L??=new WeakMap:h??=new WeakMap,s=f.get(o);if(s)return s}e=o!=null?g(H(o)):{};let l=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let a of c(o))if(!i.call(l,a))t(l,a,{get:u.bind(o,a),enumerable:!0});if(n)f.set(o,l);return l},B=(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 c(o))if(!i.call(r,n))t(r,n,{get:u.bind(o,n),enumerable:!(e=F(o,n))||e.enumerable})}return C.set(o,r),r},C;var y=(o)=>o;function S(o,r){this[o]=y.bind(null,r)}var I=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var b={};I(b,{CentralIconBase:()=>m});module.exports=B(b);var x=v(require("react")),P=require("react-native-svg"),m=({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={};I(M,{default:()=>Z,IconFolderBookmarks:()=>V});module.exports=B(M);var p=v(require("react"));var d=require("react-native-svg"),V=(o)=>{return p.default.createElement(m,{...o},p.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M2 3H10.5352L12.5352 6H22V20H10V11H2V3Z",fill:"currentColor"}),p.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13H8V21.7662L4.5 19.6662L1 21.7662V13ZM3 15V18.2338L4.5 17.3338L6 18.2338V15H3Z",fill:"currentColor"}))},Z=V;
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 f=r?h??=new WeakMap:y??=new WeakMap,s=f.get(o);if(s)return s}e=o!=null?F(H(o)):{};let l=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let a of c(o))if(!i.call(l,a))t(l,a,{get:u.bind(o,a),enumerable:!0});if(n)f.set(o,l);return l},B=(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 c(o))if(!i.call(r,n))t(r,n,{get:u.bind(o,n),enumerable:!(e=V(o,n))||e.enumerable})}return C.set(o,r),r},C;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:()=>m});module.exports=B(L);var x=v(require("react")),P=require("react-native-svg"),m=({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 p=v(require("react"));var d=require("react-native-svg"),g=(o)=>{return p.default.createElement(m,{...o},p.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M2 3H10.5352L12.5352 6H22V20H10V11H2V3Z",fill:"currentColor"}),p.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13H8V21.7662L4.5 19.6662L1 21.7662V13Z",fill:"currentColor"}))},w=g;
2
2
 
3
- //# debugId=D9004F37125BAD8B64756E2164756E21
3
+ //# debugId=2049F884A6DCE4BB64756E2164756E21
@@ -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 3H10.5352L12.5352 6H22V20H10V11H2V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 13H8V21.7662L4.5 19.6662L1 21.7662V13ZM3 15V18.2338L4.5 17.3338L6 18.2338V15H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderBookmarks;\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 3H10.5352L12.5352 6H22V20H10V11H2V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 13H8V21.7662L4.5 19.6662L1 21.7662V13Z\" 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,wBAAmS,EAAnS,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0CAA0C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qFAAqF,KAAK,eAAc,CAAI,GAG7R",
9
- "debugId": "D9004F37125BAD8B64756E2164756E21",
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,wBAA0P,EAA1P,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0CAA0C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4CAA4C,KAAK,eAAc,CAAI,GAGpP",
9
+ "debugId": "2049F884A6DCE4BB64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";import{Svg as a}from"react-native-svg";var n=({children:r,size:o=24,...l})=>{return p.createElement(a,{...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 m=(r)=>{return e.createElement(n,{...r},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M2 3H10.5352L12.5352 6H22V20H10V11H2V3Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13H8V21.7662L4.5 19.6662L1 21.7662V13ZM3 15V18.2338L4.5 17.3338L6 18.2338V15H3Z",fill:"currentColor"}))},x=m;export{x as default,m as IconFolderBookmarks};
1
+ import p from"react";import{Svg as a}from"react-native-svg";var n=({children:r,size:o=24,...l})=>{return p.createElement(a,{...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 m=(r)=>{return e.createElement(n,{...r},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M2 3H10.5352L12.5352 6H22V20H10V11H2V3Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13H8V21.7662L4.5 19.6662L1 21.7662V13Z",fill:"currentColor"}))},x=m;export{x as default,m as IconFolderBookmarks};
2
2
 
3
- //# debugId=7FCA84B607AE16A164756E2164756E21
3
+ //# debugId=FE2F88EF8344479264756E2164756E21
@@ -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 3H10.5352L12.5352 6H22V20H10V11H2V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 13H8V21.7662L4.5 19.6662L1 21.7662V13ZM3 15V18.2338L4.5 17.3338L6 18.2338V15H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderBookmarks;\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 3H10.5352L12.5352 6H22V20H10V11H2V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 13H8V21.7662L4.5 19.6662L1 21.7662V13Z\" 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,gBAAmS,EAAnS,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0CAA0C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qFAAqF,KAAK,eAAc,CAAI,GAG7R",
9
- "debugId": "7FCA84B607AE16A164756E2164756E21",
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,gBAA0P,EAA1P,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0CAA0C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4CAA4C,KAAK,eAAc,CAAI,GAGpP",
9
+ "debugId": "FE2F88EF8344479264756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var F=Object.create;var{getPrototypeOf:H,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,d=Object.prototype.hasOwnProperty;function i(o){return this[o]}var y,S,B=(o,r,e)=>{var C=o!=null&&typeof o==="object";if(C){var f=r?y??=new WeakMap:S??=new WeakMap,s=f.get(o);if(s)return s}e=o!=null?F(H(o)):{};let t=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of u(o))if(!d.call(t,p))n(t,p,{get:i.bind(o,p),enumerable:!0});if(C)f.set(o,t);return t},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var C of u(o))if(!d.call(r,C))n(r,C,{get:i.bind(o,C),enumerable:!(e=h(o,C))||e.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function M(o,r){this[o]=b.bind(null,r)}var v=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:M.bind(r,e)})};var Z={};v(Z,{CentralIconBase:()=>a});module.exports=I(Z);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 w={};v(w,{default:()=>V,IconFolderCloud:()=>g});module.exports=I(w);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:"M10.5352 3H2V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H22V6H12.5352L10.5352 3Z",fill:"currentColor"}),l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.291 8.52248 14.0387C7.74365 13.0992 6.568 12.5 5.25 12.5C2.90279 12.5 1 14.4028 1 16.75ZM8 16C7.91683 16 7.83524 16.0068 7.75575 16.0198C7.63529 16.0395 7.51966 16.0736 7.41067 16.1202C7.35973 15.9451 7.2881 15.7789 7.19859 15.6243C6.80946 14.9522 6.08253 14.5 5.25 14.5C4.00736 14.5 3 15.5074 3 16.75C3 17.9926 4.00736 19 5.25 19H8C8.82843 19 9.5 18.3284 9.5 17.5C9.5 16.6716 8.82843 16 8 16Z",fill:"currentColor"}))},V=g;
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 l=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let p of u(o))if(!d.call(l,p))t(l,p,{get:i.bind(o,p),enumerable:!0});if(n)f.set(o,l);return l},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 M={};v(M,{CentralIconBase:()=>a});module.exports=I(M);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 V={};v(V,{default:()=>Z,IconFolderCloud:()=>g});module.exports=I(V);var C=B(require("react"));var m=require("react-native-svg"),g=(o)=>{return C.default.createElement(a,{...o},C.default.createElement(m.Path,{d:"M10.5352 3H2V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H22V6H12.5352L10.5352 3Z",fill:"currentColor"}),C.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.291 8.52248 14.0387C7.74365 13.0992 6.568 12.5 5.25 12.5C2.90279 12.5 1 14.4028 1 16.75Z",fill:"currentColor"}))},Z=g;
2
2
 
3
- //# debugId=95BBD8AC5840E2C264756E2164756E21
3
+ //# debugId=61946088D0EC16CC64756E2164756E21
@@ -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=\"M10.5352 3H2V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H22V6H12.5352L10.5352 3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.291 8.52248 14.0387C7.74365 13.0992 6.568 12.5 5.25 12.5C2.90279 12.5 1 14.4028 1 16.75ZM8 16C7.91683 16 7.83524 16.0068 7.75575 16.0198C7.63529 16.0395 7.51966 16.0736 7.41067 16.1202C7.35973 15.9451 7.2881 15.7789 7.19859 15.6243C6.80946 14.9522 6.08253 14.5 5.25 14.5C4.00736 14.5 3 15.5074 3 16.75C3 17.9926 4.00736 19 5.25 19H8C8.82843 19 9.5 18.3284 9.5 17.5C9.5 16.6716 8.82843 16 8 16Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderCloud;\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=\"M10.5352 3H2V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H22V6H12.5352L10.5352 3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.291 8.52248 14.0387C7.74365 13.0992 6.568 12.5 5.25 12.5C2.90279 12.5 1 14.4028 1 16.75Z\" 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,wBAA2zB,EAA3zB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2eAA2e,KAAK,eAAc,CAAI,GAGrzB",
9
- "debugId": "95BBD8AC5840E2C264756E2164756E21",
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,wBAA0gB,EAA1gB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0LAA0L,KAAK,eAAc,CAAI,GAGpgB",
9
+ "debugId": "61946088D0EC16CC64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";import{Svg as p}from"react-native-svg";var C=({children:r,size:o=24,...t})=>{return l.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 e from"react";import{Path as n}from"react-native-svg";var a=(r)=>{return e.createElement(C,{...r},e.createElement(n,{d:"M10.5352 3H2V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H22V6H12.5352L10.5352 3Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.291 8.52248 14.0387C7.74365 13.0992 6.568 12.5 5.25 12.5C2.90279 12.5 1 14.4028 1 16.75ZM8 16C7.91683 16 7.83524 16.0068 7.75575 16.0198C7.63529 16.0395 7.51966 16.0736 7.41067 16.1202C7.35973 15.9451 7.2881 15.7789 7.19859 15.6243C6.80946 14.9522 6.08253 14.5 5.25 14.5C4.00736 14.5 3 15.5074 3 16.75C3 17.9926 4.00736 19 5.25 19H8C8.82843 19 9.5 18.3284 9.5 17.5C9.5 16.6716 8.82843 16 8 16Z",fill:"currentColor"}))},x=a;export{x as default,a as IconFolderCloud};
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,{d:"M10.5352 3H2V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H22V6H12.5352L10.5352 3Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.291 8.52248 14.0387C7.74365 13.0992 6.568 12.5 5.25 12.5C2.90279 12.5 1 14.4028 1 16.75Z",fill:"currentColor"}))},x=a;export{x as default,a as IconFolderCloud};
2
2
 
3
- //# debugId=4BB56A73ED9A0D6364756E2164756E21
3
+ //# debugId=1123FCA626DD5E5B64756E2164756E21
@@ -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=\"M10.5352 3H2V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H22V6H12.5352L10.5352 3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.291 8.52248 14.0387C7.74365 13.0992 6.568 12.5 5.25 12.5C2.90279 12.5 1 14.4028 1 16.75ZM8 16C7.91683 16 7.83524 16.0068 7.75575 16.0198C7.63529 16.0395 7.51966 16.0736 7.41067 16.1202C7.35973 15.9451 7.2881 15.7789 7.19859 15.6243C6.80946 14.9522 6.08253 14.5 5.25 14.5C4.00736 14.5 3 15.5074 3 16.75C3 17.9926 4.00736 19 5.25 19H8C8.82843 19 9.5 18.3284 9.5 17.5C9.5 16.6716 8.82843 16 8 16Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderCloud;\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=\"M10.5352 3H2V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H22V6H12.5352L10.5352 3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.291 8.52248 14.0387C7.74365 13.0992 6.568 12.5 5.25 12.5C2.90279 12.5 1 14.4028 1 16.75Z\" 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,gBAA2zB,EAA3zB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2eAA2e,KAAK,eAAc,CAAI,GAGrzB",
9
- "debugId": "4BB56A73ED9A0D6364756E2164756E21",
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,gBAA0gB,EAA1gB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0LAA0L,KAAK,eAAc,CAAI,GAGpgB",
9
+ "debugId": "1123FCA626DD5E5B64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var g=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:H}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var h,y,d=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var s=r?h??=new WeakMap:y??=new WeakMap,C=s.get(o);if(C)return C}e=o!=null?g(F(o)):{};let p=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let l of f(o))if(!i.call(p,l))n(p,l,{get:u.bind(o,l),enumerable:!0});if(t)s.set(o,p);return p},v=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of f(o))if(!i.call(r,t))n(r,t,{get:u.bind(o,t),enumerable:!(e=H(o,t))||e.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var B=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var M={};B(M,{CentralIconBase:()=>a});module.exports=v(M);var I=d(require("react")),x=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return I.default.createElement(x.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 V={};B(V,{default:()=>w,IconMoveFolder:()=>P});module.exports=v(V);var m=d(require("react"));var L=require("react-native-svg"),P=(o)=>{return m.default.createElement(a,{...o},m.default.createElement(L.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5352 6H22V20H2V3H10.5352L12.5352 6ZM11.3633 11.1338L12.8262 12.5967H8.09961V14.3975H12.8262L11.3633 15.8604L12.6367 17.1338L16.2725 13.4971L12.6367 9.86035L11.3633 11.1338Z",fill:"currentColor"}))},w=P;
1
+ var H=Object.create;var{getPrototypeOf:d,defineProperty:n,getOwnPropertyNames:L,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var h,y,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?h??=new WeakMap:y??=new WeakMap,f=s.get(r);if(f)return f}e=r!=null?H(d(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of L(r))if(!i.call(p,a))n(p,a,{get:u.bind(r,a),enumerable:!0});if(t)s.set(r,p);return p},I=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of L(r))if(!i.call(o,t))n(o,t,{get:u.bind(r,t),enumerable:!(e=F(r,t))||e.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function V(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:V.bind(o,e)})};var b={};x(b,{CentralIconBase:()=>m});module.exports=I(b);var P=B(require("react")),g=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return P.default.createElement(g.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 M={};x(M,{default:()=>w,IconMoveFolder:()=>v});module.exports=I(M);var l=B(require("react"));var C=require("react-native-svg"),v=(r)=>{return l.default.createElement(m,{...r},l.default.createElement(C.Path,{d:"M23.4141 17L19.207 21.207L17.793 19.793L19.5859 18H14V16H19.5859L17.793 14.207L19.207 12.793L23.4141 17Z",fill:"currentColor"}),l.default.createElement(C.Path,{d:"M12.5352 6H22V12.7578L19.207 9.96484L15.1719 14H12V20H2V3H10.5352L12.5352 6Z",fill:"currentColor"}))},w=v;
2
2
 
3
- //# debugId=D620A57B7AD5917F64756E2164756E21
3
+ //# debugId=611B0BF830B195BA64756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.5352 6H22V20H2V3H10.5352L12.5352 6ZM11.3633 11.1338L12.8262 12.5967H8.09961V14.3975H12.8262L11.3633 15.8604L12.6367 17.1338L16.2725 13.4971L12.6367 9.86035L11.3633 11.1338Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolder;\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 d=\"M23.4141 17L19.207 21.207L17.793 19.793L19.5859 18H14V16H19.5859L17.793 14.207L19.207 12.793L23.4141 17Z\" fill=\"currentColor\"/><Path d=\"M12.5352 6H22V12.7578L19.207 9.96484L15.1719 14H12V20H2V3H10.5352L12.5352 6Z\" 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,wBAAoR,EAApR,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mLAAmL,KAAK,eAAc,CAAI,GAG9Q",
9
- "debugId": "D620A57B7AD5917F64756E2164756E21",
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,wBAAkR,EAAlR,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2GAA2G,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+EAA+E,KAAK,eAAc,CAAI,GAG5Q",
9
+ "debugId": "611B0BF830B195BA64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return p.createElement(l,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as a}from"react-native-svg";var m=(r)=>{return t.createElement(e,{...r},t.createElement(a,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5352 6H22V20H2V3H10.5352L12.5352 6ZM11.3633 11.1338L12.8262 12.5967H8.09961V14.3975H12.8262L11.3633 15.8604L12.6367 17.1338L16.2725 13.4971L12.6367 9.86035L11.3633 11.1338Z",fill:"currentColor"}))},x=m;export{x as default,m as IconMoveFolder};
1
+ import l from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>{return l.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 e from"react";import{Path as n}from"react-native-svg";var m=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M23.4141 17L19.207 21.207L17.793 19.793L19.5859 18H14V16H19.5859L17.793 14.207L19.207 12.793L23.4141 17Z",fill:"currentColor"}),e.createElement(n,{d:"M12.5352 6H22V12.7578L19.207 9.96484L15.1719 14H12V20H2V3H10.5352L12.5352 6Z",fill:"currentColor"}))},P=m;export{P as default,m as IconMoveFolder};
2
2
 
3
- //# debugId=3B00D7241E07C07964756E2164756E21
3
+ //# debugId=3ABA1469808AB8D164756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.5352 6H22V20H2V3H10.5352L12.5352 6ZM11.3633 11.1338L12.8262 12.5967H8.09961V14.3975H12.8262L11.3633 15.8604L12.6367 17.1338L16.2725 13.4971L12.6367 9.86035L11.3633 11.1338Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolder;\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 d=\"M23.4141 17L19.207 21.207L17.793 19.793L19.5859 18H14V16H19.5859L17.793 14.207L19.207 12.793L23.4141 17Z\" fill=\"currentColor\"/><Path d=\"M12.5352 6H22V12.7578L19.207 9.96484L15.1719 14H12V20H2V3H10.5352L12.5352 6Z\" 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,gBAAoR,EAApR,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mLAAmL,KAAK,eAAc,CAAI,GAG9Q",
9
- "debugId": "3B00D7241E07C07964756E2164756E21",
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,gBAAkR,EAAlR,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2GAA2G,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+EAA+E,KAAK,eAAc,CAAI,GAG5Q",
9
+ "debugId": "3ABA1469808AB8D164756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconMoveFolderInside: FC<CentralIconBaseProps>;
4
+ export default IconMoveFolderInside;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:H,defineProperty:n,getOwnPropertyNames:L,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function I(r){return this[r]}var h,y,u=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var C=o?h??=new WeakMap:y??=new WeakMap,f=C.get(r);if(f)return f}e=r!=null?v(H(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of L(r))if(!i.call(p,a))n(p,a,{get:I.bind(r,a),enumerable:!0});if(t)C.set(r,p);return p},B=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of L(r))if(!i.call(o,t))n(o,t,{get:I.bind(r,t),enumerable:!(e=F(r,t))||e.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 e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var M={};x(M,{CentralIconBase:()=>m});module.exports=B(M);var P=u(require("react")),d=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return P.default.createElement(d.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 V={};x(V,{default:()=>w,IconMoveFolderInside:()=>g});module.exports=B(V);var l=u(require("react"));var s=require("react-native-svg"),g=(r)=>{return l.default.createElement(m,{...r},l.default.createElement(s.Path,{d:"M19.207 14.207L17.4141 16H23V18H17.4141L19.207 19.793L17.793 21.207L13.5859 17L17.793 12.793L19.207 14.207Z",fill:"currentColor"}),l.default.createElement(s.Path,{d:"M12.5352 6H22V14H21.8281L17.793 9.96484L10.7578 17L13.7578 20H2V3H10.5352L12.5352 6Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=C8EEA7DD4CE9354264756E2164756E21
@@ -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=\"M19.207 14.207L17.4141 16H23V18H17.4141L19.207 19.793L17.793 21.207L13.5859 17L17.793 12.793L19.207 14.207Z\" fill=\"currentColor\"/><Path d=\"M12.5352 6H22V14H21.8281L17.793 9.96484L10.7578 17L13.7578 20H2V3H10.5352L12.5352 6Z\" 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,wBAA6R,EAA7R,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8GAA8G,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,CAAI,GAGvR",
9
+ "debugId": "C8EEA7DD4CE9354264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import l from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>{return l.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 e from"react";import{Path as n}from"react-native-svg";var m=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M19.207 14.207L17.4141 16H23V18H17.4141L19.207 19.793L17.793 21.207L13.5859 17L17.793 12.793L19.207 14.207Z",fill:"currentColor"}),e.createElement(n,{d:"M12.5352 6H22V14H21.8281L17.793 9.96484L10.7578 17L13.7578 20H2V3H10.5352L12.5352 6Z",fill:"currentColor"}))},P=m;export{P as default,m as IconMoveFolderInside};
2
+
3
+ //# debugId=2DCF1CA0465F32D264756E2164756E21
@@ -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=\"M19.207 14.207L17.4141 16H23V18H17.4141L19.207 19.793L17.793 21.207L13.5859 17L17.793 12.793L19.207 14.207Z\" fill=\"currentColor\"/><Path d=\"M12.5352 6H22V14H21.8281L17.793 9.96484L10.7578 17L13.7578 20H2V3H10.5352L12.5352 6Z\" 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,gBAA6R,EAA7R,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8GAA8G,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,CAAI,GAGvR",
9
+ "debugId": "2DCF1CA0465F32D264756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -927,6 +927,7 @@ Below is a complete list of available icons:
927
927
  - IconFileArrowRightIn
928
928
  - IconFileArrowRightOut
929
929
  - IconFolderOpenFront
930
+ - IconMoveFolderInside
930
931
 
931
932
  ### Food
932
933