@central-icons-react-native/square-filled-radius-0-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: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
+ }
@@ -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 M=Object.create;var{getPrototypeOf:k,defineProperty:s,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,g=Object.prototype.hasOwnProperty;function h(r){return this[r]}var w,P,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var a=o?w??=new WeakMap:P??=new WeakMap,i=a.get(r);if(i)return i}e=r!=null?M(k(r)):{};let p=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;if(r&&typeof r==="object"||typeof r==="function"){for(let d of c(r))if(!g.call(p,d))s(p,d,{get:h.bind(r,d),enumerable:!0})}if(n)a.set(r,p);return p},L=(r)=>{var o=(u??=new WeakMap).get(r),e;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!g.call(o,n))s(o,n,{get:h.bind(r,n),enumerable:!(e=v(r,n))||e.enumerable})}return u.set(r,o),o},u;var Z=(r)=>r;function y(r,o){this[r]=Z.bind(null,o)}var x=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var S={};x(S,{CentralIconBase:()=>f});module.exports=L(S);var C=B(require("react")),t=require("react-native-svg"),f=({children:r,size:o=24,mode:e="masked",maskId:n,...a})=>{let i=e!=="raw"&&!!n;return C.default.createElement(t.Svg,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},i?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"},r)),C.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};var b={};x(b,{IconBandage:()=>I,default:()=>F});module.exports=L(b);var l=B(require("react"));var m=require("react-native-svg"),I=l.default.memo((r)=>l.default.createElement(f,{...r,maskId:"square-filled-radius-0-stroke-2-IconBandage"},l.default.createElement(m.Path,{d:"M11.5003 19.9138L11.2074 20.2068C9.16 22.2542 5.84069 22.2542 3.79332 20.2068C1.746 18.1594 1.74596 14.8401 3.79332 12.7927L4.08629 12.4998L11.5003 19.9138Z",fill:"currentColor"}),l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5003 12.9138L12.9144 18.4998L5.50035 11.0857L11.0863 5.49976L18.5003 12.9138ZM12.0003 13.2507C11.4481 13.2507 11.0003 13.6984 11.0003 14.2507C11.0006 14.8028 11.4482 15.2507 12.0003 15.2507C12.5525 15.2507 13.0001 14.8028 13.0003 14.2507C13.0003 13.6984 12.5526 13.2507 12.0003 13.2507ZM9.75035 11.0007C9.19806 11.0007 8.75035 11.4484 8.75035 12.0007C8.75061 12.5528 9.19823 13.0007 9.75035 13.0007C10.3025 13.0007 10.7501 12.5528 10.7503 12.0007C10.7503 11.4484 10.3026 11.0007 9.75035 11.0007ZM14.2503 11.0007C13.6981 11.0007 13.2503 11.4484 13.2503 12.0007C13.2506 12.5528 13.6982 13.0007 14.2503 13.0007C14.8025 13.0007 15.2501 12.5528 15.2503 12.0007C15.2503 11.4484 14.8026 11.0007 14.2503 11.0007ZM12.0003 8.75073C11.4481 8.75073 11.0003 9.19845 11.0003 9.75073C11.0006 10.3028 11.4482 10.7507 12.0003 10.7507C12.5525 10.7507 13.0001 10.3028 13.0003 9.75073C13.0003 9.19845 12.5526 8.75073 12.0003 8.75073Z",fill:"currentColor"}),l.default.createElement(m.Path,{d:"M12.7933 3.79273C14.8407 1.74557 18.1601 1.74548 20.2074 3.79273C22.2547 5.84004 22.2545 9.15939 20.2074 11.2068L19.9144 11.4998L12.5003 4.08569L12.7933 3.79273Z",fill:"currentColor"}))),F=I;
2
+
3
+ //# debugId=42E1EE03228BB8C564756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconBandage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBandage\"><Path d=\"M11.5003 19.9138L11.2074 20.2068C9.16 22.2542 5.84069 22.2542 3.79332 20.2068C1.746 18.1594 1.74596 14.8401 3.79332 12.7927L4.08629 12.4998L11.5003 19.9138Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5003 12.9138L12.9144 18.4998L5.50035 11.0857L11.0863 5.49976L18.5003 12.9138ZM12.0003 13.2507C11.4481 13.2507 11.0003 13.6984 11.0003 14.2507C11.0006 14.8028 11.4482 15.2507 12.0003 15.2507C12.5525 15.2507 13.0001 14.8028 13.0003 14.2507C13.0003 13.6984 12.5526 13.2507 12.0003 13.2507ZM9.75035 11.0007C9.19806 11.0007 8.75035 11.4484 8.75035 12.0007C8.75061 12.5528 9.19823 13.0007 9.75035 13.0007C10.3025 13.0007 10.7501 12.5528 10.7503 12.0007C10.7503 11.4484 10.3026 11.0007 9.75035 11.0007ZM14.2503 11.0007C13.6981 11.0007 13.2503 11.4484 13.2503 12.0007C13.2506 12.5528 13.6982 13.0007 14.2503 13.0007C14.8025 13.0007 15.2501 12.5528 15.2503 12.0007C15.2503 11.4484 14.8026 11.0007 14.2503 11.0007ZM12.0003 8.75073C11.4481 8.75073 11.0003 9.19845 11.0003 9.75073C11.0006 10.3028 11.4482 10.7507 12.0003 10.7507C12.5525 10.7507 13.0001 10.3028 13.0003 9.75073C13.0003 9.19845 12.5526 8.75073 12.0003 8.75073Z\" fill=\"currentColor\"/><Path d=\"M12.7933 3.79273C14.8407 1.74557 18.1601 1.74548 20.2074 3.79273C22.2547 5.84004 22.2545 9.15939 20.2074 11.2068L19.9144 11.4998L12.5003 4.08569L12.7933 3.79273Z\" 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,sBAEqB,IAArB,8BAEa,EAAgE,UAAM,KAAK,CAAC,IAChF,wBAA26C,EAA36C,IAAqB,EAAO,OAAO,+CAA8C,wBAAC,OAAD,CAAM,EAAE,+JAA+J,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w5BAAw5B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,CAAI,CACn7C,EAEc",
9
+ "debugId": "42E1EE03228BB8C564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as m,Mask as d,Rect as l,G as f}from"react-native-svg";var s=({children:n,size:o=24,mode:a="masked",maskId:t,...i})=>{let p=a!=="raw"&&!!t;return r.createElement(m,{...i,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?r.createElement(r.Fragment,null,r.createElement(d,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(l,{width:"24",height:"24",fill:"#000"}),r.createElement(f,{color:"#fff"},n)),r.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):n)};import e from"react";import{Path as C}from"react-native-svg";var u=e.memo((n)=>e.createElement(s,{...n,maskId:"square-filled-radius-0-stroke-2-IconBandage"},e.createElement(C,{d:"M11.5003 19.9138L11.2074 20.2068C9.16 22.2542 5.84069 22.2542 3.79332 20.2068C1.746 18.1594 1.74596 14.8401 3.79332 12.7927L4.08629 12.4998L11.5003 19.9138Z",fill:"currentColor"}),e.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5003 12.9138L12.9144 18.4998L5.50035 11.0857L11.0863 5.49976L18.5003 12.9138ZM12.0003 13.2507C11.4481 13.2507 11.0003 13.6984 11.0003 14.2507C11.0006 14.8028 11.4482 15.2507 12.0003 15.2507C12.5525 15.2507 13.0001 14.8028 13.0003 14.2507C13.0003 13.6984 12.5526 13.2507 12.0003 13.2507ZM9.75035 11.0007C9.19806 11.0007 8.75035 11.4484 8.75035 12.0007C8.75061 12.5528 9.19823 13.0007 9.75035 13.0007C10.3025 13.0007 10.7501 12.5528 10.7503 12.0007C10.7503 11.4484 10.3026 11.0007 9.75035 11.0007ZM14.2503 11.0007C13.6981 11.0007 13.2503 11.4484 13.2503 12.0007C13.2506 12.5528 13.6982 13.0007 14.2503 13.0007C14.8025 13.0007 15.2501 12.5528 15.2503 12.0007C15.2503 11.4484 14.8026 11.0007 14.2503 11.0007ZM12.0003 8.75073C11.4481 8.75073 11.0003 9.19845 11.0003 9.75073C11.0006 10.3028 11.4482 10.7507 12.0003 10.7507C12.5525 10.7507 13.0001 10.3028 13.0003 9.75073C13.0003 9.19845 12.5526 8.75073 12.0003 8.75073Z",fill:"currentColor"}),e.createElement(C,{d:"M12.7933 3.79273C14.8407 1.74557 18.1601 1.74548 20.2074 3.79273C22.2547 5.84004 22.2545 9.15939 20.2074 11.2068L19.9144 11.4998L12.5003 4.08569L12.7933 3.79273Z",fill:"currentColor"}))),v=u;export{u as IconBandage,v as default};
2
+
3
+ //# debugId=07E287E117C2A87564756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconBandage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBandage\"><Path d=\"M11.5003 19.9138L11.2074 20.2068C9.16 22.2542 5.84069 22.2542 3.79332 20.2068C1.746 18.1594 1.74596 14.8401 3.79332 12.7927L4.08629 12.4998L11.5003 19.9138Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5003 12.9138L12.9144 18.4998L5.50035 11.0857L11.0863 5.49976L18.5003 12.9138ZM12.0003 13.2507C11.4481 13.2507 11.0003 13.6984 11.0003 14.2507C11.0006 14.8028 11.4482 15.2507 12.0003 15.2507C12.5525 15.2507 13.0001 14.8028 13.0003 14.2507C13.0003 13.6984 12.5526 13.2507 12.0003 13.2507ZM9.75035 11.0007C9.19806 11.0007 8.75035 11.4484 8.75035 12.0007C8.75061 12.5528 9.19823 13.0007 9.75035 13.0007C10.3025 13.0007 10.7501 12.5528 10.7503 12.0007C10.7503 11.4484 10.3026 11.0007 9.75035 11.0007ZM14.2503 11.0007C13.6981 11.0007 13.2503 11.4484 13.2503 12.0007C13.2506 12.5528 13.6982 13.0007 14.2503 13.0007C14.8025 13.0007 15.2501 12.5528 15.2503 12.0007C15.2503 11.4484 14.8026 11.0007 14.2503 11.0007ZM12.0003 8.75073C11.4481 8.75073 11.0003 9.19845 11.0003 9.75073C11.0006 10.3028 11.4482 10.7507 12.0003 10.7507C12.5525 10.7507 13.0001 10.3028 13.0003 9.75073C13.0003 9.19845 12.5526 8.75073 12.0003 8.75073Z\" fill=\"currentColor\"/><Path d=\"M12.7933 3.79273C14.8407 1.74557 18.1601 1.74548 20.2074 3.79273C22.2547 5.84004 22.2545 9.15939 20.2074 11.2068L19.9144 11.4998L12.5003 4.08569L12.7933 3.79273Z\" 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,eAAS,yBAEF,IAAM,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA26C,EAA36C,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,+JAA+J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w5BAAw5B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,CAAI,CACn7C,EAEc",
9
+ "debugId": "07E287E117C2A87564756E2164756E21",
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 L=Object.create;var{getPrototypeOf:v,defineProperty:C,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,g=Object.prototype.hasOwnProperty;function c(o){return this[o]}var H,P,x=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var s=r?H??=new WeakMap:P??=new WeakMap,p=s.get(o);if(p)return p}e=o!=null?L(v(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 a of u(o))if(!g.call(m,a))C(m,a,{get:c.bind(o,a),enumerable:!0})}if(t)s.set(o,m);return m},I=(o)=>{var r=(h??=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 u(o))if(!g.call(r,t))C(r,t,{get:c.bind(o,t),enumerable:!(e=w(o,t))||e.enumerable})}return h.set(o,r),r},h;var y=(o)=>o;function M(o,r){this[o]=y.bind(null,r)}var k=(o,r)=>{for(var e in r)C(o,e,{get:r[e],enumerable:!0,configurable:!0,set:M.bind(r,e)})};var S={};k(S,{CentralIconBase:()=>d});module.exports=I(S);var l=x(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...s})=>{let p=e!=="raw"&&!!t;return l.default.createElement(n.Svg,{...s,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(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),l.default.createElement(n.G,{color:"#fff"},o)),l.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var V={};k(V,{IconTextHighlight:()=>B,default:()=>b});module.exports=I(V);var i=x(require("react"));var f=require("react-native-svg"),B=i.default.memo((o)=>i.default.createElement(d,{...o,maskId:"square-filled-radius-0-stroke-2-IconTextHighlight"},i.default.createElement(f.Path,{d:"M12.8877 12.5001H11.1123L12 10.1593L12.8877 12.5001Z",fill:"currentColor"}),i.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M7.15723 4.27549C12.2308 3.64019 19 2.40388 19 6.75107C18.9998 7.88349 18.544 8.61768 17.7803 9.07724C20.7205 9.35356 23 10.184 23 12.5011C22.9997 14.1824 21.7991 15.0809 20.0166 15.5528C20.6058 15.9135 20.9999 16.5614 21 17.3028C20.9998 18.3943 20.1468 19.2957 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4315 19.873 12.118 20.0685 10.9521 20.254C9.89327 20.4225 8.89549 19.9173 8.375 19.0782C5.42805 18.9433 3.00049 18.2993 3 16.0011C3 14.7475 3.72298 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2087 1 10.5011C1 8.72641 2.73098 7.85127 5.12402 7.42002C5.0446 7.18364 5.00003 6.93154 5 6.67002C5.00018 5.44769 5.94434 4.42737 7.15723 4.27549ZM11.0596 7.00009L8.06543 14.8956L8 15.0665V16.0001H10V15.4317L10.3535 14.5001H13.6465L14 15.4317V16.0001H16V15.0665L15.9346 14.8956L12.9404 7.00009H11.0596Z",fill:"currentColor"}))),b=B;
2
+
3
+ //# debugId=162C03A8ECB9828464756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconTextHighlight\"><Path d=\"M12.8877 12.5001H11.1123L12 10.1593L12.8877 12.5001Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.15723 4.27549C12.2308 3.64019 19 2.40388 19 6.75107C18.9998 7.88349 18.544 8.61768 17.7803 9.07724C20.7205 9.35356 23 10.184 23 12.5011C22.9997 14.1824 21.7991 15.0809 20.0166 15.5528C20.6058 15.9135 20.9999 16.5614 21 17.3028C20.9998 18.3943 20.1468 19.2957 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4315 19.873 12.118 20.0685 10.9521 20.254C9.89327 20.4225 8.89549 19.9173 8.375 19.0782C5.42805 18.9433 3.00049 18.2993 3 16.0011C3 14.7475 3.72298 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2087 1 10.5011C1 8.72641 2.73098 7.85127 5.12402 7.42002C5.0446 7.18364 5.00003 6.93154 5 6.67002C5.00018 5.44769 5.94434 4.42737 7.15723 4.27549ZM11.0596 7.00009L8.06543 14.8956L8 15.0665V16.0001H10V15.4317L10.3535 14.5001H13.6465L14 15.4317V16.0001H16V15.0665L15.9346 14.8956L12.9404 7.00009H11.0596Z\" fill=\"currentColor\"/></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,wBAA4iC,EAA5iC,IAAqB,EAAO,OAAO,qDAAoD,wBAAC,OAAD,CAAM,EAAE,uDAAuD,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4zBAA4zB,KAAK,eAAc,CAAI,CACpjC,EAEc",
9
+ "debugId": "162C03A8ECB9828464756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as d,Rect as l,G as f}from"react-native-svg";var C=({children:e,size:r=24,mode:s="masked",maskId:n,...p})=>{let m=s!=="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"},m?o.createElement(o.Fragment,null,o.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(f,{color:"#fff"},e)),o.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as i}from"react-native-svg";var h=t.memo((e)=>t.createElement(C,{...e,maskId:"square-filled-radius-0-stroke-2-IconTextHighlight"},t.createElement(i,{d:"M12.8877 12.5001H11.1123L12 10.1593L12.8877 12.5001Z",fill:"currentColor"}),t.createElement(i,{fillRule:"evenodd",clipRule:"evenodd",d:"M7.15723 4.27549C12.2308 3.64019 19 2.40388 19 6.75107C18.9998 7.88349 18.544 8.61768 17.7803 9.07724C20.7205 9.35356 23 10.184 23 12.5011C22.9997 14.1824 21.7991 15.0809 20.0166 15.5528C20.6058 15.9135 20.9999 16.5614 21 17.3028C20.9998 18.3943 20.1468 19.2957 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4315 19.873 12.118 20.0685 10.9521 20.254C9.89327 20.4225 8.89549 19.9173 8.375 19.0782C5.42805 18.9433 3.00049 18.2993 3 16.0011C3 14.7475 3.72298 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2087 1 10.5011C1 8.72641 2.73098 7.85127 5.12402 7.42002C5.0446 7.18364 5.00003 6.93154 5 6.67002C5.00018 5.44769 5.94434 4.42737 7.15723 4.27549ZM11.0596 7.00009L8.06543 14.8956L8 15.0665V16.0001H10V15.4317L10.3535 14.5001H13.6465L14 15.4317V16.0001H16V15.0665L15.9346 14.8956L12.9404 7.00009H11.0596Z",fill:"currentColor"}))),w=h;export{h as IconTextHighlight,w as default};
2
+
3
+ //# debugId=AFA0C4A58110BDB464756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconTextHighlight\"><Path d=\"M12.8877 12.5001H11.1123L12 10.1593L12.8877 12.5001Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.15723 4.27549C12.2308 3.64019 19 2.40388 19 6.75107C18.9998 7.88349 18.544 8.61768 17.7803 9.07724C20.7205 9.35356 23 10.184 23 12.5011C22.9997 14.1824 21.7991 15.0809 20.0166 15.5528C20.6058 15.9135 20.9999 16.5614 21 17.3028C20.9998 18.3943 20.1468 19.2957 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4315 19.873 12.118 20.0685 10.9521 20.254C9.89327 20.4225 8.89549 19.9173 8.375 19.0782C5.42805 18.9433 3.00049 18.2993 3 16.0011C3 14.7475 3.72298 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2087 1 10.5011C1 8.72641 2.73098 7.85127 5.12402 7.42002C5.0446 7.18364 5.00003 6.93154 5 6.67002C5.00018 5.44769 5.94434 4.42737 7.15723 4.27549ZM11.0596 7.00009L8.06543 14.8956L8 15.0665V16.0001H10V15.4317L10.3535 14.5001H13.6465L14 15.4317V16.0001H16V15.0665L15.9346 14.8956L12.9404 7.00009H11.0596Z\" fill=\"currentColor\"/></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,gBAA4iC,EAA5iC,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,uDAAuD,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4zBAA4zB,KAAK,eAAc,CAAI,CACpjC,EAEc",
9
+ "debugId": "AFA0C4A58110BDB464756E2164756E21",
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