@central-icons-react-native/round-outlined-radius-3-stroke-2 1.1.288 → 1.1.290
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/IconPackageDelivery/index.js +2 -2
- package/IconPackageDelivery/index.js.map +3 -3
- package/IconPackageDelivery/index.mjs +2 -2
- package/IconPackageDelivery/index.mjs.map +3 -3
- package/IconWindowSquareDelete/index.d.ts +4 -0
- package/IconWindowSquareDelete/index.js +3 -0
- package/IconWindowSquareDelete/index.js.map +11 -0
- package/IconWindowSquareDelete/index.mjs +3 -0
- package/IconWindowSquareDelete/index.mjs.map +11 -0
- package/IconWindowSquarePlus/index.d.ts +4 -0
- package/IconWindowSquarePlus/index.js +3 -0
- package/IconWindowSquarePlus/index.js.map +11 -0
- package/IconWindowSquarePlus/index.mjs +3 -0
- package/IconWindowSquarePlus/index.mjs.map +11 -0
- package/README.md +2 -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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:x,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,l=Object.prototype.hasOwnProperty;function m(r){return this[r]}var j,y,L=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var k=o?j??=new WeakMap:y??=new WeakMap,u=k.get(r);if(u)return u}e=r!=null?g(x(r)):{};let p=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let C of c(r))if(!l.call(p,C))i(p,C,{get:m.bind(r,C),enumerable:!0});if(n)k.set(r,p);return p},f=(r)=>{var o=(a??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!l.call(o,n))i(o,n,{get:m.bind(r,n),enumerable:!(e=v(r,n))||e.enumerable})}return a.set(r,o),o},a;var M=(r)=>r;function W(r,o){this[r]=M.bind(null,o)}var h=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:W.bind(o,e)})};var F={};h(F,{CentralIconBase:()=>d});module.exports=f(F);var B=L(require("react")),I=require("react-native-svg"),d=({children:r,size:o=24,...e})=>{return B.default.createElement(I.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 S={};h(S,{default:()=>V,IconPackageDelivery:()=>P});module.exports=f(S);var t=L(require("react"));var s=require("react-native-svg"),P=(r)=>{return t.default.createElement(d,{...r},t.default.createElement(s.Path,{d:"M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17C4 15.3431 5.34315 14 7 14C8.65685 14 10 15.3431 10 17Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M11 8C11 6.34315 12.3431 5 14 5H17C18.6569 5 20 6.34315 20 8V10C20 11.6569 18.6569 13 17 13H14C12.3431 13 11 11.6569 11 10V8Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M7 14V7C7 5.34315 5.65685 4 4 4",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M10 17H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M15.5 8V5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},V=P;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=83E29A896AEE710D64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPackageDelivery/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 IconPackageDelivery: 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 IconPackageDelivery: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17C4 15.3431 5.34315 14 7 14C8.65685 14 10 15.3431 10 17Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M11 8C11 6.34315 12.3431 5 14 5H17C18.6569 5 20 6.34315 20 8V10C20 11.6569 18.6569 13 17 13H14C12.3431 13 11 11.6569 11 10V8Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7 14V7C7 5.34315 5.65685 4 4 4\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 17H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15.5 8V5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPackageDelivery;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAAyxB,EAAzxB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qHAAqH,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gIAAgI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kCAAkC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGnxB",
|
|
9
|
+
"debugId": "83E29A896AEE710D64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...s})=>{return i.createElement(p,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n)};import o from"react";import{Path as e}from"react-native-svg";var C=(n)=>{return o.createElement(t,{...n},o.createElement(e,{d:"M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17C4 15.3431 5.34315 14 7 14C8.65685 14 10 15.3431 10 17Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M11 8C11 6.34315 12.3431 5 14 5H17C18.6569 5 20 6.34315 20 8V10C20 11.6569 18.6569 13 17 13H14C12.3431 13 11 11.6569 11 10V8Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M7 14V7C7 5.34315 5.65685 4 4 4",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M10 17H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M15.5 8V5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},B=C;export{B as default,C as IconPackageDelivery};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=47735B43A3A5648B64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPackageDelivery/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 IconPackageDelivery: 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 IconPackageDelivery: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17C4 15.3431 5.34315 14 7 14C8.65685 14 10 15.3431 10 17Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M11 8C11 6.34315 12.3431 5 14 5H17C18.6569 5 20 6.34315 20 8V10C20 11.6569 18.6569 13 17 13H14C12.3431 13 11 11.6569 11 10V8Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7 14V7C7 5.34315 5.65685 4 4 4\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 17H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15.5 8V5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPackageDelivery;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAyxB,EAAzxB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qHAAqH,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gIAAgI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,kCAAkC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGnxB",
|
|
9
|
+
"debugId": "47735B43A3A5648B64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var M=Object.create;var{getPrototypeOf:P,defineProperty:s,getOwnPropertyNames:a,getOwnPropertyDescriptor:g}=Object,c=Object.prototype.hasOwnProperty;function m(r){return this[r]}var v,S,f=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var d=o?v??=new WeakMap:S??=new WeakMap,u=d.get(r);if(u)return u}e=r!=null?M(P(r)):{};let i=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;for(let p of a(r))if(!c.call(i,p))s(i,p,{get:m.bind(r,p),enumerable:!0});if(C)d.set(r,i);return i},L=(r)=>{var o=(k??=new WeakMap).get(r),e;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of a(r))if(!c.call(o,C))s(o,C,{get:m.bind(r,C),enumerable:!(e=g(r,C))||e.enumerable})}return k.set(r,o),o},k;var W=(r)=>r;function j(r,o){this[r]=W.bind(null,o)}var h=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:j.bind(o,e)})};var y={};h(y,{CentralIconBase:()=>l});module.exports=L(y);var B=f(require("react")),I=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return B.default.createElement(I.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 F={};h(F,{default:()=>b,IconWindowSquareDelete:()=>x});module.exports=L(F);var n=f(require("react"));var t=require("react-native-svg"),x=(r)=>{return n.default.createElement(l,{...r},n.default.createElement(t.Path,{d:"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M17 16L21 20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M21 16L17 20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M13 20H7C5.34315 20 4 18.6569 4 17V7C4 5.34315 5.34315 4 7 4H17C18.6569 4 20 5.34315 20 7V12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M4.75 10H19.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},b=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=8721D0612253107964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquareDelete/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 IconWindowSquareDelete: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z\" fill=\"currentColor\"/><Path d=\"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z\" fill=\"currentColor\"/><Path d=\"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z\" fill=\"currentColor\"/><Path d=\"M17 16L21 20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M21 16L17 20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13 20H7C5.34315 20 4 18.6569 4 17V7C4 5.34315 5.34315 4 7 4H17C18.6569 4 20 5.34315 20 7V12\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M4.75 10H19.25\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquareDelete;\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,kFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAmD,CAAC,IAAU,CACzE,OAAO,wBAA08B,EAA18B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,wGAAwG,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8HAA8H,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+FAA+F,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGp8B",
|
|
9
|
+
"debugId": "8721D0612253107964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as i}from"react-native-svg";var t=({children:n,size:e=24,...C})=>{return s.createElement(i,{...C,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Path as o}from"react-native-svg";var p=(n)=>{return r.createElement(t,{...n},r.createElement(o,{d:"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z",fill:"currentColor"}),r.createElement(o,{d:"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z",fill:"currentColor"}),r.createElement(o,{d:"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z",fill:"currentColor"}),r.createElement(o,{d:"M17 16L21 20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M21 16L17 20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M13 20H7C5.34315 20 4 18.6569 4 17V7C4 5.34315 5.34315 4 7 4H17C18.6569 4 20 5.34315 20 7V12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M4.75 10H19.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},B=p;export{B as default,p as IconWindowSquareDelete};
|
|
2
|
+
|
|
3
|
+
//# debugId=EC9032BFCEE626C364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquareDelete/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 IconWindowSquareDelete: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z\" fill=\"currentColor\"/><Path d=\"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z\" fill=\"currentColor\"/><Path d=\"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z\" fill=\"currentColor\"/><Path d=\"M17 16L21 20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M21 16L17 20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13 20H7C5.34315 20 4 18.6569 4 17V7C4 5.34315 5.34315 4 7 4H17C18.6569 4 20 5.34315 20 7V12\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M4.75 10H19.25\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquareDelete;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAA08B,EAA18B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,wGAAwG,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8HAA8H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,+FAA+F,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGp8B",
|
|
9
|
+
"debugId": "EC9032BFCEE626C364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:M,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:v}=Object,c=Object.prototype.hasOwnProperty;function f(r){return this[r]}var S,y,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var u=o?S??=new WeakMap:y??=new WeakMap,a=u.get(r);if(a)return a}e=r!=null?h(M(r)):{};let l=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let s of m(r))if(!c.call(l,s))p(l,s,{get:f.bind(r,s),enumerable:!0});if(n)u.set(r,l);return l},I=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of m(r))if(!c.call(o,n))p(o,n,{get:f.bind(r,n),enumerable:!(e=v(r,n))||e.enumerable})}return d.set(r,o),o},d;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var P=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var b={};P(b,{CentralIconBase:()=>i});module.exports=I(b);var k=B(require("react")),x=require("react-native-svg"),i=({children:r,size:o=24,...e})=>{return k.default.createElement(x.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var w={};P(w,{default:()=>L,IconWindowSquarePlus:()=>g});module.exports=I(w);var t=B(require("react"));var C=require("react-native-svg"),g=(r)=>{return t.default.createElement(i,{...r},t.default.createElement(C.Path,{d:"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z",fill:"currentColor"}),t.default.createElement(C.Path,{d:"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z",fill:"currentColor"}),t.default.createElement(C.Path,{d:"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z",fill:"currentColor"}),t.default.createElement(C.Path,{d:"M4.75 10H20V7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H11.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(C.Path,{d:"M18 14V20M15 17H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))},L=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=F15863D9CFACDE4064756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquarePlus/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 IconWindowSquarePlus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z\" fill=\"currentColor\"/><Path d=\"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z\" fill=\"currentColor\"/><Path d=\"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z\" fill=\"currentColor\"/><Path d=\"M4.75 10H20V7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H11.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M18 14V20M15 17H21\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquarePlus;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,gFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAiD,CAAC,IAAU,CACvE,OAAO,wBAAwuB,EAAxuB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,wGAAwG,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8HAA8H,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,GAGluB",
|
|
9
|
+
"debugId": "F15863D9CFACDE4064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var t=({children:n,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"},n)};import o from"react";import{Path as e}from"react-native-svg";var s=(n)=>{return o.createElement(t,{...n},o.createElement(e,{d:"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z",fill:"currentColor"}),o.createElement(e,{d:"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z",fill:"currentColor"}),o.createElement(e,{d:"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z",fill:"currentColor"}),o.createElement(e,{d:"M4.75 10H20V7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H11.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M18 14V20M15 17H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))},k=s;export{k as default,s as IconWindowSquarePlus};
|
|
2
|
+
|
|
3
|
+
//# debugId=2395874C6AFF6D3A64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquarePlus/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 IconWindowSquarePlus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z\" fill=\"currentColor\"/><Path d=\"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z\" fill=\"currentColor\"/><Path d=\"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z\" fill=\"currentColor\"/><Path d=\"M4.75 10H20V7C20 5.34315 18.6569 4 17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H11.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M18 14V20M15 17H21\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquarePlus;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAwuB,EAAxuB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,wGAAwG,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8HAA8H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sGAAsG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,GAGluB",
|
|
9
|
+
"debugId": "2395874C6AFF6D3A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|