@central-icons-react-native/round-outlined-radius-1-stroke-2 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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWindowSquareDelete: FC<CentralIconBaseProps>;
4
+ export default IconWindowSquareDelete;
@@ -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 20H5C4.44772 20 4 19.5523 4 19V5C4 4.44772 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V12",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=7D10D7064CAFBA5364756E2164756E21
@@ -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 20H5C4.44772 20 4 19.5523 4 19V5C4 4.44772 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V12\" 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": "7D10D7064CAFBA5364756E2164756E21",
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 20H5C4.44772 20 4 19.5523 4 19V5C4 4.44772 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V12",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=2DF10FFB6186135364756E2164756E21
@@ -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 20H5C4.44772 20 4 19.5523 4 19V5C4 4.44772 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V12\" 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": "2DF10FFB6186135364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWindowSquarePlus: FC<CentralIconBaseProps>;
4
+ export default IconWindowSquarePlus;
@@ -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 10H20V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 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=EE79A313C6F3AE8E64756E2164756E21
@@ -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 10H20V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 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": "EE79A313C6F3AE8E64756E2164756E21",
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 10H20V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 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=58497FE86F506FC164756E2164756E21
@@ -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 10H20V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 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": "58497FE86F506FC164756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1295,6 +1295,8 @@ Below is a complete list of available icons:
1295
1295
  - IconCard
1296
1296
  - IconUnblock
1297
1297
  - IconWindowSquare
1298
+ - IconWindowSquarePlus
1299
+ - IconWindowSquareDelete
1298
1300
 
1299
1301
  ### Keyboard
1300
1302