@central-icons-react-native/round-outlined-radius-1-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:P,defineProperty:C,getOwnPropertyNames:h,getOwnPropertyDescriptor:v}=Object,k=Object.prototype.hasOwnProperty;function c(o){return this[o]}var y,S,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var p=r?y??=new WeakMap:S??=new WeakMap,a=p.get(o);if(a)return a}e=o!=null?B(P(o)):{};let l=r||!o||!o.__esModule?C(e,"default",{value:o,enumerable:!0}):e;if(o&&typeof o==="object"||typeof o==="function"){for(let m of h(o))if(!k.call(l,m))C(l,m,{get:c.bind(o,m),enumerable:!0})}if(t)p.set(o,l);return l},w=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=C({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of h(o))if(!k.call(r,t))C(r,t,{get:c.bind(o,t),enumerable:!(e=v(o,t))||e.enumerable})}return f.set(o,r),r},f;var M=(o)=>o;function W(o,r){this[o]=M.bind(null,r)}var x=(o,r)=>{for(var e in r)C(o,e,{get:r[e],enumerable:!0,configurable:!0,set:W.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>d});module.exports=w(b);var s=g(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...p})=>{let a=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},o)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var A={};x(A,{IconAirplaneWindowClosed:()=>I,default:()=>F});module.exports=w(A);var i=g(require("react"));var u=require("react-native-svg"),I=i.default.memo((o)=>i.default.createElement(d,{...o,maskId:"round-outlined-radius-1-stroke-2-IconAirplaneWindowClosed"},i.default.createElement(u.Path,{d:"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement(u.Path,{d:"M10 17H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))),F=I;
2
+
3
+ //# debugId=0D9CFD4F1BADCC0C64756E2164756E21
@@ -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=\"round-outlined-radius-1-stroke-2-IconAirplaneWindowClosed\"><Path d=\"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M10 17H14\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></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,wBAAwtB,EAAxtB,IAAqB,EAAO,OAAO,6DAA4D,wBAAC,OAAD,CAAM,EAAE,ufAAuf,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,CAChuB,EAEc",
9
+ "debugId": "0D9CFD4F1BADCC0C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as m,Mask as d,Rect as s,G as u}from"react-native-svg";var C=({children:e,size:r=24,mode:p="masked",maskId:n,...a})=>{let l=p!=="raw"&&!!n;return o.createElement(m,{...a,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},l?o.createElement(o.Fragment,null,o.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(s,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},e)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as i}from"react-native-svg";var f=t.memo((e)=>t.createElement(C,{...e,maskId:"round-outlined-radius-1-stroke-2-IconAirplaneWindowClosed"},t.createElement(i,{d:"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z",stroke:"currentColor",strokeWidth:"2"}),t.createElement(i,{d:"M10 17H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))),v=f;export{f as IconAirplaneWindowClosed,v as default};
2
+
3
+ //# debugId=043B1D013E8BFD0164756E2164756E21
@@ -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=\"round-outlined-radius-1-stroke-2-IconAirplaneWindowClosed\"><Path d=\"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M10 17H14\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></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,gBAAwtB,EAAxtB,IAAqB,EAAO,OAAO,6DAA4D,gBAAC,EAAD,CAAM,EAAE,ufAAuf,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,CAChuB,EAEc",
9
+ "debugId": "043B1D013E8BFD0164756E2164756E21",
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:P,defineProperty:C,getOwnPropertyNames:h,getOwnPropertyDescriptor:v}=Object,f=Object.prototype.hasOwnProperty;function c(o){return this[o]}var y,L,g=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var p=r?y??=new WeakMap:L??=new WeakMap,d=p.get(o);if(d)return d}e=o!=null?B(P(o)):{};let m=r||!o||!o.__esModule?C(e,"default",{value:o,enumerable:!0}):e;if(o&&typeof o==="object"||typeof o==="function"){for(let l of h(o))if(!f.call(m,l))C(m,l,{get:c.bind(o,l),enumerable:!0})}if(n)p.set(o,m);return m},w=(o)=>{var r=(k??=new WeakMap).get(o),e;if(r)return r;if(r=C({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of h(o))if(!f.call(r,n))C(r,n,{get:c.bind(o,n),enumerable:!(e=v(o,n))||e.enumerable})}return k.set(o,r),r},k;var M=(o)=>o;function S(o,r){this[o]=M.bind(null,r)}var x=(o,r)=>{for(var e in r)C(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var W={};x(W,{CentralIconBase:()=>u});module.exports=w(W);var s=g(require("react")),t=require("react-native-svg"),u=({children:o,size:r=24,mode:e="masked",maskId:n,...p})=>{let d=e!=="raw"&&!!n;return s.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"},d?s.default.createElement(s.default.Fragment,null,s.default.createElement(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(t.G,{color:"#fff"},o)),s.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var b={};x(b,{IconAirplaneWindowOpen:()=>I,default:()=>j});module.exports=w(b);var i=g(require("react"));var a=require("react-native-svg"),I=i.default.memo((o)=>i.default.createElement(u,{...o,maskId:"round-outlined-radius-1-stroke-2-IconAirplaneWindowOpen"},i.default.createElement(a.Path,{d:"M5 8H19",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),i.default.createElement(a.Path,{d:"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),i.default.createElement(a.Path,{d:"M11.5 21L9.40571 14.2983C9.20448 13.6543 9.68555 13 10.3602 13H12.6667C12.883 13 13.0936 13.0702 13.2667 13.2L19 17.5",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))),j=I;
2
+
3
+ //# debugId=385039662F56804A64756E2164756E21
@@ -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=\"round-outlined-radius-1-stroke-2-IconAirplaneWindowOpen\"><Path d=\"M5 8H19\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M11.5 21L9.40571 14.2983C9.20448 13.6543 9.68555 13 10.3602 13H12.6667C12.883 13 13.0936 13.0702 13.2667 13.2L19 17.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></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,wBAA06B,EAA16B,IAAqB,EAAO,OAAO,2DAA0D,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,ufAAuf,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,wHAAwH,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,CACl7B,EAEc",
9
+ "debugId": "385039662F56804A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as l,Rect as i,G as u}from"react-native-svg";var C=({children:n,size:r=24,mode:p="masked",maskId:t,...d})=>{let m=p!=="raw"&&!!t;return o.createElement(a,{...d,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?o.createElement(o.Fragment,null,o.createElement(l,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},n)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):n)};import e from"react";import{Path as s}from"react-native-svg";var k=e.memo((n)=>e.createElement(C,{...n,maskId:"round-outlined-radius-1-stroke-2-IconAirplaneWindowOpen"},e.createElement(s,{d:"M5 8H19",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),e.createElement(s,{d:"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),e.createElement(s,{d:"M11.5 21L9.40571 14.2983C9.20448 13.6543 9.68555 13 10.3602 13H12.6667C12.883 13 13.0936 13.0702 13.2667 13.2L19 17.5",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))),v=k;export{k as IconAirplaneWindowOpen,v as default};
2
+
3
+ //# debugId=85037E50B9A0B4FB64756E2164756E21
@@ -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=\"round-outlined-radius-1-stroke-2-IconAirplaneWindowOpen\"><Path d=\"M5 8H19\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M11.5 21L9.40571 14.2983C9.20448 13.6543 9.68555 13 10.3602 13H12.6667C12.883 13 13.0936 13.0702 13.2667 13.2L19 17.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></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,gBAA06B,EAA16B,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,ufAAuf,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,wHAAwH,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,CACl7B,EAEc",
9
+ "debugId": "85037E50B9A0B4FB64756E2164756E21",
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