@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.316 → 1.1.317

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 React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAirplaneWindowClosed: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconAirplaneWindowClosed;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:v,defineProperty:s,getOwnPropertyNames:u,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function h(o){return this[o]}var y,S,g=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var i=r?y??=new WeakMap:S??=new WeakMap,p=i.get(o);if(p)return p}e=o!=null?B(v(o)):{};let C=r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e;if(o&&typeof o==="object"||typeof o==="function"){for(let m of u(o))if(!c.call(C,m))s(C,m,{get:h.bind(o,m),enumerable:!0})}if(n)i.set(o,C);return C},w=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=s({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of u(o))if(!c.call(r,n))s(r,n,{get:h.bind(o,n),enumerable:!(e=P(o,n))||e.enumerable})}return f.set(o,r),r},f;var M=(o)=>o;function b(o,r){this[o]=M.bind(null,r)}var x=(o,r)=>{for(var e in r)s(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var A={};x(A,{CentralIconBase:()=>d});module.exports=w(A);var l=g(require("react")),t=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:n,...i})=>{let p=e!=="raw"&&!!n;return l.default.createElement(t.Svg,{...i,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?l.default.createElement(l.default.Fragment,null,l.default.createElement(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),l.default.createElement(t.G,{color:"#fff"},o)),l.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var F={};x(F,{IconAirplaneWindowClosed:()=>k,default:()=>G});module.exports=w(F);var a=g(require("react"));var I=require("react-native-svg"),k=a.default.memo((o)=>a.default.createElement(d,{...o,maskId:"square-filled-radius-0-stroke-2-IconAirplaneWindowClosed"},a.default.createElement(I.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM9 16V18H15V16H9Z",fill:"currentColor"}))),G=k;
2
+
3
+ //# debugId=0CD0EAD94D1C8ADF64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplaneWindowClosed/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAirplaneWindowClosed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAirplaneWindowClosed\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM9 16V18H15V16H9Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplaneWindowClosed;\n"
7
+ ],
8
+ "mappings": "0+BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,oFChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA6E,UAAM,KAAK,CAAC,IAC7F,wBAAyqB,EAAzqB,IAAqB,EAAO,OAAO,4DAA2D,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sgBAAsgB,KAAK,eAAc,CAAI,CACjrB,EAEc",
9
+ "debugId": "0CD0EAD94D1C8ADF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as m,Rect as l,G as d}from"react-native-svg";var s=({children:e,size:r=24,mode:i="masked",maskId:n,...p})=>{let C=i!=="raw"&&!!n;return o.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C?o.createElement(o.Fragment,null,o.createElement(m,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as f}from"react-native-svg";var u=t.memo((e)=>t.createElement(s,{...e,maskId:"square-filled-radius-0-stroke-2-IconAirplaneWindowClosed"},t.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM9 16V18H15V16H9Z",fill:"currentColor"}))),P=u;export{u as IconAirplaneWindowClosed,P as default};
2
+
3
+ //# debugId=B15F04A078DB72E064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplaneWindowClosed/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAirplaneWindowClosed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAirplaneWindowClosed\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM9 16V18H15V16H9Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplaneWindowClosed;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA6E,EAAM,KAAK,CAAC,IAC7F,gBAAyqB,EAAzqB,IAAqB,EAAO,OAAO,4DAA2D,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sgBAAsgB,KAAK,eAAc,CAAI,CACjrB,EAEc",
9
+ "debugId": "B15F04A078DB72E064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAirplaneWindowOpen: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconAirplaneWindowOpen;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function h(o){return this[o]}var y,M,g=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var p=r?y??=new WeakMap:M??=new WeakMap,s=p.get(o);if(s)return s}e=o!=null?B(v(o)):{};let i=r||!o||!o.__esModule?l(e,"default",{value:o,enumerable:!0}):e;if(o&&typeof o==="object"||typeof o==="function"){for(let m of u(o))if(!c.call(i,m))l(i,m,{get:h.bind(o,m),enumerable:!0})}if(n)p.set(o,i);return i},w=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=l({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of u(o))if(!c.call(r,n))l(r,n,{get:h.bind(o,n),enumerable:!(e=P(o,n))||e.enumerable})}return f.set(o,r),r},f;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var x=(o,r)=>{for(var e in r)l(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var O={};x(O,{CentralIconBase:()=>d});module.exports=w(O);var C=g(require("react")),t=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:n,...p})=>{let s=e!=="raw"&&!!n;return C.default.createElement(t.Svg,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},s?C.default.createElement(C.default.Fragment,null,C.default.createElement(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),C.default.createElement(t.G,{color:"#fff"},o)),C.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var Z={};x(Z,{IconAirplaneWindowOpen:()=>k,default:()=>A});module.exports=w(Z);var a=g(require("react"));var I=require("react-native-svg"),k=a.default.memo((o)=>a.default.createElement(d,{...o,maskId:"square-filled-radius-0-stroke-2-IconAirplaneWindowOpen"},a.default.createElement(I.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM9 13L11.1836 19.9893C11.4711 19.9938 11.7454 20 12 20C12.7715 20 13.7235 19.9769 14.6777 19.9443C16.4516 19.8837 17.9127 18.6277 18.2627 16.9463L13 13H9ZM12 4C11.2285 4 10.2765 4.0231 9.32227 4.05566C7.56736 4.11563 6.11871 5.34564 5.74902 7H18.251C17.8813 5.34564 16.4326 4.11563 14.6777 4.05566C13.7235 4.0231 12.7715 4 12 4Z",fill:"currentColor"}))),A=k;
2
+
3
+ //# debugId=04FAC13C48FF4AF464756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplaneWindowOpen/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAirplaneWindowOpen: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAirplaneWindowOpen\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM9 13L11.1836 19.9893C11.4711 19.9938 11.7454 20 12 20C12.7715 20 13.7235 19.9769 14.6777 19.9443C16.4516 19.8837 17.9127 18.6277 18.2627 16.9463L13 13H9ZM12 4C11.2285 4 10.2765 4.0231 9.32227 4.05566C7.56736 4.11563 6.11871 5.34564 5.74902 7H18.251C17.8813 5.34564 16.4326 4.11563 14.6777 4.05566C13.7235 4.0231 12.7715 4 12 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplaneWindowOpen;\n"
7
+ ],
8
+ "mappings": "0+BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,kFChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA2E,UAAM,KAAK,CAAC,IAC3F,wBAA89B,EAA99B,IAAqB,EAAO,OAAO,0DAAyD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6zBAA6zB,KAAK,eAAc,CAAI,CACt+B,EAEc",
9
+ "debugId": "04FAC13C48FF4AF464756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as m,Rect as C,G as d}from"react-native-svg";var l=({children:e,size:r=24,mode:p="masked",maskId:n,...s})=>{let i=p!=="raw"&&!!n;return o.createElement(a,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},i?o.createElement(o.Fragment,null,o.createElement(m,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(C,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.createElement(C,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as f}from"react-native-svg";var u=t.memo((e)=>t.createElement(l,{...e,maskId:"square-filled-radius-0-stroke-2-IconAirplaneWindowOpen"},t.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM9 13L11.1836 19.9893C11.4711 19.9938 11.7454 20 12 20C12.7715 20 13.7235 19.9769 14.6777 19.9443C16.4516 19.8837 17.9127 18.6277 18.2627 16.9463L13 13H9ZM12 4C11.2285 4 10.2765 4.0231 9.32227 4.05566C7.56736 4.11563 6.11871 5.34564 5.74902 7H18.251C17.8813 5.34564 16.4326 4.11563 14.6777 4.05566C13.7235 4.0231 12.7715 4 12 4Z",fill:"currentColor"}))),P=u;export{u as IconAirplaneWindowOpen,P as default};
2
+
3
+ //# debugId=65C16212F8F04E9C64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplaneWindowOpen/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAirplaneWindowOpen: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAirplaneWindowOpen\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM9 13L11.1836 19.9893C11.4711 19.9938 11.7454 20 12 20C12.7715 20 13.7235 19.9769 14.6777 19.9443C16.4516 19.8837 17.9127 18.6277 18.2627 16.9463L13 13H9ZM12 4C11.2285 4 10.2765 4.0231 9.32227 4.05566C7.56736 4.11563 6.11871 5.34564 5.74902 7H18.251C17.8813 5.34564 16.4326 4.11563 14.6777 4.05566C13.7235 4.0231 12.7715 4 12 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplaneWindowOpen;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA2E,EAAM,KAAK,CAAC,IAC3F,gBAA89B,EAA99B,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6zBAA6zB,KAAK,eAAc,CAAI,CACt+B,EAEc",
9
+ "debugId": "65C16212F8F04E9C64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -2314,6 +2314,8 @@ Below is a complete list of available icons:
2314
2314
  - IconBoat
2315
2315
  - IconCarTaxi
2316
2316
  - IconRocket2
2317
+ - IconAirplaneWindowClosed
2318
+ - IconAirplaneWindowOpen
2317
2319
 
2318
2320
  ### Vehicles & Aircrafts
2319
2321