@central-icons-react-native/round-filled-radius-1-stroke-2 1.1.275 → 1.1.277
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/IconPageEdit/index.js +2 -2
- package/IconPageEdit/index.js.map +3 -3
- package/IconPageEdit/index.mjs +2 -2
- package/IconPageEdit/index.mjs.map +3 -3
- package/IconPageEditText/index.js +2 -2
- package/IconPageEditText/index.js.map +3 -3
- package/IconPageEditText/index.mjs +2 -2
- package/IconPageEditText/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 F=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,S,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?y??=new WeakMap:S??=new WeakMap,f=s.get(r);if(f)return f}t=r!=null?F(V(r)):{};let C=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let l of i(r))if(!u.call(C,l))n(C,l,{get:B.bind(r,l),enumerable:!0});if(e)s.set(r,C);return C},x=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of i(r))if(!u.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=h(r,e))||t.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function H(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:H.bind(o,t)})};var L={};P(L,{CentralIconBase:()=>a});module.exports=x(L);var d=I(require("react")),g=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return d.default.createElement(g.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var w={};P(w,{default:()=>M,IconFolderEdit:()=>v});module.exports=x(w);var p=I(require("react"));var m=require("react-native-svg"),v=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M4.5 10.0586C5.88071 10.0586 7 11.1779 7 12.5586V18.5C6.99994 18.7651 6.89451 19.0196 6.70703 19.207L5.20703 20.707C5.01951 20.8945 4.76516 21 4.5 21C4.23484 21 3.98049 20.8945 3.79297 20.707L2.29297 19.207C2.10549 19.0196 2.00006 18.7651 2 18.5V12.5586C2 11.1779 3.11929 10.0586 4.5 10.0586Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H8.59375C8.8555 19.5474 8.99987 19.0317 9 18.5V12.5586C9 10.0733 6.98528 8.05859 4.5 8.05859C3.57492 8.05859 2.71505 8.33776 2 8.81641V5C2 3.89543 2.89543 3 4 3H9.46484Z",fill:"currentColor"}))},M=v;
|
|
2
|
+
|
|
3
|
+
//# debugId=B80332F8AAAFA17664756E2164756E21
|
|
@@ -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=\"M4.5 10.0586C5.88071 10.0586 7 11.1779 7 12.5586V18.5C6.99994 18.7651 6.89451 19.0196 6.70703 19.207L5.20703 20.707C5.01951 20.8945 4.76516 21 4.5 21C4.23484 21 3.98049 20.8945 3.79297 20.707L2.29297 19.207C2.10549 19.0196 2.00006 18.7651 2 18.5V12.5586C2 11.1779 3.11929 10.0586 4.5 10.0586Z\" fill=\"currentColor\"/><Path d=\"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H8.59375C8.8555 19.5474 8.99987 19.0317 9 18.5V12.5586C9 10.0733 6.98528 8.05859 4.5 8.05859C3.57492 8.05859 2.71505 8.33776 2 8.81641V5C2 3.89543 2.89543 3 4 3H9.46484Z\" fill=\"currentColor\"/></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,wBAA0qB,EAA1qB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uSAAuS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,2SAA2S,KAAK,eAAc,CAAI,GAGpqB",
|
|
9
|
+
"debugId": "B80332F8AAAFA17664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as n}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M4.5 10.0586C5.88071 10.0586 7 11.1779 7 12.5586V18.5C6.99994 18.7651 6.89451 19.0196 6.70703 19.207L5.20703 20.707C5.01951 20.8945 4.76516 21 4.5 21C4.23484 21 3.98049 20.8945 3.79297 20.707L2.29297 19.207C2.10549 19.0196 2.00006 18.7651 2 18.5V12.5586C2 11.1779 3.11929 10.0586 4.5 10.0586Z",fill:"currentColor"}),t.createElement(n,{d:"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H8.59375C8.8555 19.5474 8.99987 19.0317 9 18.5V12.5586C9 10.0733 6.98528 8.05859 4.5 8.05859C3.57492 8.05859 2.71505 8.33776 2 8.81641V5C2 3.89543 2.89543 3 4 3H9.46484Z",fill:"currentColor"}))},d=a;export{d as default,a as IconFolderEdit};
|
|
2
|
+
|
|
3
|
+
//# debugId=8B758F6EDAF02C6264756E2164756E21
|
|
@@ -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=\"M4.5 10.0586C5.88071 10.0586 7 11.1779 7 12.5586V18.5C6.99994 18.7651 6.89451 19.0196 6.70703 19.207L5.20703 20.707C5.01951 20.8945 4.76516 21 4.5 21C4.23484 21 3.98049 20.8945 3.79297 20.707L2.29297 19.207C2.10549 19.0196 2.00006 18.7651 2 18.5V12.5586C2 11.1779 3.11929 10.0586 4.5 10.0586Z\" fill=\"currentColor\"/><Path d=\"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H8.59375C8.8555 19.5474 8.99987 19.0317 9 18.5V12.5586C9 10.0733 6.98528 8.05859 4.5 8.05859C3.57492 8.05859 2.71505 8.33776 2 8.81641V5C2 3.89543 2.89543 3 4 3H9.46484Z\" fill=\"currentColor\"/></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,gBAA0qB,EAA1qB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uSAAuS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2SAA2S,KAAK,eAAc,CAAI,GAGpqB",
|
|
9
|
+
"debugId": "8B758F6EDAF02C6264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:S}=Object,c=Object.prototype.hasOwnProperty;function s(r){return this[r]}var y,H,v=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var f=o?y??=new WeakMap:H??=new WeakMap,i=f.get(r);if(i)return i}e=r!=null?h(F(r)):{};let t=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let d of u(r))if(!c.call(t,d))n(t,d,{get:s.bind(r,d),enumerable:!0});if(C)f.set(r,t);return t},B=(r)=>{var o=(m??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of u(r))if(!c.call(o,C))n(o,C,{get:s.bind(r,C),enumerable:!(e=S(r,C))||e.enumerable})}return m.set(r,o),o},m;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var Z={};I(Z,{CentralIconBase:()=>a});module.exports=B(Z);var x=v(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 w={};I(w,{default:()=>V,IconFolderShared:()=>g});module.exports=B(w);var l=v(require("react"));var p=require("react-native-svg"),g=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(p.Path,{d:"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H12.874C12.874 19.7503 12.8428 19.4991 12.7793 19.2522C12.3474 17.5744 11.31 16.1387 9.91233 15.1945C10.4406 14.4289 10.75 13.5006 10.75 12.5C10.75 9.87665 8.62337 7.75 6.00002 7.75C4.32053 7.75 2.84463 8.62163 2 9.93721V5Z",fill:"currentColor"}),l.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3.25 12.5C3.25 10.9812 4.48122 9.75 6 9.75C7.51878 9.75 8.75 10.9812 8.75 12.5C8.75 14.0188 7.51878 15.25 6 15.25C4.48122 15.25 3.25 14.0188 3.25 12.5Z",fill:"currentColor"}),l.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M6.00027 16C4.24079 16 2.69432 16.9096 1.8046 18.2795C1.38836 18.9204 1.46069 19.6546 1.82902 20.1868C2.17787 20.6907 2.77207 21 3.41626 21H8.58428C9.22847 21 9.82267 20.6907 10.1715 20.1868C10.5398 19.6546 10.6122 18.9204 10.1959 18.2795C9.30622 16.9096 7.75975 16 6.00027 16Z",fill:"currentColor"}))},V=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=8B68305F0DBE691464756E2164756E21
|
|
@@ -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=\"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H12.874C12.874 19.7503 12.8428 19.4991 12.7793 19.2522C12.3474 17.5744 11.31 16.1387 9.91233 15.1945C10.4406 14.4289 10.75 13.5006 10.75 12.5C10.75 9.87665 8.62337 7.75 6.00002 7.75C4.32053 7.75 2.84463 8.62163 2 9.93721V5Z\" fill=\"currentColor\"/><Path
|
|
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=\"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H12.874C12.874 19.7503 12.8428 19.4991 12.7793 19.2522C12.3474 17.5744 11.31 16.1387 9.91233 15.1945C10.4406 14.4289 10.75 13.5006 10.75 12.5C10.75 9.87665 8.62337 7.75 6.00002 7.75C4.32053 7.75 2.84463 8.62163 2 9.93721V5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.25 12.5C3.25 10.9812 4.48122 9.75 6 9.75C7.51878 9.75 8.75 10.9812 8.75 12.5C8.75 14.0188 7.51878 15.25 6 15.25C4.48122 15.25 3.25 14.0188 3.25 12.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.00027 16C4.24079 16 2.69432 16.9096 1.8046 18.2795C1.38836 18.9204 1.46069 19.6546 1.82902 20.1868C2.17787 20.6907 2.77207 21 3.41626 21H8.58428C9.22847 21 9.82267 20.6907 10.1715 20.1868C10.5398 19.6546 10.6122 18.9204 10.1959 18.2795C9.30622 16.9096 7.75975 16 6.00027 16Z\" fill=\"currentColor\"/></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,wBAAu+B,EAAv+B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mXAAmX,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2JAA2J,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wRAAwR,KAAK,eAAc,CAAI,GAGj+B",
|
|
9
|
+
"debugId": "8B68305F0DBE691464756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import t from"react";import{Svg as p}from"react-native-svg";var
|
|
1
|
+
import t from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...l})=>{return t.createElement(p,{...l,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 C}from"react-native-svg";var d=(e)=>{return o.createElement(n,{...e},o.createElement(C,{d:"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H12.874C12.874 19.7503 12.8428 19.4991 12.7793 19.2522C12.3474 17.5744 11.31 16.1387 9.91233 15.1945C10.4406 14.4289 10.75 13.5006 10.75 12.5C10.75 9.87665 8.62337 7.75 6.00002 7.75C4.32053 7.75 2.84463 8.62163 2 9.93721V5Z",fill:"currentColor"}),o.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M3.25 12.5C3.25 10.9812 4.48122 9.75 6 9.75C7.51878 9.75 8.75 10.9812 8.75 12.5C8.75 14.0188 7.51878 15.25 6 15.25C4.48122 15.25 3.25 14.0188 3.25 12.5Z",fill:"currentColor"}),o.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M6.00027 16C4.24079 16 2.69432 16.9096 1.8046 18.2795C1.38836 18.9204 1.46069 19.6546 1.82902 20.1868C2.17787 20.6907 2.77207 21 3.41626 21H8.58428C9.22847 21 9.82267 20.6907 10.1715 20.1868C10.5398 19.6546 10.6122 18.9204 10.1959 18.2795C9.30622 16.9096 7.75975 16 6.00027 16Z",fill:"currentColor"}))},x=d;export{x as default,d as IconFolderShared};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=E7A23B75814F69D364756E2164756E21
|
|
@@ -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=\"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H12.874C12.874 19.7503 12.8428 19.4991 12.7793 19.2522C12.3474 17.5744 11.31 16.1387 9.91233 15.1945C10.4406 14.4289 10.75 13.5006 10.75 12.5C10.75 9.87665 8.62337 7.75 6.00002 7.75C4.32053 7.75 2.84463 8.62163 2 9.93721V5Z\" fill=\"currentColor\"/><Path
|
|
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=\"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H12.874C12.874 19.7503 12.8428 19.4991 12.7793 19.2522C12.3474 17.5744 11.31 16.1387 9.91233 15.1945C10.4406 14.4289 10.75 13.5006 10.75 12.5C10.75 9.87665 8.62337 7.75 6.00002 7.75C4.32053 7.75 2.84463 8.62163 2 9.93721V5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.25 12.5C3.25 10.9812 4.48122 9.75 6 9.75C7.51878 9.75 8.75 10.9812 8.75 12.5C8.75 14.0188 7.51878 15.25 6 15.25C4.48122 15.25 3.25 14.0188 3.25 12.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.00027 16C4.24079 16 2.69432 16.9096 1.8046 18.2795C1.38836 18.9204 1.46069 19.6546 1.82902 20.1868C2.17787 20.6907 2.77207 21 3.41626 21H8.58428C9.22847 21 9.82267 20.6907 10.1715 20.1868C10.5398 19.6546 10.6122 18.9204 10.1959 18.2795C9.30622 16.9096 7.75975 16 6.00027 16Z\" fill=\"currentColor\"/></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,gBAAu+B,EAAv+B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mXAAmX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2JAA2J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wRAAwR,KAAK,eAAc,CAAI,GAGj+B",
|
|
9
|
+
"debugId": "E7A23B75814F69D364756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconPageEdit/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:F}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var S,V,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var f=o?S??=new WeakMap:V??=new WeakMap,s=f.get(r);if(s)return s}e=r!=null?h(y(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!u.call(C,l))n(C,l,{get:d.bind(r,l),enumerable:!0});if(t)f.set(r,C);return C},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 i(r))if(!u.call(o,t))n(o,t,{get:d.bind(r,t),enumerable:!(e=F(r,t))||e.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function H(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var L={};P(L,{CentralIconBase:()=>a});module.exports=I(L);var g=B(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return g.default.createElement(v.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 w={};P(w,{default:()=>M,IconPageEdit:()=>x});module.exports=I(w);var p=B(require("react"));var m=require("react-native-svg"),x=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4Z",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.7929 14.4597C17.8278 13.4249 19.5056 13.4249 20.5404 14.4597C21.5753 15.4946 21.5753 17.1724 20.5404 18.2073L17.0404 21.7073C16.8529 21.8948 16.5986 22.0002 16.3333 22.0002H14C13.4477 22.0002 13 21.5525 13 21.0002V18.6668C13 18.4016 13.1054 18.1473 13.2929 17.9597L16.7929 14.4597Z",fill:"currentColor"}))},M=x;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=83E7D1EB9C91976364756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPageEdit/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 IconPageEdit: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPageEdit: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.7929 14.4597C17.8278 13.4249 19.5056 13.4249 20.5404 14.4597C21.5753 15.4946 21.5753 17.1724 20.5404 18.2073L17.0404 21.7073C16.8529 21.8948 16.5986 22.0002 16.3333 22.0002H14C13.4477 22.0002 13 21.5525 13 21.0002V18.6668C13 18.4016 13.1054 18.1473 13.2929 17.9597L16.7929 14.4597Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPageEdit;\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,wECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,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,wECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAAqpB,EAArpB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uPAAuP,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gSAAgS,KAAK,eAAc,CAAI,GAG/oB",
|
|
9
|
+
"debugId": "83E7D1EB9C91976364756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconPageEdit/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,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 a=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,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 a=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.7929 14.4597C17.8278 13.4249 19.5056 13.4249 20.5404 14.4597C21.5753 15.4946 21.5753 17.1724 20.5404 18.2073L17.0404 21.7073C16.8529 21.8948 16.5986 22.0002 16.3333 22.0002H14C13.4477 22.0002 13 21.5525 13 21.0002V18.6668C13 18.4016 13.1054 18.1473 13.2929 17.9597L16.7929 14.4597Z",fill:"currentColor"}))},g=a;export{g as default,a as IconPageEdit};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=569F6912EF96B02764756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPageEdit/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 IconPageEdit: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPageEdit: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.7929 14.4597C17.8278 13.4249 19.5056 13.4249 20.5404 14.4597C21.5753 15.4946 21.5753 17.1724 20.5404 18.2073L17.0404 21.7073C16.8529 21.8948 16.5986 22.0002 16.3333 22.0002H14C13.4477 22.0002 13 21.5525 13 21.0002V18.6668C13 18.4016 13.1054 18.1473 13.2929 17.9597L16.7929 14.4597Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPageEdit;\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,EAAyC,CAAC,IAAU,CAC/D,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,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAqpB,EAArpB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uPAAuP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gSAAgS,KAAK,eAAc,CAAI,GAG/oB",
|
|
9
|
+
"debugId": "569F6912EF96B02764756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,s=Object.prototype.hasOwnProperty;function u(o){return this[o]}var F,M,v=(o,e,r)=>{var C=o!=null&&typeof o==="object";if(C){var f=e?F??=new WeakMap:M??=new WeakMap,i=f.get(o);if(i)return i}r=o!=null?H(h(o)):{};let t=e||!o||!o.__esModule?n(r,"default",{value:o,enumerable:!0}):r;for(let p of c(o))if(!s.call(t,p))n(t,p,{get:u.bind(o,p),enumerable:!0});if(C)f.set(o,t);return t},x=(o)=>{var e=(m??=new WeakMap).get(o),r;if(e)return e;if(e=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var C of c(o))if(!s.call(e,C))n(e,C,{get:u.bind(o,C),enumerable:!(r=y(o,C))||r.enumerable})}return m.set(o,e),e},m;var S=(o)=>o;function V(o,e){this[o]=S.bind(null,e)}var B=(o,e)=>{for(var r in e)n(o,r,{get:e[r],enumerable:!0,configurable:!0,set:V.bind(e,r)})};var Z={};B(Z,{CentralIconBase:()=>a});module.exports=x(Z);var I=v(require("react")),P=require("react-native-svg"),a=({children:o,size:e=24,...r})=>{return I.default.createElement(P.Svg,{...r,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},o)};var b={};B(b,{default:()=>L,IconPageEditText:()=>g});module.exports=x(b);var l=v(require("react"));var d=require("react-native-svg"),g=(o)=>{return l.default.createElement(a,{...o},l.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4ZM8 7C8 6.44772 8.44772 6 9 6H15C15.5523 6 16 6.44772 16 7C16 7.55228 15.5523 8 15 8H9C8.44772 8 8 7.55228 8 7ZM9 10C8.44772 10 8 10.4477 8 11C8 11.5523 8.44772 12 9 12H11C11.5523 12 12 11.5523 12 11C12 10.4477 11.5523 10 11 10H9Z",fill:"currentColor"}),l.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.7929 14.4597C17.8278 13.4249 19.5056 13.4249 20.5404 14.4597C21.5753 15.4946 21.5753 17.1724 20.5404 18.2073L17.0404 21.7073C16.8529 21.8948 16.5986 22.0002 16.3333 22.0002H14C13.4477 22.0002 13 21.5525 13 21.0002V18.6668C13 18.4016 13.1054 18.1473 13.2929 17.9597L16.7929 14.4597Z",fill:"currentColor"}))},L=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=41E0DE045F8BBC2C64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPageEditText/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 IconPageEditText: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4ZM8 7C8 6.44772 8.44772 6 9 6H15C15.5523 6 16 6.44772 16 7C16 7.55228 15.5523 8 15 8H9C8.44772 8 8 7.55228 8 7ZM9 10C8.44772 10 8 10.4477 8 11C8 11.5523 8.44772 12 9 12H11C11.5523 12 12 11.5523 12 11C12 10.4477 11.5523 10 11 10H9Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPageEditText: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4ZM8 7C8 6.44772 8.44772 6 9 6H15C15.5523 6 16 6.44772 16 7C16 7.55228 15.5523 8 15 8H9C8.44772 8 8 7.55228 8 7ZM9 10C8.44772 10 8 10.4477 8 11C8 11.5523 8.44772 12 9 12H11C11.5523 12 12 11.5523 12 11C12 10.4477 11.5523 10 11 10H9Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.7929 14.4597C17.8278 13.4249 19.5056 13.4249 20.5404 14.4597C21.5753 15.4946 21.5753 17.1724 20.5404 18.2073L17.0404 21.7073C16.8529 21.8948 16.5986 22.0002 16.3333 22.0002H14C13.4477 22.0002 13 21.5525 13 21.0002V18.6668C13 18.4016 13.1054 18.1473 13.2929 17.9597L16.7929 14.4597Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPageEditText;\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,wBAAg6B,EAAh6B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4dAA4d,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gSAAgS,KAAK,eAAc,CAAI,GAG15B",
|
|
9
|
+
"debugId": "41E0DE045F8BBC2C64756E2164756E21",
|
|
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:e,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"},e)};import r from"react";import{Path as n}from"react-native-svg";var a=(e)=>{return r.createElement(C,{...e},r.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4ZM8 7C8 6.44772 8.44772 6 9 6H15C15.5523 6 16 6.44772 16 7C16 7.55228 15.5523 8 15 8H9C8.44772 8 8 7.55228 8 7ZM9 10C8.44772 10 8 10.4477 8 11C8 11.5523 8.44772 12 9 12H11C11.5523 12 12 11.5523 12 11C12 10.4477 11.5523 10 11 10H9Z",fill:"currentColor"}),r.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var C=({children:e,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"},e)};import r from"react";import{Path as n}from"react-native-svg";var a=(e)=>{return r.createElement(C,{...e},r.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4ZM8 7C8 6.44772 8.44772 6 9 6H15C15.5523 6 16 6.44772 16 7C16 7.55228 15.5523 8 15 8H9C8.44772 8 8 7.55228 8 7ZM9 10C8.44772 10 8 10.4477 8 11C8 11.5523 8.44772 12 9 12H11C11.5523 12 12 11.5523 12 11C12 10.4477 11.5523 10 11 10H9Z",fill:"currentColor"}),r.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.7929 14.4597C17.8278 13.4249 19.5056 13.4249 20.5404 14.4597C21.5753 15.4946 21.5753 17.1724 20.5404 18.2073L17.0404 21.7073C16.8529 21.8948 16.5986 22.0002 16.3333 22.0002H14C13.4477 22.0002 13 21.5525 13 21.0002V18.6668C13 18.4016 13.1054 18.1473 13.2929 17.9597L16.7929 14.4597Z",fill:"currentColor"}))},I=a;export{I as default,a as IconPageEditText};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=6FC8705AA0EB253C64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPageEditText/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 IconPageEditText: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4ZM8 7C8 6.44772 8.44772 6 9 6H15C15.5523 6 16 6.44772 16 7C16 7.55228 15.5523 8 15 8H9C8.44772 8 8 7.55228 8 7ZM9 10C8.44772 10 8 10.4477 8 11C8 11.5523 8.44772 12 9 12H11C11.5523 12 12 11.5523 12 11C12 10.4477 11.5523 10 11 10H9Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPageEditText: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 4C4 2.89543 4.89543 2 6 2H18C19.1046 2 20 2.89543 20 4V11.8779C18.4159 11.4054 16.6296 11.7946 15.3787 13.0455L11.8787 16.5455C11.3161 17.1081 11 17.8712 11 18.6668V21.0002C11 21.3507 11.0601 21.6873 11.1706 22H6C4.89543 22 4 21.1046 4 20V4ZM8 7C8 6.44772 8.44772 6 9 6H15C15.5523 6 16 6.44772 16 7C16 7.55228 15.5523 8 15 8H9C8.44772 8 8 7.55228 8 7ZM9 10C8.44772 10 8 10.4477 8 11C8 11.5523 8.44772 12 9 12H11C11.5523 12 12 11.5523 12 11C12 10.4477 11.5523 10 11 10H9Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.7929 14.4597C17.8278 13.4249 19.5056 13.4249 20.5404 14.4597C21.5753 15.4946 21.5753 17.1724 20.5404 18.2073L17.0404 21.7073C16.8529 21.8948 16.5986 22.0002 16.3333 22.0002H14C13.4477 22.0002 13 21.5525 13 21.0002V18.6668C13 18.4016 13.1054 18.1473 13.2929 17.9597L16.7929 14.4597Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPageEditText;\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,gBAAg6B,EAAh6B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4dAA4d,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gSAAgS,KAAK,eAAc,CAAI,GAG15B",
|
|
9
|
+
"debugId": "6FC8705AA0EB253C64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|