@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.284 → 1.1.286

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 IconCompassPointerSquare: FC<CentralIconBaseProps>;
4
+ export default IconCompassPointerSquare;
@@ -0,0 +1,3 @@
1
+ var S=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var F,L,B=(o,r,C)=>{var e=o!=null&&typeof o==="object";if(e){var m=r?F??=new WeakMap:L??=new WeakMap,s=m.get(o);if(s)return s}C=o!=null?S(h(o)):{};let n=r||!o||!o.__esModule?t(C,"default",{value:o,enumerable:!0}):C;for(let p of f(o))if(!i.call(n,p))t(n,p,{get:u.bind(o,p),enumerable:!0});if(e)m.set(o,n);return n},I=(o)=>{var r=(c??=new WeakMap).get(o),C;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of f(o))if(!i.call(r,e))t(r,e,{get:u.bind(o,e),enumerable:!(C=y(o,e))||C.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function w(o,r){this[o]=b.bind(null,r)}var P=(o,r)=>{for(var C in r)t(o,C,{get:r[C],enumerable:!0,configurable:!0,set:w.bind(r,C)})};var H={};P(H,{CentralIconBase:()=>l});module.exports=I(H);var d=B(require("react")),v=require("react-native-svg"),l=({children:o,size:r=24,...C})=>{return d.default.createElement(v.Svg,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var M={};P(M,{default:()=>V,IconCompassPointerSquare:()=>g});module.exports=I(M);var a=B(require("react"));var x=require("react-native-svg"),g=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M17.3213 3C17.8632 3 18.3004 3.00038 18.6543 3.0293C19.0186 3.05907 19.3387 3.12163 19.6348 3.27246C20.1052 3.51214 20.4879 3.89483 20.7275 4.36523C20.8784 4.66133 20.9409 4.98136 20.9707 5.3457C20.9996 5.69964 21 6.13682 21 6.67871V17.3213C21 17.8632 20.9996 18.3004 20.9707 18.6543C20.9409 19.0186 20.8784 19.3387 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.3387 20.8784 19.0186 20.9409 18.6543 20.9707C18.3004 20.9996 17.8632 21 17.3213 21H6.67871C6.13682 21 5.69964 20.9996 5.3457 20.9707C4.98136 20.9409 4.66133 20.8784 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.12163 19.3387 3.05907 19.0186 3.0293 18.6543C3.00038 18.3004 3 17.8632 3 17.3213V6.67871C3 6.13682 3.00038 5.69964 3.0293 5.3457C3.05907 4.98136 3.12163 4.66133 3.27246 4.36523C3.51214 3.89483 3.89483 3.51214 4.36523 3.27246C4.66133 3.12163 4.98136 3.05907 5.3457 3.0293C5.69964 3.00038 6.13682 3 6.67871 3H17.3213ZM12.8936 7.80762C12.5244 7.07288 11.4756 7.07288 11.1064 7.80762L7.41895 15.1562C7.00031 15.9906 7.85194 16.8932 8.70898 16.5234L12 15.1025L15.291 16.5234C16.1481 16.8932 16.9997 15.9906 16.5811 15.1562L12.8936 7.80762Z",fill:"currentColor"}))},V=g;
2
+
3
+ //# debugId=AD284D640B6EE10064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/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 IconCompassPointerSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.3213 3C17.8632 3 18.3004 3.00038 18.6543 3.0293C19.0186 3.05907 19.3387 3.12163 19.6348 3.27246C20.1052 3.51214 20.4879 3.89483 20.7275 4.36523C20.8784 4.66133 20.9409 4.98136 20.9707 5.3457C20.9996 5.69964 21 6.13682 21 6.67871V17.3213C21 17.8632 20.9996 18.3004 20.9707 18.6543C20.9409 19.0186 20.8784 19.3387 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.3387 20.8784 19.0186 20.9409 18.6543 20.9707C18.3004 20.9996 17.8632 21 17.3213 21H6.67871C6.13682 21 5.69964 20.9996 5.3457 20.9707C4.98136 20.9409 4.66133 20.8784 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.12163 19.3387 3.05907 19.0186 3.0293 18.6543C3.00038 18.3004 3 17.8632 3 17.3213V6.67871C3 6.13682 3.00038 5.69964 3.0293 5.3457C3.05907 4.98136 3.12163 4.66133 3.27246 4.36523C3.51214 3.89483 3.89483 3.51214 4.36523 3.27246C4.66133 3.12163 4.98136 3.05907 5.3457 3.0293C5.69964 3.00038 6.13682 3 6.67871 3H17.3213ZM12.8936 7.80762C12.5244 7.07288 11.4756 7.07288 11.1064 7.80762L7.41895 15.1562C7.00031 15.9906 7.85194 16.8932 8.70898 16.5234L12 15.1025L15.291 16.5234C16.1481 16.8932 16.9997 15.9906 16.5811 15.1562L12.8936 7.80762Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\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,oFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqD,CAAC,IAAU,CAC3E,OAAO,wBAAguC,EAAhuC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+nCAA+nC,KAAK,eAAc,CAAI,GAG1tC",
9
+ "debugId": "AD284D640B6EE10064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import n from"react";import{Svg as p}from"react-native-svg";var C=({children:r,size:o=24,...t})=>{return n.createElement(p,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import e from"react";import{Path as l}from"react-native-svg";var a=(r)=>{return e.createElement(C,{...r},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M17.3213 3C17.8632 3 18.3004 3.00038 18.6543 3.0293C19.0186 3.05907 19.3387 3.12163 19.6348 3.27246C20.1052 3.51214 20.4879 3.89483 20.7275 4.36523C20.8784 4.66133 20.9409 4.98136 20.9707 5.3457C20.9996 5.69964 21 6.13682 21 6.67871V17.3213C21 17.8632 20.9996 18.3004 20.9707 18.6543C20.9409 19.0186 20.8784 19.3387 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.3387 20.8784 19.0186 20.9409 18.6543 20.9707C18.3004 20.9996 17.8632 21 17.3213 21H6.67871C6.13682 21 5.69964 20.9996 5.3457 20.9707C4.98136 20.9409 4.66133 20.8784 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.12163 19.3387 3.05907 19.0186 3.0293 18.6543C3.00038 18.3004 3 17.8632 3 17.3213V6.67871C3 6.13682 3.00038 5.69964 3.0293 5.3457C3.05907 4.98136 3.12163 4.66133 3.27246 4.36523C3.51214 3.89483 3.89483 3.51214 4.36523 3.27246C4.66133 3.12163 4.98136 3.05907 5.3457 3.0293C5.69964 3.00038 6.13682 3 6.67871 3H17.3213ZM12.8936 7.80762C12.5244 7.07288 11.4756 7.07288 11.1064 7.80762L7.41895 15.1562C7.00031 15.9906 7.85194 16.8932 8.70898 16.5234L12 15.1025L15.291 16.5234C16.1481 16.8932 16.9997 15.9906 16.5811 15.1562L12.8936 7.80762Z",fill:"currentColor"}))},v=a;export{v as default,a as IconCompassPointerSquare};
2
+
3
+ //# debugId=6C058CA32E34B6AF64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/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 IconCompassPointerSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.3213 3C17.8632 3 18.3004 3.00038 18.6543 3.0293C19.0186 3.05907 19.3387 3.12163 19.6348 3.27246C20.1052 3.51214 20.4879 3.89483 20.7275 4.36523C20.8784 4.66133 20.9409 4.98136 20.9707 5.3457C20.9996 5.69964 21 6.13682 21 6.67871V17.3213C21 17.8632 20.9996 18.3004 20.9707 18.6543C20.9409 19.0186 20.8784 19.3387 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.3387 20.8784 19.0186 20.9409 18.6543 20.9707C18.3004 20.9996 17.8632 21 17.3213 21H6.67871C6.13682 21 5.69964 20.9996 5.3457 20.9707C4.98136 20.9409 4.66133 20.8784 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.12163 19.3387 3.05907 19.0186 3.0293 18.6543C3.00038 18.3004 3 17.8632 3 17.3213V6.67871C3 6.13682 3.00038 5.69964 3.0293 5.3457C3.05907 4.98136 3.12163 4.66133 3.27246 4.36523C3.51214 3.89483 3.89483 3.51214 4.36523 3.27246C4.66133 3.12163 4.98136 3.05907 5.3457 3.0293C5.69964 3.00038 6.13682 3 6.67871 3H17.3213ZM12.8936 7.80762C12.5244 7.07288 11.4756 7.07288 11.1064 7.80762L7.41895 15.1562C7.00031 15.9906 7.85194 16.8932 8.70898 16.5234L12 15.1025L15.291 16.5234C16.1481 16.8932 16.9997 15.9906 16.5811 15.1562L12.8936 7.80762Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAguC,EAAhuC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+nCAA+nC,KAAK,eAAc,CAAI,GAG1tC",
9
+ "debugId": "6C058CA32E34B6AF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var M=Object.create;var{getPrototypeOf:Z,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function d(o){return this[o]}var y,F,B=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var f=r?y??=new WeakMap:F??=new WeakMap,s=f.get(o);if(s)return s}e=o!=null?M(Z(o)):{};let C=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let l of i(o))if(!u.call(C,l))t(C,l,{get:d.bind(o,l),enumerable:!0});if(n)f.set(o,C);return C},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of i(o))if(!u.call(r,n))t(r,n,{get:d.bind(o,n),enumerable:!(e=h(o,n))||e.enumerable})}return c.set(o,r),r},c;var H=(o)=>o;function S(o,r){this[o]=H.bind(null,r)}var v=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var V={};v(V,{CentralIconBase:()=>a});module.exports=I(V);var x=B(require("react")),P=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return x.default.createElement(P.Svg,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var b={};v(b,{default:()=>w,IconWindow2:()=>g});module.exports=I(b);var p=B(require("react"));var m=require("react-native-svg"),g=(o)=>{return p.default.createElement(a,{...o},p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 4C3.11929 4 2 5.11929 2 6.5V10H22V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM5 7C5 6.72386 5.22386 6.5 5.5 6.5C5.77614 6.5 6 6.72386 6 7C6 7.27614 5.77614 7.5 5.5 7.5C5.22386 7.5 5 7.27614 5 7ZM7 7C7 6.72386 7.22386 6.5 7.5 6.5C7.77614 6.5 8 6.72386 8 7C8 7.27614 7.77614 7.5 7.5 7.5C7.22386 7.5 7 7.27614 7 7ZM9 7C9 6.72386 9.22386 6.5 9.5 6.5C9.77614 6.5 10 6.72386 10 7C10 7.27614 9.77614 7.5 9.5 7.5C9.22386 7.5 9 7.27614 9 7Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M2 17.5V11H22V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5Z",fill:"currentColor"}))},w=g;
1
+ var M=Object.create;var{getPrototypeOf:Z,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function d(o){return this[o]}var y,F,B=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var f=r?y??=new WeakMap:F??=new WeakMap,s=f.get(o);if(s)return s}e=o!=null?M(Z(o)):{};let C=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let l of i(o))if(!u.call(C,l))t(C,l,{get:d.bind(o,l),enumerable:!0});if(n)f.set(o,C);return C},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of i(o))if(!u.call(r,n))t(r,n,{get:d.bind(o,n),enumerable:!(e=h(o,n))||e.enumerable})}return c.set(o,r),r},c;var H=(o)=>o;function S(o,r){this[o]=H.bind(null,r)}var v=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var V={};v(V,{CentralIconBase:()=>a});module.exports=I(V);var x=B(require("react")),P=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return x.default.createElement(P.Svg,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var b={};v(b,{default:()=>w,IconWindow2:()=>g});module.exports=I(b);var p=B(require("react"));var m=require("react-native-svg"),g=(o)=>{return p.default.createElement(a,{...o},p.default.createElement(m.Path,{d:"M22 17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V11H22V17.5Z",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V10H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM5.75 6.25C5.33579 6.25 5 6.58579 5 7C5 7.41421 5.33579 7.75 5.75 7.75C6.16421 7.75 6.5 7.41421 6.5 7C6.5 6.58579 6.16421 6.25 5.75 6.25ZM8.25 6.25C7.83579 6.25 7.5 6.58579 7.5 7C7.5 7.41421 7.83579 7.75 8.25 7.75C8.66421 7.75 9 7.41421 9 7C9 6.58579 8.66421 6.25 8.25 6.25ZM10.75 6.25C10.3358 6.25 10 6.58579 10 7C10 7.41421 10.3358 7.75 10.75 7.75C11.1642 7.75 11.5 7.41421 11.5 7C11.5 6.58579 11.1642 6.25 10.75 6.25Z",fill:"currentColor"}))},w=g;
2
2
 
3
- //# debugId=142E6D5DFDFBAF4864756E2164756E21
3
+ //# debugId=BEE4F3B240408A4A64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindow2/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 IconWindow2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 4C3.11929 4 2 5.11929 2 6.5V10H22V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM5 7C5 6.72386 5.22386 6.5 5.5 6.5C5.77614 6.5 6 6.72386 6 7C6 7.27614 5.77614 7.5 5.5 7.5C5.22386 7.5 5 7.27614 5 7ZM7 7C7 6.72386 7.22386 6.5 7.5 6.5C7.77614 6.5 8 6.72386 8 7C8 7.27614 7.77614 7.5 7.5 7.5C7.22386 7.5 7 7.27614 7 7ZM9 7C9 6.72386 9.22386 6.5 9.5 6.5C9.77614 6.5 10 6.72386 10 7C10 7.27614 9.77614 7.5 9.5 7.5C9.22386 7.5 9 7.27614 9 7Z\" fill=\"currentColor\"/><Path d=\"M2 17.5V11H22V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindow2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M22 17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V11H22V17.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V10H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM5.75 6.25C5.33579 6.25 5 6.58579 5 7C5 7.41421 5.33579 7.75 5.75 7.75C6.16421 7.75 6.5 7.41421 6.5 7C6.5 6.58579 6.16421 6.25 5.75 6.25ZM8.25 6.25C7.83579 6.25 7.5 6.58579 7.5 7C7.5 7.41421 7.83579 7.75 8.25 7.75C8.66421 7.75 9 7.41421 9 7C9 6.58579 8.66421 6.25 8.25 6.25ZM10.75 6.25C10.3358 6.25 10 6.58579 10 7C10 7.41421 10.3358 7.75 10.75 7.75C11.1642 7.75 11.5 7.41421 11.5 7C11.5 6.58579 11.1642 6.25 10.75 6.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\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,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAkoB,EAAloB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gbAAgb,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,CAAI,GAG5nB",
9
- "debugId": "142E6D5DFDFBAF4864756E2164756E21",
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,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAssB,EAAtsB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mfAAmf,KAAK,eAAc,CAAI,GAGhsB",
9
+ "debugId": "BEE4F3B240408A4A64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";import{Svg as l}from"react-native-svg";var n=({children:r,size:o=24,...C})=>{return p.createElement(l,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import e from"react";import{Path as t}from"react-native-svg";var a=(r)=>{return e.createElement(n,{...r},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 4C3.11929 4 2 5.11929 2 6.5V10H22V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM5 7C5 6.72386 5.22386 6.5 5.5 6.5C5.77614 6.5 6 6.72386 6 7C6 7.27614 5.77614 7.5 5.5 7.5C5.22386 7.5 5 7.27614 5 7ZM7 7C7 6.72386 7.22386 6.5 7.5 6.5C7.77614 6.5 8 6.72386 8 7C8 7.27614 7.77614 7.5 7.5 7.5C7.22386 7.5 7 7.27614 7 7ZM9 7C9 6.72386 9.22386 6.5 9.5 6.5C9.77614 6.5 10 6.72386 10 7C10 7.27614 9.77614 7.5 9.5 7.5C9.22386 7.5 9 7.27614 9 7Z",fill:"currentColor"}),e.createElement(t,{d:"M2 17.5V11H22V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconWindow2};
1
+ import p from"react";import{Svg as l}from"react-native-svg";var n=({children:r,size:o=24,...C})=>{return p.createElement(l,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import e from"react";import{Path as t}from"react-native-svg";var a=(r)=>{return e.createElement(n,{...r},e.createElement(t,{d:"M22 17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V11H22V17.5Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V10H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM5.75 6.25C5.33579 6.25 5 6.58579 5 7C5 7.41421 5.33579 7.75 5.75 7.75C6.16421 7.75 6.5 7.41421 6.5 7C6.5 6.58579 6.16421 6.25 5.75 6.25ZM8.25 6.25C7.83579 6.25 7.5 6.58579 7.5 7C7.5 7.41421 7.83579 7.75 8.25 7.75C8.66421 7.75 9 7.41421 9 7C9 6.58579 8.66421 6.25 8.25 6.25ZM10.75 6.25C10.3358 6.25 10 6.58579 10 7C10 7.41421 10.3358 7.75 10.75 7.75C11.1642 7.75 11.5 7.41421 11.5 7C11.5 6.58579 11.1642 6.25 10.75 6.25Z",fill:"currentColor"}))},x=a;export{x as default,a as IconWindow2};
2
2
 
3
- //# debugId=1D2A5C85AEB6E25164756E2164756E21
3
+ //# debugId=4C6C5C421BA98A2364756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindow2/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 IconWindow2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 4C3.11929 4 2 5.11929 2 6.5V10H22V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM5 7C5 6.72386 5.22386 6.5 5.5 6.5C5.77614 6.5 6 6.72386 6 7C6 7.27614 5.77614 7.5 5.5 7.5C5.22386 7.5 5 7.27614 5 7ZM7 7C7 6.72386 7.22386 6.5 7.5 6.5C7.77614 6.5 8 6.72386 8 7C8 7.27614 7.77614 7.5 7.5 7.5C7.22386 7.5 7 7.27614 7 7ZM9 7C9 6.72386 9.22386 6.5 9.5 6.5C9.77614 6.5 10 6.72386 10 7C10 7.27614 9.77614 7.5 9.5 7.5C9.22386 7.5 9 7.27614 9 7Z\" fill=\"currentColor\"/><Path d=\"M2 17.5V11H22V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindow2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M22 17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V11H22V17.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V10H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM5.75 6.25C5.33579 6.25 5 6.58579 5 7C5 7.41421 5.33579 7.75 5.75 7.75C6.16421 7.75 6.5 7.41421 6.5 7C6.5 6.58579 6.16421 6.25 5.75 6.25ZM8.25 6.25C7.83579 6.25 7.5 6.58579 7.5 7C7.5 7.41421 7.83579 7.75 8.25 7.75C8.66421 7.75 9 7.41421 9 7C9 6.58579 8.66421 6.25 8.25 6.25ZM10.75 6.25C10.3358 6.25 10 6.58579 10 7C10 7.41421 10.3358 7.75 10.75 7.75C11.1642 7.75 11.5 7.41421 11.5 7C11.5 6.58579 11.1642 6.25 10.75 6.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\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,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAkoB,EAAloB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gbAAgb,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,CAAI,GAG5nB",
9
- "debugId": "1D2A5C85AEB6E25164756E2164756E21",
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,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAssB,EAAtsB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mfAAmf,KAAK,eAAc,CAAI,GAGhsB",
9
+ "debugId": "4C6C5C421BA98A2364756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var M=Object.create;var{getPrototypeOf:Z,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,c=Object.prototype.hasOwnProperty;function d(r){return this[r]}var y,F,B=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var m=o?y??=new WeakMap:F??=new WeakMap,a=m.get(r);if(a)return a}e=r!=null?M(Z(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let f of u(r))if(!c.call(p,f))t(p,f,{get:d.bind(r,f),enumerable:!0});if(C)m.set(r,p);return p},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of u(r))if(!c.call(o,C))t(o,C,{get:d.bind(r,C),enumerable:!(e=h(r,C))||e.enumerable})}return s.set(r,o),o},s;var H=(r)=>r;function S(r,o){this[r]=H.bind(null,o)}var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var V={};v(V,{CentralIconBase:()=>i});module.exports=I(V);var x=B(require("react")),P=require("react-native-svg"),i=({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 b={};v(b,{default:()=>w,IconWindowApp:()=>g});module.exports=I(b);var n=B(require("react"));var l=require("react-native-svg"),g=(r)=>{return n.default.createElement(i,{...r},n.default.createElement(l.Path,{d:"M5 7.5C5 7.22386 5.22386 7 5.5 7C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8C5.22386 8 5 7.77614 5 7.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M9 7.5C9 7.22386 9.22386 7 9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 4C3.11929 4 2 5.11929 2 6.5V17.5C2 18.8807 3.11929 20 4.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM21 10V6.5C21 5.67157 20.3284 5 19.5 5H4.5C3.67157 5 3 5.67157 3 6.5V10H21Z",fill:"currentColor"}))},w=g;
1
+ var M=Object.create;var{getPrototypeOf:Z,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,c=Object.prototype.hasOwnProperty;function d(r){return this[r]}var y,F,B=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var m=o?y??=new WeakMap:F??=new WeakMap,a=m.get(r);if(a)return a}e=r!=null?M(Z(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let f of u(r))if(!c.call(p,f))t(p,f,{get:d.bind(r,f),enumerable:!0});if(C)m.set(r,p);return p},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of u(r))if(!c.call(o,C))t(o,C,{get:d.bind(r,C),enumerable:!(e=h(r,C))||e.enumerable})}return s.set(r,o),o},s;var H=(r)=>r;function S(r,o){this[r]=H.bind(null,o)}var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var V={};v(V,{CentralIconBase:()=>i});module.exports=I(V);var x=B(require("react")),P=require("react-native-svg"),i=({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 b={};v(b,{default:()=>w,IconWindowApp:()=>g});module.exports=I(b);var n=B(require("react"));var l=require("react-native-svg"),g=(r)=>{return n.default.createElement(i,{...r},n.default.createElement(l.Path,{d:"M5.75 6.75C6.16421 6.75 6.5 7.08579 6.5 7.5C6.5 7.91421 6.16421 8.25 5.75 8.25C5.33579 8.25 5 7.91421 5 7.5C5 7.08579 5.33579 6.75 5.75 6.75Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M8.25 6.75C8.66421 6.75 9 7.08579 9 7.5C9 7.91421 8.66421 8.25 8.25 8.25C7.83579 8.25 7.5 7.91421 7.5 7.5C7.5 7.08579 7.83579 6.75 8.25 6.75Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M10.75 6.75C11.1642 6.75 11.5 7.08579 11.5 7.5C11.5 7.91421 11.1642 8.25 10.75 8.25C10.3358 8.25 10 7.91421 10 7.5C10 7.08579 10.3358 6.75 10.75 6.75Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM4.5 5C3.67157 5 3 5.67157 3 6.5V10H21V6.5C21 5.67157 20.3284 5 19.5 5H4.5Z",fill:"currentColor"}))},w=g;
2
2
 
3
- //# debugId=A495CFEB8536959264756E2164756E21
3
+ //# debugId=106F028747B9C88064756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowApp/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 IconWindowApp: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M5 7.5C5 7.22386 5.22386 7 5.5 7C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8C5.22386 8 5 7.77614 5 7.5Z\" fill=\"currentColor\"/><Path d=\"M7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5Z\" fill=\"currentColor\"/><Path d=\"M9 7.5C9 7.22386 9.22386 7 9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 4C3.11929 4 2 5.11929 2 6.5V17.5C2 18.8807 3.11929 20 4.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM21 10V6.5C21 5.67157 20.3284 5 19.5 5H4.5C3.67157 5 3 5.67157 3 6.5V10H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowApp: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M5.75 6.75C6.16421 6.75 6.5 7.08579 6.5 7.5C6.5 7.91421 6.16421 8.25 5.75 8.25C5.33579 8.25 5 7.91421 5 7.5C5 7.08579 5.33579 6.75 5.75 6.75Z\" fill=\"currentColor\"/><Path d=\"M8.25 6.75C8.66421 6.75 9 7.08579 9 7.5C9 7.91421 8.66421 8.25 8.25 8.25C7.83579 8.25 7.5 7.91421 7.5 7.5C7.5 7.08579 7.83579 6.75 8.25 6.75Z\" fill=\"currentColor\"/><Path d=\"M10.75 6.75C11.1642 6.75 11.5 7.08579 11.5 7.5C11.5 7.91421 11.1642 8.25 10.75 8.25C10.3358 8.25 10 7.91421 10 7.5C10 7.08579 10.3358 6.75 10.75 6.75Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM4.5 5C3.67157 5 3 5.67157 3 6.5V10H21V6.5C21 5.67157 20.3284 5 19.5 5H4.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\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,yECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA0C,CAAC,IAAU,CAChE,OAAO,wBAAwuB,EAAxuB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qHAAqH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uNAAuN,KAAK,eAAc,CAAI,GAGluB",
9
- "debugId": "A495CFEB8536959264756E2164756E21",
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,yECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA0C,CAAC,IAAU,CAChE,OAAO,wBAAy0B,EAAz0B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wNAAwN,KAAK,eAAc,CAAI,GAGn0B",
9
+ "debugId": "106F028747B9C88064756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";import{Svg as p}from"react-native-svg";var n=({children:C,size:r=24,...t})=>{return l.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};import o from"react";import{Path as e}from"react-native-svg";var f=(C)=>{return o.createElement(n,{...C},o.createElement(e,{d:"M5 7.5C5 7.22386 5.22386 7 5.5 7C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8C5.22386 8 5 7.77614 5 7.5Z",fill:"currentColor"}),o.createElement(e,{d:"M7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5Z",fill:"currentColor"}),o.createElement(e,{d:"M9 7.5C9 7.22386 9.22386 7 9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 4C3.11929 4 2 5.11929 2 6.5V17.5C2 18.8807 3.11929 20 4.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM21 10V6.5C21 5.67157 20.3284 5 19.5 5H4.5C3.67157 5 3 5.67157 3 6.5V10H21Z",fill:"currentColor"}))},x=f;export{x as default,f as IconWindowApp};
1
+ import l from"react";import{Svg as p}from"react-native-svg";var n=({children:C,size:r=24,...t})=>{return l.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};import o from"react";import{Path as e}from"react-native-svg";var f=(C)=>{return o.createElement(n,{...C},o.createElement(e,{d:"M5.75 6.75C6.16421 6.75 6.5 7.08579 6.5 7.5C6.5 7.91421 6.16421 8.25 5.75 8.25C5.33579 8.25 5 7.91421 5 7.5C5 7.08579 5.33579 6.75 5.75 6.75Z",fill:"currentColor"}),o.createElement(e,{d:"M8.25 6.75C8.66421 6.75 9 7.08579 9 7.5C9 7.91421 8.66421 8.25 8.25 8.25C7.83579 8.25 7.5 7.91421 7.5 7.5C7.5 7.08579 7.83579 6.75 8.25 6.75Z",fill:"currentColor"}),o.createElement(e,{d:"M10.75 6.75C11.1642 6.75 11.5 7.08579 11.5 7.5C11.5 7.91421 11.1642 8.25 10.75 8.25C10.3358 8.25 10 7.91421 10 7.5C10 7.08579 10.3358 6.75 10.75 6.75Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM4.5 5C3.67157 5 3 5.67157 3 6.5V10H21V6.5C21 5.67157 20.3284 5 19.5 5H4.5Z",fill:"currentColor"}))},x=f;export{x as default,f as IconWindowApp};
2
2
 
3
- //# debugId=069E49DF94EB65EC64756E2164756E21
3
+ //# debugId=21F5237B16DE8E1C64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowApp/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 IconWindowApp: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M5 7.5C5 7.22386 5.22386 7 5.5 7C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8C5.22386 8 5 7.77614 5 7.5Z\" fill=\"currentColor\"/><Path d=\"M7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5Z\" fill=\"currentColor\"/><Path d=\"M9 7.5C9 7.22386 9.22386 7 9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 4C3.11929 4 2 5.11929 2 6.5V17.5C2 18.8807 3.11929 20 4.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM21 10V6.5C21 5.67157 20.3284 5 19.5 5H4.5C3.67157 5 3 5.67157 3 6.5V10H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowApp: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M5.75 6.75C6.16421 6.75 6.5 7.08579 6.5 7.5C6.5 7.91421 6.16421 8.25 5.75 8.25C5.33579 8.25 5 7.91421 5 7.5C5 7.08579 5.33579 6.75 5.75 6.75Z\" fill=\"currentColor\"/><Path d=\"M8.25 6.75C8.66421 6.75 9 7.08579 9 7.5C9 7.91421 8.66421 8.25 8.25 8.25C7.83579 8.25 7.5 7.91421 7.5 7.5C7.5 7.08579 7.83579 6.75 8.25 6.75Z\" fill=\"currentColor\"/><Path d=\"M10.75 6.75C11.1642 6.75 11.5 7.08579 11.5 7.5C11.5 7.91421 11.1642 8.25 10.75 8.25C10.3358 8.25 10 7.91421 10 7.5C10 7.08579 10.3358 6.75 10.75 6.75Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM4.5 5C3.67157 5 3 5.67157 3 6.5V10H21V6.5C21 5.67157 20.3284 5 19.5 5H4.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAwuB,EAAxuB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qHAAqH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uNAAuN,KAAK,eAAc,CAAI,GAGluB",
9
- "debugId": "069E49DF94EB65EC64756E2164756E21",
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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAy0B,EAAz0B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wNAAwN,KAAK,eAAc,CAAI,GAGn0B",
9
+ "debugId": "21F5237B16DE8E1C64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWindowSquare: FC<CentralIconBaseProps>;
4
+ export default IconWindowSquare;
@@ -0,0 +1,3 @@
1
+ var M=Object.create;var{getPrototypeOf:S,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:Z}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,y,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?h??=new WeakMap:y??=new WeakMap,s=f.get(r);if(s)return s}e=r!=null?M(S(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!u.call(C,l))t(C,l,{get:d.bind(r,l),enumerable:!0});if(n)f.set(r,C);return C},I=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))t(o,n,{get:d.bind(r,n),enumerable:!(e=Z(r,n))||e.enumerable})}return c.set(r,o),o},c;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var V={};v(V,{CentralIconBase:()=>a});module.exports=I(V);var x=B(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 b={};v(b,{default:()=>w,IconWindowSquare:()=>g});module.exports=I(b);var p=B(require("react"));var m=require("react-native-svg"),g=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M21 18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V18.5Z",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=14BE5AB33D33F88764756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquare/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 IconWindowSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M21 18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V18.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquare;\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,4ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA6C,CAAC,IAAU,CACnE,OAAO,wBAA8sB,EAA9sB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2fAA2f,KAAK,eAAc,CAAI,GAGxsB",
9
+ "debugId": "14BE5AB33D33F88764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as t}from"react-native-svg";var a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M21 18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V18.5Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z",fill:"currentColor"}))},x=a;export{x as default,a as IconWindowSquare};
2
+
3
+ //# debugId=8349BD40EC187D8764756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquare/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 IconWindowSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M21 18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V18.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquare;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA8sB,EAA9sB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2fAA2f,KAAK,eAAc,CAAI,GAGxsB",
9
+ "debugId": "8349BD40EC187D8764756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1294,6 +1294,7 @@ Below is a complete list of available icons:
1294
1294
  - IconCheckmark2Medium
1295
1295
  - IconCard
1296
1296
  - IconUnblock
1297
+ - IconWindowSquare
1297
1298
 
1298
1299
  ### Keyboard
1299
1300
 
@@ -1398,6 +1399,7 @@ Below is a complete list of available icons:
1398
1399
  - IconMapPin2
1399
1400
  - IconMapEditFlat
1400
1401
  - IconPinFocus
1402
+ - IconCompassPointerSquare
1401
1403
 
1402
1404
  ### Nature & Energy
1403
1405