@central-icons-react-native/round-filled-radius-1-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 L=Object.create;var{getPrototypeOf:S,defineProperty:t,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var y,F,B=(o,r,C)=>{var e=o!=null&&typeof o==="object";if(e){var m=r?y??=new WeakMap:F??=new WeakMap,s=m.get(o);if(s)return s}C=o!=null?L(S(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=h(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:"M18.9189 3C19.1825 2.99999 19.4104 3.00032 19.5977 3.01563C19.7951 3.03177 19.9917 3.06688 20.1807 3.16309C20.4629 3.3069 20.6931 3.53709 20.8369 3.81934C20.9331 4.00834 20.9682 4.20487 20.9844 4.40234C20.9997 4.58963 21 4.81748 21 5.08105V18.9189C21 19.1825 20.9997 19.4104 20.9844 19.5977C20.9682 19.7951 20.9331 19.9917 20.8369 20.1807C20.6931 20.4629 20.4629 20.6931 20.1807 20.8369C19.9917 20.9331 19.7951 20.9682 19.5977 20.9844C19.4104 20.9997 19.1825 21 18.9189 21H5.08105C4.81748 21 4.58963 20.9997 4.40234 20.9844C4.20487 20.9682 4.00834 20.9331 3.81934 20.8369C3.53709 20.6931 3.3069 20.4629 3.16309 20.1807C3.06688 19.9917 3.03177 19.7951 3.01563 19.5977C3.00032 19.4104 2.99999 19.1825 3 18.9189V5.08105C2.99999 4.81748 3.00032 4.58963 3.01563 4.40234C3.03177 4.20487 3.06688 4.00834 3.16309 3.81934C3.3069 3.53709 3.53709 3.3069 3.81934 3.16309C4.00834 3.06688 4.20487 3.03177 4.40234 3.01563C4.58963 3.00032 4.81748 2.99999 5.08105 3H18.9189ZM12.6699 7.6123C12.4103 7.09579 11.7032 7.06361 11.3877 7.51562L11.3301 7.6123L7.34863 15.5449C7.03906 16.1618 7.65703 16.8345 8.29785 16.5781L12 15.0967L15.7021 16.5781C16.343 16.8345 16.9609 16.1618 16.6514 15.5449L12.6699 7.6123Z",fill:"currentColor"}))},V=g;
2
+
3
+ //# debugId=C5EABB29379F4C9F64756E2164756E21
@@ -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=\"M18.9189 3C19.1825 2.99999 19.4104 3.00032 19.5977 3.01563C19.7951 3.03177 19.9917 3.06688 20.1807 3.16309C20.4629 3.3069 20.6931 3.53709 20.8369 3.81934C20.9331 4.00834 20.9682 4.20487 20.9844 4.40234C20.9997 4.58963 21 4.81748 21 5.08105V18.9189C21 19.1825 20.9997 19.4104 20.9844 19.5977C20.9682 19.7951 20.9331 19.9917 20.8369 20.1807C20.6931 20.4629 20.4629 20.6931 20.1807 20.8369C19.9917 20.9331 19.7951 20.9682 19.5977 20.9844C19.4104 20.9997 19.1825 21 18.9189 21H5.08105C4.81748 21 4.58963 20.9997 4.40234 20.9844C4.20487 20.9682 4.00834 20.9331 3.81934 20.8369C3.53709 20.6931 3.3069 20.4629 3.16309 20.1807C3.06688 19.9917 3.03177 19.7951 3.01563 19.5977C3.00032 19.4104 2.99999 19.1825 3 18.9189V5.08105C2.99999 4.81748 3.00032 4.58963 3.01563 4.40234C3.03177 4.20487 3.06688 4.00834 3.16309 3.81934C3.3069 3.53709 3.53709 3.3069 3.81934 3.16309C4.00834 3.06688 4.20487 3.03177 4.40234 3.01563C4.58963 3.00032 4.81748 2.99999 5.08105 3H18.9189ZM12.6699 7.6123C12.4103 7.09579 11.7032 7.06361 11.3877 7.51562L11.3301 7.6123L7.34863 15.5449C7.03906 16.1618 7.65703 16.8345 8.29785 16.5781L12 15.0967L15.7021 16.5781C16.343 16.8345 16.9609 16.1618 16.6514 15.5449L12.6699 7.6123Z\" 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,wBAAywC,EAAzwC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wqCAAwqC,KAAK,eAAc,CAAI,GAGnwC",
9
+ "debugId": "C5EABB29379F4C9F64756E2164756E21",
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:"M18.9189 3C19.1825 2.99999 19.4104 3.00032 19.5977 3.01563C19.7951 3.03177 19.9917 3.06688 20.1807 3.16309C20.4629 3.3069 20.6931 3.53709 20.8369 3.81934C20.9331 4.00834 20.9682 4.20487 20.9844 4.40234C20.9997 4.58963 21 4.81748 21 5.08105V18.9189C21 19.1825 20.9997 19.4104 20.9844 19.5977C20.9682 19.7951 20.9331 19.9917 20.8369 20.1807C20.6931 20.4629 20.4629 20.6931 20.1807 20.8369C19.9917 20.9331 19.7951 20.9682 19.5977 20.9844C19.4104 20.9997 19.1825 21 18.9189 21H5.08105C4.81748 21 4.58963 20.9997 4.40234 20.9844C4.20487 20.9682 4.00834 20.9331 3.81934 20.8369C3.53709 20.6931 3.3069 20.4629 3.16309 20.1807C3.06688 19.9917 3.03177 19.7951 3.01563 19.5977C3.00032 19.4104 2.99999 19.1825 3 18.9189V5.08105C2.99999 4.81748 3.00032 4.58963 3.01563 4.40234C3.03177 4.20487 3.06688 4.00834 3.16309 3.81934C3.3069 3.53709 3.53709 3.3069 3.81934 3.16309C4.00834 3.06688 4.20487 3.03177 4.40234 3.01563C4.58963 3.00032 4.81748 2.99999 5.08105 3H18.9189ZM12.6699 7.6123C12.4103 7.09579 11.7032 7.06361 11.3877 7.51562L11.3301 7.6123L7.34863 15.5449C7.03906 16.1618 7.65703 16.8345 8.29785 16.5781L12 15.0967L15.7021 16.5781C16.343 16.8345 16.9609 16.1618 16.6514 15.5449L12.6699 7.6123Z",fill:"currentColor"}))},v=a;export{v as default,a as IconCompassPointerSquare};
2
+
3
+ //# debugId=34A9AB43D80FF54B64756E2164756E21
@@ -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=\"M18.9189 3C19.1825 2.99999 19.4104 3.00032 19.5977 3.01563C19.7951 3.03177 19.9917 3.06688 20.1807 3.16309C20.4629 3.3069 20.6931 3.53709 20.8369 3.81934C20.9331 4.00834 20.9682 4.20487 20.9844 4.40234C20.9997 4.58963 21 4.81748 21 5.08105V18.9189C21 19.1825 20.9997 19.4104 20.9844 19.5977C20.9682 19.7951 20.9331 19.9917 20.8369 20.1807C20.6931 20.4629 20.4629 20.6931 20.1807 20.8369C19.9917 20.9331 19.7951 20.9682 19.5977 20.9844C19.4104 20.9997 19.1825 21 18.9189 21H5.08105C4.81748 21 4.58963 20.9997 4.40234 20.9844C4.20487 20.9682 4.00834 20.9331 3.81934 20.8369C3.53709 20.6931 3.3069 20.4629 3.16309 20.1807C3.06688 19.9917 3.03177 19.7951 3.01563 19.5977C3.00032 19.4104 2.99999 19.1825 3 18.9189V5.08105C2.99999 4.81748 3.00032 4.58963 3.01563 4.40234C3.03177 4.20487 3.06688 4.00834 3.16309 3.81934C3.3069 3.53709 3.53709 3.3069 3.81934 3.16309C4.00834 3.06688 4.20487 3.03177 4.40234 3.01563C4.58963 3.00032 4.81748 2.99999 5.08105 3H18.9189ZM12.6699 7.6123C12.4103 7.09579 11.7032 7.06361 11.3877 7.51562L11.3301 7.6123L7.34863 15.5449C7.03906 16.1618 7.65703 16.8345 8.29785 16.5781L12 15.0967L15.7021 16.5781C16.343 16.8345 16.9609 16.1618 16.6514 15.5449L12.6699 7.6123Z\" 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,gBAAywC,EAAzwC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wqCAAwqC,KAAK,eAAc,CAAI,GAGnwC",
9
+ "debugId": "34A9AB43D80FF54B64756E2164756E21",
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:"M3.5 4C2.67157 4 2 4.67157 2 5.5V10H22V5.5C22 4.67157 21.3284 4 20.5 4H3.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 18.5V11H22V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.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 18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V11H22V18.5Z",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.5 4C21.3284 4 22 4.67157 22 5.5V10H2V5.5C2 4.67157 2.67157 4 3.5 4H20.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=3BA65986DBC1946664756E2164756E21
3
+ //# debugId=9AACAC77F7FFC3C564756E2164756E21
@@ -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=\"M3.5 4C2.67157 4 2 4.67157 2 5.5V10H22V5.5C22 4.67157 21.3284 4 20.5 4H3.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 18.5V11H22V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.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 18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V11H22V18.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V10H2V5.5C2 4.67157 2.67157 4 3.5 4H20.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": "3BA65986DBC1946664756E2164756E21",
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": "9AACAC77F7FFC3C564756E2164756E21",
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:"M3.5 4C2.67157 4 2 4.67157 2 5.5V10H22V5.5C22 4.67157 21.3284 4 20.5 4H3.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 18.5V11H22V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.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 18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V11H22V18.5Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.5 4C21.3284 4 22 4.67157 22 5.5V10H2V5.5C2 4.67157 2.67157 4 3.5 4H20.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=DE767777BDF0806664756E2164756E21
3
+ //# debugId=D3862A93F40432F764756E2164756E21
@@ -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=\"M3.5 4C2.67157 4 2 4.67157 2 5.5V10H22V5.5C22 4.67157 21.3284 4 20.5 4H3.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 18.5V11H22V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.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 18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V11H22V18.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V10H2V5.5C2 4.67157 2.67157 4 3.5 4H20.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": "DE767777BDF0806664756E2164756E21",
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": "D3862A93F40432F764756E2164756E21",
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:"M3.5 4C2.67157 4 2 4.67157 2 5.5V18.5C2 19.3284 2.67157 20 3.5 20H20.5C21.3284 20 22 19.3284 22 18.5V5.5C22 4.67157 21.3284 4 20.5 4H3.5ZM21 10V5.5C21 5.22386 20.7761 5 20.5 5H3.5C3.22386 5 3 5.22386 3 5.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:"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM3.5 5C3.22386 5 3 5.22386 3 5.5V10H21V5.5C21 5.22386 20.7761 5 20.5 5H3.5Z",fill:"currentColor"}))},w=g;
2
2
 
