@central-icons-react-native/square-filled-radius-0-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/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 v=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:L}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var h,y,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var f=o?h??=new WeakMap:y??=new WeakMap,s=f.get(r);if(s)return s}t=r!=null?v(F(r)):{};let l=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let a of i(r))if(!u.call(l,a))n(l,a,{get:B.bind(r,a),enumerable:!0});if(e)f.set(r,l);return l},d=(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=L(r,e))||t.enumerable})}return c.set(r,o),o},c;var H=(r)=>r;function S(r,o){this[r]=H.bind(null,o)}var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};var b={};x(b,{CentralIconBase:()=>m});module.exports=d(b);var P=I(require("react")),g=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return P.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 M={};x(M,{default:()=>Z,IconFolderEdit:()=>V});module.exports=d(M);var p=I(require("react"));var C=require("react-native-svg"),V=(r)=>{return p.default.createElement(m,{...r},p.default.createElement(C.Path,{d:"M3.99219 10.0068C5.09676 10.0068 5.99219 10.9023 5.99219 12.0068V18.957L3.99219 20.957L1.99219 18.957V12.0068C1.99219 10.9023 2.88773 10.007 3.99219 10.0068Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M2.32812 20H1.99902V19.6709L2.32812 20Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M12.2666 6H21.999V20H5.65625L6.49219 19.1641V12.0068C6.49219 10.6261 5.3729 9.50684 3.99219 9.50684C3.17728 9.50691 2.45544 9.89846 1.99902 10.502V3H10.2666L12.2666 6Z",fill:"currentColor"}))},Z=V;
|
|
2
|
+
|
|
3
|
+
//# debugId=C41B18D9C0AB8ED664756E2164756E21
|
|
@@ -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=\"M3.99219 10.0068C5.09676 10.0068 5.99219 10.9023 5.99219 12.0068V18.957L3.99219 20.957L1.99219 18.957V12.0068C1.99219 10.9023 2.88773 10.007 3.99219 10.0068Z\" fill=\"currentColor\"/><Path d=\"M2.32812 20H1.99902V19.6709L2.32812 20Z\" fill=\"currentColor\"/><Path d=\"M12.2666 6H21.999V20H5.65625L6.49219 19.1641V12.0068C6.49219 10.6261 5.3729 9.50684 3.99219 9.50684C3.17728 9.50691 2.45544 9.89846 1.99902 10.502V3H10.2666L12.2666 6Z\" 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,wBAAye,EAAze,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,CAAI,GAGne",
|
|
9
|
+
"debugId": "C41B18D9C0AB8ED664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as C}from"react-native-svg";var n=({children:t,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"},t)};import o from"react";import{Path as e}from"react-native-svg";var a=(t)=>{return o.createElement(n,{...t},o.createElement(e,{d:"M3.99219 10.0068C5.09676 10.0068 5.99219 10.9023 5.99219 12.0068V18.957L3.99219 20.957L1.99219 18.957V12.0068C1.99219 10.9023 2.88773 10.007 3.99219 10.0068Z",fill:"currentColor"}),o.createElement(e,{d:"M2.32812 20H1.99902V19.6709L2.32812 20Z",fill:"currentColor"}),o.createElement(e,{d:"M12.2666 6H21.999V20H5.65625L6.49219 19.1641V12.0068C6.49219 10.6261 5.3729 9.50684 3.99219 9.50684C3.17728 9.50691 2.45544 9.89846 1.99902 10.502V3H10.2666L12.2666 6Z",fill:"currentColor"}))},P=a;export{P as default,a as IconFolderEdit};
|
|
2
|
+
|
|
3
|
+
//# debugId=06F9333C5DEDBC4064756E2164756E21
|
|
@@ -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=\"M3.99219 10.0068C5.09676 10.0068 5.99219 10.9023 5.99219 12.0068V18.957L3.99219 20.957L1.99219 18.957V12.0068C1.99219 10.9023 2.88773 10.007 3.99219 10.0068Z\" fill=\"currentColor\"/><Path d=\"M2.32812 20H1.99902V19.6709L2.32812 20Z\" fill=\"currentColor\"/><Path d=\"M12.2666 6H21.999V20H5.65625L6.49219 19.1641V12.0068C6.49219 10.6261 5.3729 9.50684 3.99219 9.50684C3.17728 9.50691 2.45544 9.89846 1.99902 10.502V3H10.2666L12.2666 6Z\" 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,gBAAye,EAAze,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,CAAI,GAGne",
|
|
9
|
+
"debugId": "06F9333C5DEDBC4064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var h=Object.create;var{getPrototypeOf:F,defineProperty:
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:F,defineProperty:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:S}=Object,c=Object.prototype.hasOwnProperty;function s(r){return this[r]}var y,H,v=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?y??=new WeakMap:H??=new WeakMap,i=f.get(r);if(i)return i}e=r!=null?h(F(r)):{};let C=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let d of u(r))if(!c.call(C,d))l(C,d,{get:s.bind(r,d),enumerable:!0});if(n)f.set(r,C);return C},B=(r)=>{var o=(m??=new WeakMap).get(r),e;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of u(r))if(!c.call(o,n))l(o,n,{get:s.bind(r,n),enumerable:!(e=S(r,n))||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)l(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 t=v(require("react"));var p=require("react-native-svg"),g=(r)=>{return t.default.createElement(a,{...r},t.default.createElement(p.Path,{d:"M2 3H10.2676L12.2676 6H22V20H11.4169C11.4057 19.9333 11.3934 19.867 11.38 19.8011C10.9662 17.7626 9.52006 16.0992 7.6104 15.3816C8.49637 14.7317 9.07157 13.683 9.07157 12.5C9.07157 10.5275 7.47258 8.92856 5.50014 8.92856C3.77205 8.92856 2.33062 10.1559 2 11.7865V3Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M2.92773 12.5001C2.92773 11.08 4.079 9.92871 5.49916 9.92871C6.91932 9.92871 8.07059 11.08 8.07059 12.5001C8.07059 13.9203 6.91932 15.0716 5.49916 15.0716C4.079 15.0716 2.92773 13.9203 2.92773 12.5001Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5 16C7.91896 16 9.93671 17.7178 10.4 20C10.4656 20.3231 10.5 20.6575 10.5 21H0.5C0.5 20.6575 0.53443 20.3231 0.600018 20C1.06329 17.7178 3.08104 16 5.5 16Z",fill:"currentColor"}))},V=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=397C6794CC71BA5E64756E2164756E21
|
|
@@ -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 3H10.2676L12.2676 6H22V20H11.4169C11.4057 19.9333 11.3934 19.867 11.38 19.8011C10.9662 17.7626 9.52006 16.0992 7.6104 15.3816C8.49637 14.7317 9.07157 13.683 9.07157 12.5C9.07157 10.5275 7.47258 8.92856 5.50014 8.92856C3.77205 8.92856 2.33062 10.1559 2 11.7865V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.92773 12.5001C2.92773 11.08 4.079 9.92871 5.49916 9.92871C6.91932 9.92871 8.07059 11.08 8.07059 12.5001C8.07059 13.9203 6.91932 15.0716 5.49916 15.0716C4.079 15.0716 2.92773 13.9203 2.92773 12.
|
|
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 3H10.2676L12.2676 6H22V20H11.4169C11.4057 19.9333 11.3934 19.867 11.38 19.8011C10.9662 17.7626 9.52006 16.0992 7.6104 15.3816C8.49637 14.7317 9.07157 13.683 9.07157 12.5C9.07157 10.5275 7.47258 8.92856 5.50014 8.92856C3.77205 8.92856 2.33062 10.1559 2 11.7865V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.92773 12.5001C2.92773 11.08 4.079 9.92871 5.49916 9.92871C6.91932 9.92871 8.07059 11.08 8.07059 12.5001C8.07059 13.9203 6.91932 15.0716 5.49916 15.0716C4.079 15.0716 2.92773 13.9203 2.92773 12.5001Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.5 16C7.91896 16 9.93671 17.7178 10.4 20C10.4656 20.3231 10.5 20.6575 10.5 21H0.5C0.5 20.6575 0.53443 20.3231 0.600018 20C1.06329 17.7178 3.08104 16 5.5 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,wBAA0zB,EAA1zB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,4QAA4Q,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4MAA4M,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iKAAiK,KAAK,eAAc,CAAI,GAGpzB",
|
|
9
|
+
"debugId": "397C6794CC71BA5E64756E2164756E21",
|
|
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 l=({children:e,size:r=24,...t})=>{return C.createElement(p,{...t,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 d=(e)=>{return o.createElement(l,{...e},o.createElement(n,{d:"M2 3H10.2676L12.2676 6H22V20H11.4169C11.4057 19.9333 11.3934 19.867 11.38 19.8011C10.9662 17.7626 9.52006 16.0992 7.6104 15.3816C8.49637 14.7317 9.07157 13.683 9.07157 12.5C9.07157 10.5275 7.47258 8.92856 5.50014 8.92856C3.77205 8.92856 2.33062 10.1559 2 11.7865V3Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M2.92773 12.5001C2.92773 11.08 4.079 9.92871 5.49916 9.92871C6.91932 9.92871 8.07059 11.08 8.07059 12.5001C8.07059 13.9203 6.91932 15.0716 5.49916 15.0716C4.079 15.0716 2.92773 13.9203 2.92773 12.5001Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5 16C7.91896 16 9.93671 17.7178 10.4 20C10.4656 20.3231 10.5 20.6575 10.5 21H0.5C0.5 20.6575 0.53443 20.3231 0.600018 20C1.06329 17.7178 3.08104 16 5.5 16Z",fill:"currentColor"}))},x=d;export{x as default,d as IconFolderShared};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=A322DE8A2E0F9B7264756E2164756E21
|
|
@@ -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 3H10.2676L12.2676 6H22V20H11.4169C11.4057 19.9333 11.3934 19.867 11.38 19.8011C10.9662 17.7626 9.52006 16.0992 7.6104 15.3816C8.49637 14.7317 9.07157 13.683 9.07157 12.5C9.07157 10.5275 7.47258 8.92856 5.50014 8.92856C3.77205 8.92856 2.33062 10.1559 2 11.7865V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.92773 12.5001C2.92773 11.08 4.079 9.92871 5.49916 9.92871C6.91932 9.92871 8.07059 11.08 8.07059 12.5001C8.07059 13.9203 6.91932 15.0716 5.49916 15.0716C4.079 15.0716 2.92773 13.9203 2.92773 12.
|
|
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 3H10.2676L12.2676 6H22V20H11.4169C11.4057 19.9333 11.3934 19.867 11.38 19.8011C10.9662 17.7626 9.52006 16.0992 7.6104 15.3816C8.49637 14.7317 9.07157 13.683 9.07157 12.5C9.07157 10.5275 7.47258 8.92856 5.50014 8.92856C3.77205 8.92856 2.33062 10.1559 2 11.7865V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.92773 12.5001C2.92773 11.08 4.079 9.92871 5.49916 9.92871C6.91932 9.92871 8.07059 11.08 8.07059 12.5001C8.07059 13.9203 6.91932 15.0716 5.49916 15.0716C4.079 15.0716 2.92773 13.9203 2.92773 12.5001Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.5 16C7.91896 16 9.93671 17.7178 10.4 20C10.4656 20.3231 10.5 20.6575 10.5 21H0.5C0.5 20.6575 0.53443 20.3231 0.600018 20C1.06329 17.7178 3.08104 16 5.5 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,gBAA0zB,EAA1zB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,4QAA4Q,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iKAAiK,KAAK,eAAc,CAAI,GAGpzB",
|
|
9
|
+
"debugId": "A322DE8A2E0F9B7264756E2164756E21",
|
|
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 p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let C of i(r))if(!u.call(p,C))n(p,C,{get:d.bind(r,C),enumerable:!0});if(t)f.set(r,p);return p},I=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of 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 l=B(require("react"));var m=require("react-native-svg"),x=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(m.Path,{d:"M4 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4Z",fill:"currentColor"}),l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.3964 14.563C19.236 13.7235 20.5973 13.7235 21.4369 14.563C22.2765 15.4026 22.2765 16.7639 21.4369 17.6035L17.1869 21.8535C17.0931 21.9473 16.9659 21.9999 16.8333 21.9999H14.5C14.2239 21.9999 14 21.7761 14 21.4999V19.1666C14 19.034 14.0527 18.9068 14.1464 18.813L18.3964 14.563Z",fill:"currentColor"}))},M=x;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=EDCB7C50384AA10B64756E2164756E21
|
|
@@ -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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4Z\" 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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.3964 14.563C19.236 13.7235 20.5973 13.7235 21.4369 14.563C22.2765 15.4026 22.2765 16.7639 21.4369 17.6035L17.1869 21.8535C17.0931 21.9473 16.9659 21.9999 16.8333 21.9999H14.5C14.2239 21.9999 14 21.7761 14 21.4999V19.1666C14 19.034 14.0527 18.9068 14.1464 18.813L18.3964 14.563Z\" 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,wBAAgf,EAAhf,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sFAAsF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4RAA4R,KAAK,eAAc,CAAI,GAG1e",
|
|
9
|
+
"debugId": "EDCB7C50384AA10B64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconPageEdit/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import l from"react";import{Svg as C}from"react-native-svg";var t=({children:o,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"},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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"
|
|
1
|
+
import l from"react";import{Svg as C}from"react-native-svg";var t=({children:o,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"},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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.3964 14.563C19.236 13.7235 20.5973 13.7235 21.4369 14.563C22.2765 15.4026 22.2765 16.7639 21.4369 17.6035L17.1869 21.8535C17.0931 21.9473 16.9659 21.9999 16.8333 21.9999H14.5C14.2239 21.9999 14 21.7761 14 21.4999V19.1666C14 19.034 14.0527 18.9068 14.1464 18.813L18.3964 14.563Z",fill:"currentColor"}))},g=a;export{g as default,a as IconPageEdit};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=8594308711099B5864756E2164756E21
|
|
@@ -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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4Z\" 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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.3964 14.563C19.236 13.7235 20.5973 13.7235 21.4369 14.563C22.2765 15.4026 22.2765 16.7639 21.4369 17.6035L17.1869 21.8535C17.0931 21.9473 16.9659 21.9999 16.8333 21.9999H14.5C14.2239 21.9999 14 21.7761 14 21.4999V19.1666C14 19.034 14.0527 18.9068 14.1464 18.813L18.3964 14.563Z\" 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,gBAAgf,EAAhf,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sFAAsF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4RAA4R,KAAK,eAAc,CAAI,GAG1e",
|
|
9
|
+
"debugId": "8594308711099B5864756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:H,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:h}=Object,s=Object.prototype.hasOwnProperty;function u(o){return this[o]}var y,F,v=(o,e,r)=>{var n=o!=null&&typeof o==="object";if(n){var f=e?y??=new WeakMap:F??=new WeakMap,i=f.get(o);if(i)return i}r=o!=null?g(H(o)):{};let l=e||!o||!o.__esModule?t(r,"default",{value:o,enumerable:!0}):r;for(let C of c(o))if(!s.call(l,C))t(l,C,{get:u.bind(o,C),enumerable:!0});if(n)f.set(o,l);return l},x=(o)=>{var e=(m??=new WeakMap).get(o),r;if(e)return e;if(e=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of c(o))if(!s.call(e,n))t(e,n,{get:u.bind(o,n),enumerable:!(r=h(o,n))||r.enumerable})}return m.set(o,e),e},m;var M=(o)=>o;function S(o,e){this[o]=M.bind(null,e)}var B=(o,e)=>{for(var r in e)t(o,r,{get:e[r],enumerable:!0,configurable:!0,set:S.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:()=>V});module.exports=x(b);var p=v(require("react"));var d=require("react-native-svg"),V=(o)=>{return p.default.createElement(a,{...o},p.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4ZM8 6H16V7H8V6ZM8 10V11H12V10H8Z",fill:"currentColor"}),p.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.3964 14.563C19.236 13.7235 20.5973 13.7235 21.4369 14.563C22.2765 15.4026 22.2765 16.7639 21.4369 17.6035L17.1869 21.8535C17.0931 21.9473 16.9659 21.9999 16.8333 21.9999H14.5C14.2239 21.9999 14 21.7761 14 21.4999V19.1666C14 19.034 14.0527 18.9068 14.1464 18.813L18.3964 14.563Z",fill:"currentColor"}))},L=V;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=E6AC12096055182764756E2164756E21
|
|
@@ -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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4ZM8 6H16V7H8V6ZM8 10V11H12V10H8Z\" 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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4ZM8 6H16V7H8V6ZM8 10V11H12V10H8Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.3964 14.563C19.236 13.7235 20.5973 13.7235 21.4369 14.563C22.2765 15.4026 22.2765 16.7639 21.4369 17.6035L17.1869 21.8535C17.0931 21.9473 16.9659 21.9999 16.8333 21.9999H14.5C14.2239 21.9999 14 21.7761 14 21.4999V19.1666C14 19.034 14.0527 18.9068 14.1464 18.813L18.3964 14.563Z\" 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,wBAAqjB,EAArjB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qHAAqH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4RAA4R,KAAK,eAAc,CAAI,GAG/iB",
|
|
9
|
+
"debugId": "E6AC12096055182764756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import p from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:o=24,...l})=>{return p.createElement(C,{...l,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 t}from"react-native-svg";var a=(e)=>{return r.createElement(n,{...e},r.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4ZM8 6H16V7H8V6ZM8 10V11H12V10H8Z",fill:"currentColor"}),r.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:o=24,...l})=>{return p.createElement(C,{...l,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 t}from"react-native-svg";var a=(e)=>{return r.createElement(n,{...e},r.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4ZM8 6H16V7H8V6ZM8 10V11H12V10H8Z",fill:"currentColor"}),r.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.3964 14.563C19.236 13.7235 20.5973 13.7235 21.4369 14.563C22.2765 15.4026 22.2765 16.7639 21.4369 17.6035L17.1869 21.8535C17.0931 21.9473 16.9659 21.9999 16.8333 21.9999H14.5C14.2239 21.9999 14 21.7761 14 21.4999V19.1666C14 19.034 14.0527 18.9068 14.1464 18.813L18.3964 14.563Z",fill:"currentColor"}))},I=a;export{I as default,a as IconPageEditText};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=DC48A4748B775AE064756E2164756E21
|
|
@@ -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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4ZM8 6H16V7H8V6ZM8 10V11H12V10H8Z\" 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 22V2H20V12.9344C19.1663 12.9125 18.3256 13.2197 17.6893 13.8559L13 18.5453V22H4ZM8 6H16V7H8V6ZM8 10V11H12V10H8Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.3964 14.563C19.236 13.7235 20.5973 13.7235 21.4369 14.563C22.2765 15.4026 22.2765 16.7639 21.4369 17.6035L17.1869 21.8535C17.0931 21.9473 16.9659 21.9999 16.8333 21.9999H14.5C14.2239 21.9999 14 21.7761 14 21.4999V19.1666C14 19.034 14.0527 18.9068 14.1464 18.813L18.3964 14.563Z\" 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,gBAAqjB,EAArjB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qHAAqH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4RAA4R,KAAK,eAAc,CAAI,GAG/iB",
|
|
9
|
+
"debugId": "DC48A4748B775AE064756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|