@central-icons-react-native/round-outlined-radius-1-stroke-2 1.1.316 → 1.1.318

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
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBandage: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconBandage;
@@ -0,0 +1,3 @@
1
+ var I=Object.create;var{getPrototypeOf:w,defineProperty:m,getOwnPropertyNames:f,getOwnPropertyDescriptor:P}=Object,h=Object.prototype.hasOwnProperty;function k(r){return this[r]}var v,M,x=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var p=o?v??=new WeakMap:M??=new WeakMap,C=p.get(r);if(C)return C}t=r!=null?I(w(r)):{};let d=o||!r||!r.__esModule?m(t,"default",{value:r,enumerable:!0}):t;if(r&&typeof r==="object"||typeof r==="function"){for(let a of f(r))if(!h.call(d,a))m(d,a,{get:k.bind(r,a),enumerable:!0})}if(e)p.set(r,d);return d},g=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=m({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!h.call(o,e))m(o,e,{get:k.bind(r,e),enumerable:!(t=P(r,e))||t.enumerable})}return u.set(r,o),o},u;var S=(r)=>r;function L(r,o){this[r]=S.bind(null,o)}var B=(r,o)=>{for(var t in o)m(r,t,{get:o[t],enumerable:!0,configurable:!0,set:L.bind(o,t)})};var b={};B(b,{CentralIconBase:()=>c});module.exports=g(b);var i=x(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,mode:t="masked",maskId:e,...p})=>{let C=t!=="raw"&&!!e;return i.default.createElement(l.Svg,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C?i.default.createElement(i.default.Fragment,null,i.default.createElement(l.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},i.default.createElement(l.Rect,{width:"24",height:"24",fill:"#000"}),i.default.createElement(l.G,{color:"#fff"},r)),i.default.createElement(l.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):r)};var W={};B(W,{IconBandage:()=>y,default:()=>F});module.exports=g(W);var n=x(require("react"));var s=require("react-native-svg"),y=n.default.memo((r)=>n.default.createElement(c,{...r,maskId:"round-outlined-radius-1-stroke-2-IconBandage"},n.default.createElement(s.Path,{d:"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M6 12L12 18",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M12 6L18 12",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Circle,{cx:"12",cy:"10",r:"1",fill:"currentColor"}),n.default.createElement(s.Circle,{cx:"14",cy:"12",r:"1",fill:"currentColor"}),n.default.createElement(s.Circle,{cx:"12",cy:"14",r:"1",fill:"currentColor"}),n.default.createElement(s.Circle,{cx:"10",cy:"12",r:"1",fill:"currentColor"}))),F=y;
2
+
3
+ //# debugId=2B97A69D9F8667FE64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBandage/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconBandage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconBandage\"><Path d=\"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M6 12L12 18\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 6L18 12\" stroke=\"currentColor\" strokeWidth=\"2\"/><Circle cx=\"12\" cy=\"10\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"14\" cy=\"12\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"12\" cy=\"14\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"10\" cy=\"12\" r=\"1\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBandage;\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,uEChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAAgE,UAAM,KAAK,CAAC,IAChF,wBAA4pB,EAA5pB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,CAAI,CACpqB,EAEc",
9
+ "debugId": "2B97A69D9F8667FE64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as c,Rect as i,G as u}from"react-native-svg";var m=({children:e,size:t=24,mode:p="masked",maskId:l,...C})=>{let d=p!=="raw"&&!!l;return o.createElement(a,{...C,width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none"},d?o.createElement(o.Fragment,null,o.createElement(c,{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},e)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):e)};import r from"react";import{Circle as n,Path as s}from"react-native-svg";var f=r.memo((e)=>r.createElement(m,{...e,maskId:"round-outlined-radius-1-stroke-2-IconBandage"},r.createElement(s,{d:"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement(s,{d:"M6 12L12 18",stroke:"currentColor",strokeWidth:"2"}),r.createElement(s,{d:"M12 6L18 12",stroke:"currentColor",strokeWidth:"2"}),r.createElement(n,{cx:"12",cy:"10",r:"1",fill:"currentColor"}),r.createElement(n,{cx:"14",cy:"12",r:"1",fill:"currentColor"}),r.createElement(n,{cx:"12",cy:"14",r:"1",fill:"currentColor"}),r.createElement(n,{cx:"10",cy:"12",r:"1",fill:"currentColor"}))),v=f;export{f as IconBandage,v as default};
2
+
3
+ //# debugId=14E41FCEE69B0A7964756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBandage/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconBandage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconBandage\"><Path d=\"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M6 12L12 18\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 6L18 12\" stroke=\"currentColor\" strokeWidth=\"2\"/><Circle cx=\"12\" cy=\"10\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"14\" cy=\"12\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"12\" cy=\"14\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"10\" cy=\"12\" r=\"1\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBandage;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA4pB,EAA5pB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,CAAI,CACpqB,EAEc",
9
+ "debugId": "14E41FCEE69B0A7964756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconTextHighlight;
@@ -0,0 +1,3 @@
1
+ var w=Object.create;var{getPrototypeOf:P,defineProperty:C,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,k=Object.prototype.hasOwnProperty;function c(o){return this[o]}var v,L,g=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var l=r?v??=new WeakMap:L??=new WeakMap,p=l.get(o);if(p)return p}t=o!=null?w(P(o)):{};let a=r||!o||!o.__esModule?C(t,"default",{value:o,enumerable:!0}):t;if(o&&typeof o==="object"||typeof o==="function"){for(let d of f(o))if(!k.call(a,d))C(a,d,{get:c.bind(o,d),enumerable:!0})}if(e)l.set(o,a);return a},x=(o)=>{var r=(u??=new WeakMap).get(o),t;if(r)return r;if(r=C({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of f(o))if(!k.call(r,e))C(r,e,{get:c.bind(o,e),enumerable:!(t=y(o,e))||t.enumerable})}return u.set(o,r),r},u;var M=(o)=>o;function S(o,r){this[o]=M.bind(null,r)}var I=(o,r)=>{for(var t in r)C(o,t,{get:r[t],enumerable:!0,configurable:!0,set:S.bind(r,t)})};var b={};I(b,{CentralIconBase:()=>h});module.exports=x(b);var s=g(require("react")),n=require("react-native-svg"),h=({children:o,size:r=24,mode:t="masked",maskId:e,...l})=>{let p=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:e,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(#${e})`})):o)};var H={};I(H,{IconTextHighlight:()=>B,default:()=>F});module.exports=x(H);var i=g(require("react"));var m=require("react-native-svg"),B=i.default.memo((o)=>i.default.createElement(h,{...o,maskId:"round-outlined-radius-1-stroke-2-IconTextHighlight"},i.default.createElement(m.Path,{d:"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z",fill:"currentColor","fill-opacity":"0.15"}),i.default.createElement(m.Path,{d:"M10 13.5H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),i.default.createElement(m.Path,{d:"M9 15L12 8L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))),F=B;
2
+
3
+ //# debugId=1D2D675470C3FF5E64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconTextHighlight/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 IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconTextHighlight\"><Path d=\"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><Path d=\"M10 13.5H14\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M9 15L12 8L15 15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconTextHighlight;\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,6EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAsE,UAAM,KAAK,CAAC,IACtF,wBAAq+B,EAAr+B,IAAqB,EAAO,OAAO,sDAAqD,wBAAC,OAAD,CAAM,EAAE,wpBAAwpB,KAAK,eAAe,eAAa,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,CAC7+B,EAEc",
9
+ "debugId": "1D2D675470C3FF5E64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as m,Mask as d,Rect as i,G as h}from"react-native-svg";var C=({children:e,size:r=24,mode:l="masked",maskId:n,...p})=>{let a=l!=="raw"&&!!n;return o.createElement(m,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?o.createElement(o.Fragment,null,o.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(h,{color:"#fff"},e)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as s}from"react-native-svg";var u=t.memo((e)=>t.createElement(C,{...e,maskId:"round-outlined-radius-1-stroke-2-IconTextHighlight"},t.createElement(s,{d:"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z",fill:"currentColor","fill-opacity":"0.15"}),t.createElement(s,{d:"M10 13.5H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.createElement(s,{d:"M9 15L12 8L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))),y=u;export{u as IconTextHighlight,y as default};
2
+
3
+ //# debugId=F7E01E006FFA17FE64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconTextHighlight/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 IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconTextHighlight\"><Path d=\"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><Path d=\"M10 13.5H14\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M9 15L12 8L15 15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconTextHighlight;\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,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAAq+B,EAAr+B,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,wpBAAwpB,KAAK,eAAe,eAAa,OAAM,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,CAC7+B,EAEc",
9
+ "debugId": "F7E01E006FFA17FE64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -821,6 +821,7 @@ Below is a complete list of available icons:
821
821
  - IconColorPalette2
822
822
  - IconEyedropper
823
823
  - IconExtendImage
824
+ - IconBandage
824
825
 
825
826
  ### Emoji
826
827
 
@@ -2307,6 +2308,7 @@ Below is a complete list of available icons:
2307
2308
  - IconLetterZCircle
2308
2309
  - IconLetterASquare
2309
2310
  - IconLetterZSquare
2311
+ - IconTextHighlight
2310
2312
 
2311
2313
  ### Vehicles
2312
2314
 
@@ -2314,6 +2316,8 @@ Below is a complete list of available icons:
2314
2316
  - IconBoat
2315
2317
  - IconCarTaxi
2316
2318
  - IconRocket2
2319
+ - IconAirplaneWindowClosed
2320
+ - IconAirplaneWindowOpen
2317
2321
 
2318
2322
  ### Vehicles & Aircrafts
2319
2323