3
- //# debugId=4E9F76C87BC6EF5364756E2164756E21
3
+ //# debugId=E22D2C4CB0398AFE64756E2164756E21
@@ -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=\"M3.5 4C2.67157 4 2 4.67157 2 5.5V18.5C2 19.3284 2.67157 20 3.5 20H20.5C21.3284 20 22 19.3284 22 18.5V5.5C22 4.67157 21.3284 4 20.5 4H3.5ZM21 10V5.5C21 5.22386 20.7761 5 20.5 5H3.5C3.22386 5 3 5.22386 3 5.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=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM3.5 5C3.22386 5 3 5.22386 3 5.5V10H21V5.5C21 5.22386 20.7761 5 20.5 5H3.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": "4E9F76C87BC6EF5364756E2164756E21",
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": "E22D2C4CB0398AFE64756E2164756E21",
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:"M3.5 4C2.67157 4 2 4.67157 2 5.5V18.5C2 19.3284 2.67157 20 3.5 20H20.5C21.3284 20 22 19.3284 22 18.5V5.5C22 4.67157 21.3284 4 20.5 4H3.5ZM21 10V5.5C21 5.22386 20.7761 5 20.5 5H3.5C3.22386 5 3 5.22386 3 5.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:"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM3.5 5C3.22386 5 3 5.22386 3 5.5V10H21V5.5C21 5.22386 20.7761 5 20.5 5H3.5Z",fill:"currentColor"}))},x=f;export{x as default,f as IconWindowApp};
2
2
 
