@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.289 → 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/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
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:L,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var S,h,k=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var i=o?S??=new WeakMap:h??=new WeakMap,a=i.get(r);if(a)return a}e=r!=null?g(L(r)):{};let p=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let s of c(r))if(!d.call(p,s))l(p,s,{get:f.bind(r,s),enumerable:!0});if(C)i.set(r,p);return p},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 C of c(r))if(!d.call(o,C))l(o,C,{get:f.bind(r,C),enumerable:!(e=v(r,C))||e.enumerable})}return m.set(r,o),o},m;var y=(r)=>r;function F(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:F.bind(o,e)})};var b={};I(b,{CentralIconBase:()=>u});module.exports=B(b);var x=k(require("react")),M=require("react-native-svg"),u=({children:r,size:o=24,...e})=>{return x.default.createElement(M.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 q={};I(q,{default:()=>w,IconWindowSquareDelete:()=>P});module.exports=B(q);var n=k(require("react"));var t=require("react-native-svg"),P=(r)=>{return n.default.createElement(u,{...r},n.default.createElement(t.Path,{d:"M13.5 20.5H3.5V3.5H20.5V12.5",stroke:"currentColor"}),n.default.createElement(t.Path,{d:"M3.75 9.5H20.25",stroke:"currentColor"}),n.default.createElement(t.Path,{d:"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21.25 15.25L16.25 20.25",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M16.25 15.25L21.25 20.25",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},w=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=E079651E6437133564756E2164756E21
|
|
@@ -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=\"M13.5 20.5H3.5V3.5H20.5V12.5\" stroke=\"currentColor\"/><Path d=\"M3.75 9.5H20.25\" stroke=\"currentColor\"/><Path d=\"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z\" fill=\"currentColor\"/><Path d=\"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z\" fill=\"currentColor\"/><Path d=\"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z\" fill=\"currentColor\"/><Path d=\"M21.25 15.25L16.25 20.25\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M16.25 15.25L21.25 20.25\" stroke=\"currentColor\" strokeLinecap=\"square\" 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,wBAAy3B,EAAz3B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+BAA+B,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGn3B",
|
|
9
|
+
"debugId": "E079651E6437133564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:e=24,...C})=>{return l.createElement(p,{...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 s=(n)=>{return r.createElement(t,{...n},r.createElement(o,{d:"M13.5 20.5H3.5V3.5H20.5V12.5",stroke:"currentColor"}),r.createElement(o,{d:"M3.75 9.5H20.25",stroke:"currentColor"}),r.createElement(o,{d:"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z",fill:"currentColor"}),r.createElement(o,{d:"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z",fill:"currentColor"}),r.createElement(o,{d:"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z",fill:"currentColor"}),r.createElement(o,{d:"M21.25 15.25L16.25 20.25",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),r.createElement(o,{d:"M16.25 15.25L21.25 20.25",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},x=s;export{x as default,s as IconWindowSquareDelete};
|
|
2
|
+
|
|
3
|
+
//# debugId=9DF961FF0F94A77564756E2164756E21
|
|
@@ -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=\"M13.5 20.5H3.5V3.5H20.5V12.5\" stroke=\"currentColor\"/><Path d=\"M3.75 9.5H20.25\" stroke=\"currentColor\"/><Path d=\"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z\" fill=\"currentColor\"/><Path d=\"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z\" fill=\"currentColor\"/><Path d=\"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z\" fill=\"currentColor\"/><Path d=\"M21.25 15.25L16.25 20.25\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M16.25 15.25L21.25 20.25\" stroke=\"currentColor\" strokeLinecap=\"square\" 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,gBAAy3B,EAAz3B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+BAA+B,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGn3B",
|
|
9
|
+
"debugId": "9DF961FF0F94A77564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:S,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function d(r){return this[r]}var k,y,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var a=o?k??=new WeakMap:y??=new WeakMap,m=a.get(r);if(m)return m}e=r!=null?v(S(r)):{};let p=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let s of c(r))if(!i.call(p,s))l(p,s,{get:d.bind(r,s),enumerable:!0});if(t)a.set(r,p);return p},I=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!i.call(o,t))l(o,t,{get:d.bind(r,t),enumerable:!(e=h(r,t))||e.enumerable})}return f.set(r,o),o},f;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var P=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var b={};P(b,{CentralIconBase:()=>u});module.exports=I(b);var x=B(require("react")),M=require("react-native-svg"),u=({children:r,size:o=24,...e})=>{return x.default.createElement(M.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:()=>V,IconWindowSquarePlus:()=>g});module.exports=I(w);var n=B(require("react"));var C=require("react-native-svg"),g=(r)=>{return n.default.createElement(u,{...r},n.default.createElement(C.Path,{d:"M14 20.5H3.5V3.5H20.5V12",stroke:"currentColor"}),n.default.createElement(C.Path,{d:"M3.75 9.5H20.25",stroke:"currentColor"}),n.default.createElement(C.Path,{d:"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M18.5 14.5V20.5M15.5 17.5H21.5",stroke:"currentColor",strokeLinecap:"square"}))},V=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=EC8A5278426335D864756E2164756E21
|
|
@@ -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=\"M14 20.5H3.5V3.5H20.5V12\" stroke=\"currentColor\"/><Path d=\"M3.75 9.5H20.25\" stroke=\"currentColor\"/><Path d=\"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z\" fill=\"currentColor\"/><Path d=\"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z\" fill=\"currentColor\"/><Path d=\"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z\" fill=\"currentColor\"/><Path d=\"M18.5 14.5V20.5M15.5 17.5H21.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,wBAA4vB,EAA5vB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2BAA2B,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iCAAiC,OAAO,eAAe,cAAc,SAAQ,CAAI,GAGtvB",
|
|
9
|
+
"debugId": "EC8A5278426335D864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...C})=>{return l.createElement(p,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Path as e}from"react-native-svg";var s=(n)=>{return r.createElement(t,{...n},r.createElement(e,{d:"M14 20.5H3.5V3.5H20.5V12",stroke:"currentColor"}),r.createElement(e,{d:"M3.75 9.5H20.25",stroke:"currentColor"}),r.createElement(e,{d:"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z",fill:"currentColor"}),r.createElement(e,{d:"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z",fill:"currentColor"}),r.createElement(e,{d:"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z",fill:"currentColor"}),r.createElement(e,{d:"M18.5 14.5V20.5M15.5 17.5H21.5",stroke:"currentColor",strokeLinecap:"square"}))},x=s;export{x as default,s as IconWindowSquarePlus};
|
|
2
|
+
|
|
3
|
+
//# debugId=4D7DB5DE0CA9271D64756E2164756E21
|
|
@@ -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=\"M14 20.5H3.5V3.5H20.5V12\" stroke=\"currentColor\"/><Path d=\"M3.75 9.5H20.25\" stroke=\"currentColor\"/><Path d=\"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z\" fill=\"currentColor\"/><Path d=\"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z\" fill=\"currentColor\"/><Path d=\"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z\" fill=\"currentColor\"/><Path d=\"M18.5 14.5V20.5M15.5 17.5H21.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAA4vB,EAA5vB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2BAA2B,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iCAAiC,OAAO,eAAe,cAAc,SAAQ,CAAI,GAGtvB",
|
|
9
|
+
"debugId": "4D7DB5DE0CA9271D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|