@central-icons-react-native/square-filled-radius-0-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 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.2676L12.2676 6H22V20H9V12H2V3Z",fill:"currentColor"}),p.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13H8V21.309L4.5 19.559L1 21.309V13Z",fill:"currentColor"}))},w=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=C3CB0155CC8F301564756E2164756E21
|
|
@@ -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.2676L12.2676 6H22V20H9V12H2V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 13H8V21.309L4.5 19.559L1 21.
|
|
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.2676L12.2676 6H22V20H9V12H2V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 13H8V21.309L4.5 19.559L1 21.309V13Z\" 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,wBAAsP,EAAtP,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yCAAyC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yCAAyC,KAAK,eAAc,CAAI,GAGhP",
|
|
9
|
+
"debugId": "C3CB0155CC8F301564756E2164756E21",
|
|
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.2676L12.2676 6H22V20H9V12H2V3Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13H8V21.309L4.5 19.559L1 21.
|
|
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.2676L12.2676 6H22V20H9V12H2V3Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13H8V21.309L4.5 19.559L1 21.309V13Z",fill:"currentColor"}))},x=m;export{x as default,m as IconFolderBookmarks};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=88A46635FB2C690364756E2164756E21
|
|
@@ -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.2676L12.2676 6H22V20H9V12H2V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 13H8V21.309L4.5 19.559L1 21.
|
|
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.2676L12.2676 6H22V20H9V12H2V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 13H8V21.309L4.5 19.559L1 21.309V13Z\" 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,gBAAsP,EAAtP,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yCAAyC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yCAAyC,KAAK,eAAc,CAAI,GAGhP",
|
|
9
|
+
"debugId": "88A46635FB2C690364756E2164756E21",
|
|
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 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 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 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.2676 3H2V14.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 20H22V6H12.2676L10.2676 3Z",fill:"currentColor"}),C.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 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.9888 16C6.4116 15.0983 5.40146 14.5 4.25 14.5C2.45507 14.5 1 15.9551 1 17.75Z",fill:"currentColor"}))},V=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=7347B523BD7EC32264756E2164756E21
|
|
@@ -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.2676 3H2V14.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 20H22V6H12.2676L10.2676 3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 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.9888 16C6.4116 15.0983 5.40146 14.5 4.25 14.5C2.45507 14.5 1 15.9551 1 17.
|
|
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.2676 3H2V14.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 20H22V6H12.2676L10.2676 3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 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.9888 16C6.4116 15.0983 5.40146 14.5 4.25 14.5C2.45507 14.5 1 15.9551 1 17.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,
|
|
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,wBAAsgB,EAAtgB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sLAAsL,KAAK,eAAc,CAAI,GAGhgB",
|
|
9
|
+
"debugId": "7347B523BD7EC32264756E2164756E21",
|
|
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,{d:"M10.2676 3H2V14.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 20H22V6H12.2676L10.2676 3Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 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.9888 16C6.4116 15.0983 5.40146 14.5 4.25 14.5C2.45507 14.5 1 15.9551 1 17.75Z",fill:"currentColor"}))},x=a;export{x as default,a as IconFolderCloud};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=A46A4C2F8324CAF564756E2164756E21
|
|
@@ -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.2676 3H2V14.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 20H22V6H12.2676L10.2676 3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 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.9888 16C6.4116 15.0983 5.40146 14.5 4.25 14.5C2.45507 14.5 1 15.9551 1 17.
|
|
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.2676 3H2V14.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 20H22V6H12.2676L10.2676 3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 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.9888 16C6.4116 15.0983 5.40146 14.5 4.25 14.5C2.45507 14.5 1 15.9551 1 17.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,
|
|
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,gBAAsgB,EAAtgB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sLAAsL,KAAK,eAAc,CAAI,GAGhgB",
|
|
9
|
+
"debugId": "A46A4C2F8324CAF564756E2164756E21",
|
|
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:n,getOwnPropertyNames:c,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?v(d(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of c(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=(L??=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 c(r))if(!i.call(o,t))n(o,t,{get:u.bind(r,t),enumerable:!(e=F(r,t))||e.enumerable})}return L.set(r,o),o},L;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 H=B(require("react")),P=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return H.default.createElement(P.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:()=>g});module.exports=I(M);var l=B(require("react"));var C=require("react-native-svg"),g=(r)=>{return l.default.createElement(m,{...r},l.default.createElement(C.Path,{d:"M23.207 17.5L19.8535 20.8535L19.1465 20.1465L21.293 18H15V17H21.293L19.1465 14.8535L19.8535 14.1465L23.207 17.5Z",fill:"currentColor"}),l.default.createElement(C.Path,{d:"M12.2676 6H22V14.8789L19.8535 12.7324L17.7324 14.8535L18.8789 16H14V19H18.8789L17.8789 20H2V3H10.2676L12.2676 6Z",fill:"currentColor"}))},w=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=091262D7731D989A64756E2164756E21
|
|
@@ -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=\"M23.207 17.5L19.8535 20.8535L19.1465 20.1465L21.293 18H15V17H21.293L19.1465 14.8535L19.8535 14.1465L23.207 17.5Z\" fill=\"currentColor\"/><Path d=\"M12.2676 6H22V14.8789L19.8535 12.7324L17.7324 14.8535L18.8789 16H14V19H18.8789L17.8789 20H2V3H10.2676L12.2676 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,
|
|
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,wBAA8T,EAA9T,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mHAAmH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mHAAmH,KAAK,eAAc,CAAI,GAGxT",
|
|
9
|
+
"debugId": "091262D7731D989A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconMoveFolder/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
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.207 17.5L19.8535 20.8535L19.1465 20.1465L21.293 18H15V17H21.293L19.1465 14.8535L19.8535 14.1465L23.207 17.5Z",fill:"currentColor"}),e.createElement(n,{d:"M12.2676 6H22V14.8789L19.8535 12.7324L17.7324 14.8535L18.8789 16H14V19H18.8789L17.8789 20H2V3H10.2676L12.2676 6Z",fill:"currentColor"}))},H=m;export{H as default,m as IconMoveFolder};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=1ECAD4CF4FBFDB7F64756E2164756E21
|
|
@@ -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=\"M23.207 17.5L19.8535 20.8535L19.1465 20.1465L21.293 18H15V17H21.293L19.1465 14.8535L19.8535 14.1465L23.207 17.5Z\" fill=\"currentColor\"/><Path d=\"M12.2676 6H22V14.8789L19.8535 12.7324L17.7324 14.8535L18.8789 16H14V19H18.8789L17.8789 20H2V3H10.2676L12.2676 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,
|
|
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,gBAA8T,EAA9T,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mHAAmH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mHAAmH,KAAK,eAAc,CAAI,GAGxT",
|
|
9
|
+
"debugId": "1ECAD4CF4FBFDB7F64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var h,y,I=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var s=o?h??=new WeakMap:y??=new WeakMap,f=s.get(r);if(f)return f}e=r!=null?g(v(r)):{};let l=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let a of c(r))if(!i.call(l,a))t(l,a,{get:u.bind(r,a),enumerable:!0});if(n)s.set(r,l);return l},B=(r)=>{var o=(L??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!i.call(o,n))t(o,n,{get:u.bind(r,n),enumerable:!(e=F(r,n))||e.enumerable})}return L.set(r,o),o},L;var M=(r)=>r;function S(r,o){this[r]=M.bind(null,o)}var H=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var V={};H(V,{CentralIconBase:()=>m});module.exports=B(V);var d=I(require("react")),x=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return d.default.createElement(x.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 b={};H(b,{default:()=>Z,IconMoveFolderInside:()=>P});module.exports=B(b);var p=I(require("react"));var C=require("react-native-svg"),P=(r)=>{return p.default.createElement(m,{...r},p.default.createElement(C.Path,{d:"M18.8535 14.8535L16.707 17H23V18H16.707L18.8535 20.1465L18.1465 20.8535L14.793 17.5L18.1465 14.1465L18.8535 14.8535Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M12.2676 6H22V16H19.3281L20.4746 14.8535L18.3535 12.7324L13.5859 17.5L16.0859 20H2V3H10.2676L12.2676 6Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M22 20H20.3281L19.3281 19H22V20Z",fill:"currentColor"}))},Z=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=2946619B21F9C7EF64756E2164756E21
|
|
@@ -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.8535 14.8535L16.707 17H23V18H16.707L18.8535 20.1465L18.1465 20.8535L14.793 17.5L18.1465 14.1465L18.8535 14.8535Z\" fill=\"currentColor\"/><Path d=\"M12.2676 6H22V16H19.3281L20.4746 14.8535L18.3535 12.7324L13.5859 17.5L16.0859 20H2V3H10.2676L12.2676 6Z\" fill=\"currentColor\"/><Path d=\"M22 20H20.3281L19.3281 19H22V20Z\" 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,wBAAyX,EAAzX,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uHAAuH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0GAA0G,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mCAAmC,KAAK,eAAc,CAAI,GAGnX",
|
|
9
|
+
"debugId": "2946619B21F9C7EF64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...p})=>{return l.createElement(C,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as n}from"react-native-svg";var a=(e)=>{return o.createElement(t,{...e},o.createElement(n,{d:"M18.8535 14.8535L16.707 17H23V18H16.707L18.8535 20.1465L18.1465 20.8535L14.793 17.5L18.1465 14.1465L18.8535 14.8535Z",fill:"currentColor"}),o.createElement(n,{d:"M12.2676 6H22V16H19.3281L20.4746 14.8535L18.3535 12.7324L13.5859 17.5L16.0859 20H2V3H10.2676L12.2676 6Z",fill:"currentColor"}),o.createElement(n,{d:"M22 20H20.3281L19.3281 19H22V20Z",fill:"currentColor"}))},d=a;export{d as default,a as IconMoveFolderInside};
|
|
2
|
+
|
|
3
|
+
//# debugId=E51B909664E9EB6264756E2164756E21
|
|
@@ -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.8535 14.8535L16.707 17H23V18H16.707L18.8535 20.1465L18.1465 20.8535L14.793 17.5L18.1465 14.1465L18.8535 14.8535Z\" fill=\"currentColor\"/><Path d=\"M12.2676 6H22V16H19.3281L20.4746 14.8535L18.3535 12.7324L13.5859 17.5L16.0859 20H2V3H10.2676L12.2676 6Z\" fill=\"currentColor\"/><Path d=\"M22 20H20.3281L19.3281 19H22V20Z\" 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,gBAAyX,EAAzX,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uHAAuH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0GAA0G,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mCAAmC,KAAK,eAAc,CAAI,GAGnX",
|
|
9
|
+
"debugId": "E51B909664E9EB6264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|