3
- //# debugId=4B3E8F78C1274C4F64756E2164756E21
3
+ //# debugId=A3415EEE13EADADF64756E2164756E21
@@ -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=\"M3.5 4C2.67157 4 2 4.67157 2 5.5V18.5C2 19.3284 2.67157 20 3.5 20H20.5C21.3284 20 22 19.3284 22 18.5V5.5C22 4.67157 21.3284 4 20.5 4H3.5ZM21 10V5.5C21 5.22386 20.7761 5 20.5 5H3.5C3.22386 5 3 5.22386 3 5.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=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM3.5 5C3.22386 5 3 5.22386 3 5.5V10H21V5.5C21 5.22386 20.7761 5 20.5 5H3.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": "4B3E8F78C1274C4F64756E2164756E21",
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": "A3415EEE13EADADF64756E2164756E21",
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 19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V10H21V19.5Z",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H3V4.5C3 3.67157 3.67157 3 4.5 3H19.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=5F30AFA615C24C9C64756E2164756E21
@@ -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 19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V10H21V19.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H3V4.5C3 3.67157 3.67157 3 4.5 3H19.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": "5F30AFA615C24C9C64756E2164756E21",
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 19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V10H21V19.5Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H3V4.5C3 3.67157 3.67157 3 4.5 3H19.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=F5F5AE6B28B88BBC64756E2164756E21
@@ -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 19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V10H21V19.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H3V4.5C3 3.67157 3.67157 3 4.5 3H19.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": "F5F5AE6B28B88BBC64756E2164756E21",
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