@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.275 → 1.1.276
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/IconFolderEdit/index.d.ts +4 -0
- package/IconFolderEdit/index.js +3 -0
- package/IconFolderEdit/index.js.map +11 -0
- package/IconFolderEdit/index.mjs +3 -0
- package/IconFolderEdit/index.mjs.map +11 -0
- package/IconFolderShared/index.js +2 -2
- package/IconFolderShared/index.js.map +3 -3
- package/IconFolderShared/index.mjs +2 -2
- package/IconFolderShared/index.mjs.map +3 -3
- 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
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var k=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:F}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var h,y,L=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var l=o?h??=new WeakMap:y??=new WeakMap,m=l.get(r);if(m)return m}e=r!=null?k(v(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let s of u(r))if(!d.call(p,s))t(p,s,{get:f.bind(r,s),enumerable:!0});if(n)l.set(r,p);return p},B=(r)=>{var o=(c??=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 u(r))if(!d.call(o,n))t(o,n,{get:f.bind(r,n),enumerable:!(e=F(r,n))||e.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var H={};I(H,{CentralIconBase:()=>a});module.exports=B(H);var x=L(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return x.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 j={};I(j,{default:()=>w,IconFolderEdit:()=>g});module.exports=B(j);var C=L(require("react"));var i=require("react-native-svg"),g=(r)=>{return C.default.createElement(a,{...r},C.default.createElement(i.Path,{d:"M2.5 7.5V5.5C2.5 4.39543 3.39543 3.5 4.5 3.5H8.92963C9.59834 3.5 10.2228 3.8342 10.5937 4.3906L11.4063 5.6094C11.7772 6.1658 12.4017 6.5 13.0704 6.5H19.5C20.6046 6.5 21.5 7.39543 21.5 8.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H8.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(i.Path,{d:"M3.99414 20.5002L2.49414 19.0002L2.49414 12.0068C2.49414 11.1784 3.16571 10.5068 3.99414 10.5068C4.82257 10.5068 5.49414 11.1784 5.49414 12.0068L5.49414 19.0002L3.99414 20.5002Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},w=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=48585910732209ED64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderEdit/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 IconFolderEdit: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M2.5 7.5V5.5C2.5 4.39543 3.39543 3.5 4.5 3.5H8.92963C9.59834 3.5 10.2228 3.8342 10.5937 4.3906L11.4063 5.6094C11.7772 6.1658 12.4017 6.5 13.0704 6.5H19.5C20.6046 6.5 21.5 7.39543 21.5 8.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.99414 20.5002L2.49414 19.0002L2.49414 12.0068C2.49414 11.1784 3.16571 10.5068 3.99414 10.5068C4.82257 10.5068 5.49414 11.1784 5.49414 12.0068L5.49414 19.0002L3.99414 20.5002Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconFolderEdit;\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,0ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA2C,CAAC,IAAU,CACjE,OAAO,wBAAslB,EAAtlB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2OAA2O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oLAAoL,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGhlB",
|
|
9
|
+
"debugId": "48585910732209ED64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...p})=>{return C.createElement(s,{...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 t}from"react-native-svg";var a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M2.5 7.5V5.5C2.5 4.39543 3.39543 3.5 4.5 3.5H8.92963C9.59834 3.5 10.2228 3.8342 10.5937 4.3906L11.4063 5.6094C11.7772 6.1658 12.4017 6.5 13.0704 6.5H19.5C20.6046 6.5 21.5 7.39543 21.5 8.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H8.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M3.99414 20.5002L2.49414 19.0002L2.49414 12.0068C2.49414 11.1784 3.16571 10.5068 3.99414 10.5068C4.82257 10.5068 5.49414 11.1784 5.49414 12.0068L5.49414 19.0002L3.99414 20.5002Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},x=a;export{x as default,a as IconFolderEdit};
|
|
2
|
+
|
|
3
|
+
//# debugId=14C33298A26BDA0764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderEdit/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 IconFolderEdit: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M2.5 7.5V5.5C2.5 4.39543 3.39543 3.5 4.5 3.5H8.92963C9.59834 3.5 10.2228 3.8342 10.5937 4.3906L11.4063 5.6094C11.7772 6.1658 12.4017 6.5 13.0704 6.5H19.5C20.6046 6.5 21.5 7.39543 21.5 8.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.99414 20.5002L2.49414 19.0002L2.49414 12.0068C2.49414 11.1784 3.16571 10.5068 3.99414 10.5068C4.82257 10.5068 5.49414 11.1784 5.49414 12.0068L5.49414 19.0002L3.99414 20.5002Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconFolderEdit;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAslB,EAAtlB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2OAA2O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,oLAAoL,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGhlB",
|
|
9
|
+
"debugId": "14C33298A26BDA0764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var L=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:m,getOwnPropertyDescriptor:v}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var F,S,k=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var u=o?F??=new WeakMap:S??=new WeakMap,c=u.get(r);if(c)return c}e=r!=null?L(h(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let a of m(r))if(!d.call(p,a))t(p,a,{get:f.bind(r,a),enumerable:!0});if(n)u.set(r,p);return p},B=(r)=>{var o=(i??=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 m(r))if(!d.call(o,n))t(o,n,{get:f.bind(r,n),enumerable:!(e=v(r,n))||e.enumerable})}return i.set(r,o),o},i;var y=(r)=>r;function H(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var b={};I(b,{CentralIconBase:()=>l});module.exports=B(b);var x=k(require("react")),P=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return x.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={};I(M,{default:()=>j,IconFolderShared:()=>g});module.exports=B(M);var C=k(require("react"));var s=require("react-native-svg"),g=(r)=>{return C.default.createElement(l,{...r},C.default.createElement(s.Path,{d:"M12.5 19.5H19.5C20.6046 19.5 21.5 18.6046 21.5 17.5V8.5C21.5 7.39543 20.6046 6.5 19.5 6.5H13.0704C12.4017 6.5 11.7772 6.1658 11.4063 5.6094L10.5937 4.3906C10.2228 3.8342 9.59834 3.5 8.92963 3.5H4.5C3.39543 3.5 2.5 4.39543 2.5 5.5V8.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(s.Path,{d:"M7.5 12.5C7.5 13.6046 6.60457 14.5 5.5 14.5C4.39543 14.5 3.5 13.6046 3.5 12.5C3.5 11.3954 4.39543 10.5 5.5 10.5C6.60457 10.5 7.5 11.3954 7.5 12.5Z",stroke:"currentColor",strokeLinecap:"round"}),C.default.createElement(s.Path,{d:"M5.49952 16.5C4.06809 16.5 2.78098 17.177 1.89036 18.2548C1.06902 19.2488 2.0203 20.5 3.30969 20.5H7.68936C8.97875 20.5 9.93002 19.2488 9.10868 18.2548C8.21807 17.177 6.93095 16.5 5.49952 16.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},j=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=49D2CDD39CEBC28964756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderShared/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 IconFolderShared: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderShared: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12.5 19.5H19.5C20.6046 19.5 21.5 18.6046 21.5 17.5V8.5C21.5 7.39543 20.6046 6.5 19.5 6.5H13.0704C12.4017 6.5 11.7772 6.1658 11.4063 5.6094L10.5937 4.3906C10.2228 3.8342 9.59834 3.5 8.92963 3.5H4.5C3.39543 3.5 2.5 4.39543 2.5 5.5V8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 12.5C7.5 13.6046 6.60457 14.5 5.5 14.5C4.39543 14.5 3.5 13.6046 3.5 12.5C3.5 11.3954 4.39543 10.5 5.5 10.5C6.60457 10.5 7.5 11.3954 7.5 12.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M5.49952 16.5C4.06809 16.5 2.78098 17.177 1.89036 18.2548C1.06902 19.2488 2.0203 20.5 3.30969 20.5H7.68936C8.97875 20.5 9.93002 19.2488 9.10868 18.2548C8.21807 17.177 6.93095 16.5 5.49952 16.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconFolderShared;\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,4ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA6C,CAAC,IAAU,CACnE,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,4ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA6C,CAAC,IAAU,CACnE,OAAO,wBAAgzB,EAAhzB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,4OAA4O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qJAAqJ,OAAO,eAAe,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oMAAoM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG1yB",
|
|
9
|
+
"debugId": "49D2CDD39CEBC28964756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var t=({children:e,size:r=24,...C})=>{return p.createElement(s,{...C,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:"M12.5 19.5H19.5C20.6046 19.5 21.5 18.6046 21.5 17.5V8.5C21.5 7.39543 20.6046 6.5 19.5 6.5H13.0704C12.4017 6.5 11.7772 6.1658 11.4063 5.6094L10.5937 4.3906C10.2228 3.8342 9.59834 3.5 8.92963 3.5H4.5C3.39543 3.5 2.5 4.39543 2.5 5.5V8.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M7.5 12.5C7.5 13.6046 6.60457 14.5 5.5 14.5C4.39543 14.5 3.5 13.6046 3.5 12.5C3.5 11.3954 4.39543 10.5 5.5 10.5C6.60457 10.5 7.5 11.3954 7.5 12.5Z",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(n,{d:"M5.49952 16.5C4.06809 16.5 2.78098 17.177 1.89036 18.2548C1.06902 19.2488 2.0203 20.5 3.30969 20.5H7.68936C8.97875 20.5 9.93002 19.2488 9.10868 18.2548C8.21807 17.177 6.93095 16.5 5.49952 16.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},x=a;export{x as default,a as IconFolderShared};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=814C798CB74C3FFE64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderShared/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 IconFolderShared: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderShared: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12.5 19.5H19.5C20.6046 19.5 21.5 18.6046 21.5 17.5V8.5C21.5 7.39543 20.6046 6.5 19.5 6.5H13.0704C12.4017 6.5 11.7772 6.1658 11.4063 5.6094L10.5937 4.3906C10.2228 3.8342 9.59834 3.5 8.92963 3.5H4.5C3.39543 3.5 2.5 4.39543 2.5 5.5V8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 12.5C7.5 13.6046 6.60457 14.5 5.5 14.5C4.39543 14.5 3.5 13.6046 3.5 12.5C3.5 11.3954 4.39543 10.5 5.5 10.5C6.60457 10.5 7.5 11.3954 7.5 12.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M5.49952 16.5C4.06809 16.5 2.78098 17.177 1.89036 18.2548C1.06902 19.2488 2.0203 20.5 3.30969 20.5H7.68936C8.97875 20.5 9.93002 19.2488 9.10868 18.2548C8.21807 17.177 6.93095 16.5 5.49952 16.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconFolderShared;\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,EAA6C,CAAC,IAAU,CACnE,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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAgzB,EAAhzB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,4OAA4O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,oMAAoM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG1yB",
|
|
9
|
+
"debugId": "814C798CB74C3FFE64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|