@central-icons-react-native/round-outlined-radius-1-stroke-2 1.1.295 → 1.1.296

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 IconArrowRotatePoint: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconArrowRotatePoint;
@@ -0,0 +1,3 @@
1
+ var P=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:L}=Object,h=Object.prototype.hasOwnProperty;function f(o){return this[o]}var y,M,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var l=r?y??=new WeakMap:M??=new WeakMap,u=l.get(o);if(u)return u}e=o!=null?P(B(o)):{};let a=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let k of c(o))if(!h.call(a,k))p(a,k,{get:f.bind(o,k),enumerable:!0});if(t)l.set(o,a);return a},x=(o)=>{var r=(C??=new WeakMap).get(o),e;if(r)return r;if(r=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!h.call(r,t))p(r,t,{get:f.bind(o,t),enumerable:!(e=L(o,t))||e.enumerable})}return C.set(o,r),r},C;var v=(o)=>o;function S(o,r){this[o]=v.bind(null,r)}var w=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var j={};w(j,{CentralIconBase:()=>m});module.exports=x(j);var s=g(require("react")),n=require("react-native-svg"),m=({children:o,size:r=24,mode:e="masked",maskId:t,...l})=>{let u=e!=="raw"&&!!t;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"},u?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 W={};w(W,{default:()=>b,IconArrowRotatePoint:()=>I});module.exports=x(W);var i=g(require("react"));var d=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(m,{...o,maskId:"round-outlined-radius-1-stroke-2-IconArrowRotatePoint"},i.default.createElement(d.Path,{d:"M19 4V8H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M4.98828 20V16H8.98828",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M20 12C20 16.4183 16.4183 20 12 20C9.36378 20 6.96969 18.7249 5.5 16.7578",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M4 12C4 7.58172 7.58172 4 12 4C14.6045 4 16.9726 5.24457 18.4465 7.17142",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Circle,{cx:"12",cy:"12",r:"1.75",fill:"currentColor"}))}),b=I;
2
+
3
+ //# debugId=776016D4FA9040FC64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowRotatePoint/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 IconArrowRotatePoint: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconArrowRotatePoint\"><Path d=\"M19 4V8H15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M4.98828 20V16H8.98828\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M20 12C20 16.4183 16.4183 20 12 20C9.36378 20 6.96969 18.7249 5.5 16.7578\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M4 12C4 7.58172 7.58172 4 12 4C14.6045 4 16.9726 5.24457 18.4465 7.17142\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"12\" r=\"1.75\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconArrowRotatePoint;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,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,gFChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAAyE,UAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,wBAAgsB,EAAhsB,IAAqB,EAAO,OAAO,yDAAwD,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4EAA4E,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2EAA2E,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EACxsB,EAEc",
9
+ "debugId": "776016D4FA9040FC64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as k,Rect as i,G as m}from"react-native-svg";var d=({children:t,size:e=24,mode:p="masked",maskId:s,...l})=>{let u=p!=="raw"&&!!s;return o.createElement(a,{...l,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},u?o.createElement(o.Fragment,null,o.createElement(k,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(m,{color:"#fff"},t)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):t)};import r from"react";import{Circle as C,Path as n}from"react-native-svg";var c=r.memo((t)=>{return r.createElement(d,{...t,maskId:"round-outlined-radius-1-stroke-2-IconArrowRotatePoint"},r.createElement(n,{d:"M19 4V8H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M4.98828 20V16H8.98828",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M20 12C20 16.4183 16.4183 20 12 20C9.36378 20 6.96969 18.7249 5.5 16.7578",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M4 12C4 7.58172 7.58172 4 12 4C14.6045 4 16.9726 5.24457 18.4465 7.17142",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(C,{cx:"12",cy:"12",r:"1.75",fill:"currentColor"}))}),y=c;export{y as default,c as IconArrowRotatePoint};
2
+
3
+ //# debugId=B79AE8DFBB6C7B1564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowRotatePoint/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 IconArrowRotatePoint: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconArrowRotatePoint\"><Path d=\"M19 4V8H15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M4.98828 20V16H8.98828\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M20 12C20 16.4183 16.4183 20 12 20C9.36378 20 6.96969 18.7249 5.5 16.7578\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M4 12C4 7.58172 7.58172 4 12 4C14.6045 4 16.9726 5.24457 18.4465 7.17142\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"12\" r=\"1.75\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconArrowRotatePoint;\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,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAAgsB,EAAhsB,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,4EAA4E,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,2EAA2E,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EACxsB,EAEc",
9
+ "debugId": "B79AE8DFBB6C7B1564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCastle: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconCastle;
@@ -0,0 +1,3 @@
1
+ var H=Object.create;var{getPrototypeOf:w,defineProperty:C,getOwnPropertyNames:u,getOwnPropertyDescriptor:P}=Object,h=Object.prototype.hasOwnProperty;function c(o){return this[o]}var v,y,k=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var a=r?v??=new WeakMap:y??=new WeakMap,m=a.get(o);if(m)return m}t=o!=null?H(w(o)):{};let p=r||!o||!o.__esModule?C(t,"default",{value:o,enumerable:!0}):t;for(let l of u(o))if(!h.call(p,l))C(p,l,{get:c.bind(o,l),enumerable:!0});if(e)a.set(o,p);return p},g=(o)=>{var r=(f??=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 u(o))if(!h.call(r,e))C(r,e,{get:c.bind(o,e),enumerable:!(t=P(o,e))||t.enumerable})}return f.set(o,r),r},f;var S=(o)=>o;function V(o,r){this[o]=S.bind(null,r)}var x=(o,r)=>{for(var t in r)C(o,t,{get:r[t],enumerable:!0,configurable:!0,set:V.bind(r,t)})};var b={};x(b,{CentralIconBase:()=>d});module.exports=g(b);var s=k(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:t="masked",maskId:e,...a})=>{let m=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...a,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?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 L={};x(L,{default:()=>M,IconCastle:()=>B});module.exports=g(L);var i=k(require("react"));var I=require("react-native-svg"),B=i.default.memo((o)=>{return i.default.createElement(d,{...o,maskId:"round-outlined-radius-1-stroke-2-IconCastle"},i.default.createElement(I.Path,{d:"M17 4H18C18.5523 4 19 4.44772 19 5V6L19.9235 18.9288C19.9648 19.5076 19.5064 20 18.926 20H14V16C14 15.4477 13.5523 15 13 15H11C10.4477 15 10 15.4477 10 16V20H5.07398C4.49363 20 4.03517 19.5076 4.07652 18.9288L5 6V5C5 4.44772 5.44772 4 6 4H7C7.55228 4 8 4.44772 8 5C8 5.55228 8.44772 6 9 6H9.5C10.0523 6 10.5 5.55228 10.5 5C10.5 4.44772 10.9477 4 11.5 4H12.5C13.0523 4 13.5 4.44772 13.5 5C13.5 5.55228 13.9477 6 14.5 6H15C15.5523 6 16 5.55228 16 5C16 4.44772 16.4477 4 17 4Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))}),M=B;
2
+
3
+ //# debugId=C3D01BE7B8B98DE664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCastle/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 IconCastle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconCastle\"><Path d=\"M17 4H18C18.5523 4 19 4.44772 19 5V6L19.9235 18.9288C19.9648 19.5076 19.5064 20 18.926 20H14V16C14 15.4477 13.5523 15 13 15H11C10.4477 15 10 15.4477 10 16V20H5.07398C4.49363 20 4.03517 19.5076 4.07652 18.9288L5 6V5C5 4.44772 5.44772 4 6 4H7C7.55228 4 8 4.44772 8 5C8 5.55228 8.44772 6 9 6H9.5C10.0523 6 10.5 5.55228 10.5 5C10.5 4.44772 10.9477 4 11.5 4H12.5C13.0523 4 13.5 4.44772 13.5 5C13.5 5.55228 13.9477 6 14.5 6H15C15.5523 6 16 5.55228 16 5C16 4.44772 16.4477 4 17 4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconCastle;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,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,sEChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAAqnB,EAArnB,IAAqB,EAAO,OAAO,+CAA8C,wBAAC,OAAD,CAAM,EAAE,4dAA4d,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,EAC7nB,EAEc",
9
+ "debugId": "C3D01BE7B8B98DE664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as i,Mask as l,Rect as s,G as d}from"react-native-svg";var C=({children:t,size:r=24,mode:a="masked",maskId:e,...m})=>{let p=a!=="raw"&&!!e;return o.createElement(i,{...m,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?o.createElement(o.Fragment,null,o.createElement(l,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(s,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},t)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):t)};import n from"react";import{Path as f}from"react-native-svg";var u=n.memo((t)=>{return n.createElement(C,{...t,maskId:"round-outlined-radius-1-stroke-2-IconCastle"},n.createElement(f,{d:"M17 4H18C18.5523 4 19 4.44772 19 5V6L19.9235 18.9288C19.9648 19.5076 19.5064 20 18.926 20H14V16C14 15.4477 13.5523 15 13 15H11C10.4477 15 10 15.4477 10 16V20H5.07398C4.49363 20 4.03517 19.5076 4.07652 18.9288L5 6V5C5 4.44772 5.44772 4 6 4H7C7.55228 4 8 4.44772 8 5C8 5.55228 8.44772 6 9 6H9.5C10.0523 6 10.5 5.55228 10.5 5C10.5 4.44772 10.9477 4 11.5 4H12.5C13.0523 4 13.5 4.44772 13.5 5C13.5 5.55228 13.9477 6 14.5 6H15C15.5523 6 16 5.55228 16 5C16 4.44772 16.4477 4 17 4Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))}),P=u;export{P as default,u as IconCastle};
2
+
3
+ //# debugId=F953EBC1D183929D64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCastle/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 IconCastle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconCastle\"><Path d=\"M17 4H18C18.5523 4 19 4.44772 19 5V6L19.9235 18.9288C19.9648 19.5076 19.5064 20 18.926 20H14V16C14 15.4477 13.5523 15 13 15H11C10.4477 15 10 15.4477 10 16V20H5.07398C4.49363 20 4.03517 19.5076 4.07652 18.9288L5 6V5C5 4.44772 5.44772 4 6 4H7C7.55228 4 8 4.44772 8 5C8 5.55228 8.44772 6 9 6H9.5C10.0523 6 10.5 5.55228 10.5 5C10.5 4.44772 10.9477 4 11.5 4H12.5C13.0523 4 13.5 4.44772 13.5 5C13.5 5.55228 13.9477 6 14.5 6H15C15.5523 6 16 5.55228 16 5C16 4.44772 16.4477 4 17 4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconCastle;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAqnB,EAArnB,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,4dAA4d,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,EAC7nB,EAEc",
9
+ "debugId": "F953EBC1D183929D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconEarth2: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconEarth2;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:w,defineProperty:i,getOwnPropertyNames:f,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function k(C){return this[C]}var y,v,L=(C,r,o)=>{var t=C!=null&&typeof C==="object";if(t){var m=r?y??=new WeakMap:v??=new WeakMap,p=m.get(C);if(p)return p}o=C!=null?B(w(C)):{};let a=r||!C||!C.__esModule?i(o,"default",{value:C,enumerable:!0}):o;for(let d of f(C))if(!c.call(a,d))i(a,d,{get:k.bind(C,d),enumerable:!0});if(t)m.set(C,a);return a},g=(C)=>{var r=(u??=new WeakMap).get(C),o;if(r)return r;if(r=i({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var t of f(C))if(!c.call(r,t))i(r,t,{get:k.bind(C,t),enumerable:!(o=P(C,t))||o.enumerable})}return u.set(C,r),r},u;var S=(C)=>C;function M(C,r){this[C]=S.bind(null,r)}var x=(C,r)=>{for(var o in r)i(C,o,{get:r[o],enumerable:!0,configurable:!0,set:M.bind(r,o)})};var b={};x(b,{CentralIconBase:()=>h});module.exports=g(b);var n=L(require("react")),e=require("react-native-svg"),h=({children:C,size:r=24,mode:o="masked",maskId:t,...m})=>{let p=o!=="raw"&&!!t;return n.default.createElement(e.Svg,{...m,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?n.default.createElement(n.default.Fragment,null,n.default.createElement(e.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement(e.Rect,{width:"24",height:"24",fill:"#000"}),n.default.createElement(e.G,{color:"#fff"},C)),n.default.createElement(e.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):C)};var E={};x(E,{default:()=>$,IconEarth2:()=>I});module.exports=g(E);var s=L(require("react"));var l=require("react-native-svg"),I=s.default.memo((C)=>{return s.default.createElement(h,{...C,maskId:"round-outlined-radius-1-stroke-2-IconEarth2"},s.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),s.default.createElement(l.Path,{d:"M6.11719 5.19016L6.43619 7.10316C6.6417 8.33698 7.11745 9.11582 8.00195 10.0002C9.42037 11.4187 8.57564 13.5739 9.50195 14.5002C10.2301 15.2287 10.002 17.5002 11.502 17.5002C12.502 17.5002 12.8883 15.8354 14.002 15.0002C14.002 15.0002 17.002 12.5002 12.0452 11.1168C10.4445 10.67 11.502 8.00024 13.502 8.50024C15.9273 9.10658 16.1951 6.61452 17.0362 4.93116L17.1822 4.63916",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),s.default.createElement(l.Path,{d:"M17.6982 4.72363C17.5056 5.1085 17.3337 5.57099 17.1289 6.08789C16.9305 6.58875 16.7045 7.12951 16.417 7.60449C16.1296 8.07924 15.7578 8.52759 15.2461 8.80469C14.7196 9.0898 14.0989 9.16508 13.3799 8.98535C12.6462 8.80194 12.1026 9.18765 11.874 9.66797C11.758 9.91192 11.7436 10.1413 11.793 10.3008C11.8352 10.4371 11.9352 10.5668 12.1787 10.6348C13.4558 10.9912 14.2953 11.4387 14.7998 11.959C15.3276 12.5035 15.4653 13.1059 15.375 13.6582C15.2899 14.1784 15.0107 14.6136 14.7832 14.8994C14.6661 15.0465 14.5543 15.165 14.4707 15.2471C14.4287 15.2883 14.3929 15.3206 14.3672 15.3438C14.3544 15.3553 14.3438 15.3643 14.3359 15.3711C14.332 15.3745 14.3287 15.3777 14.3262 15.3799L14.3223 15.3838C14.32 15.3815 14.2943 15.352 14.001 15L14.3213 15.3848C14.3148 15.3902 14.3076 15.3953 14.3008 15.4004C13.8271 15.7558 13.5095 16.2854 13.1191 16.8486C12.9374 17.1108 12.7306 17.391 12.4854 17.6045C12.2299 17.8269 11.906 18 11.501 18C10.9771 18 10.5764 17.7929 10.2852 17.4678C10.0141 17.165 9.85331 16.7777 9.7373 16.4326C9.67799 16.2561 9.6263 16.0755 9.57812 15.9082C9.52882 15.7369 9.48401 15.5799 9.43555 15.4336C9.33373 15.1261 9.24035 14.9464 9.14746 14.8535C8.81732 14.5233 8.66826 14.1054 8.58594 13.707C8.50564 13.3183 8.47585 12.8729 8.4375 12.4834C8.35643 11.6602 8.22214 10.9282 7.64746 10.3535C6.70998 9.41609 6.17414 8.5502 5.94629 7.20312L5.94531 7.2041L5.51172 5.10156L6.49023 4.89844L6.9248 7.00195C6.9261 7.00825 6.92766 7.01515 6.92871 7.02148C7.11367 8.13133 7.52742 8.81946 8.35449 9.64648C9.19813 10.4901 9.35084 11.5453 9.43359 12.3857C9.47715 12.8282 9.49829 13.1846 9.56445 13.5049C9.62857 13.8152 9.72169 14.0136 9.85449 14.1465C10.1257 14.4178 10.2777 14.7958 10.3848 15.1191C10.4407 15.288 10.4913 15.465 10.5391 15.6309C10.588 15.8007 10.6342 15.9615 10.6855 16.1143C10.791 16.428 10.8996 16.6549 11.0303 16.8008C11.1409 16.9242 11.2749 17 11.501 17C11.5959 17 11.6951 16.9654 11.8281 16.8496C11.9713 16.725 12.1188 16.5367 12.2979 16.2783C12.5877 15.8601 12.9548 15.2558 13.4707 14.79L13.6807 14.6162C13.6811 14.6158 13.6818 14.6149 13.6826 14.6143C13.6858 14.6115 13.6915 14.6065 13.6992 14.5996C13.715 14.5854 13.7392 14.563 13.7695 14.5332C13.8307 14.4732 13.9143 14.3852 14.001 14.2764C14.1809 14.0503 14.3422 13.7746 14.3877 13.4971C14.4278 13.2514 14.3858 12.9686 14.082 12.6553C13.7549 12.3179 13.1109 11.9338 11.9102 11.5986C11.3535 11.4433 10.9851 11.0718 10.8379 10.5977C10.698 10.1466 10.7725 9.65503 10.9707 9.23828C11.3708 8.3973 12.356 7.69915 13.6221 8.01562C14.1313 8.14293 14.491 8.07649 14.7695 7.92578C15.063 7.76684 15.3212 7.48385 15.5615 7.08691C15.8016 6.69025 16.0015 6.21865 16.1992 5.71973C16.3906 5.23681 16.5857 4.71199 16.8037 4.27637L17.6982 4.72363Z",fill:"currentColor"}))}),$=I;
2
+
3
+ //# debugId=6F7CC48D5AC001D164756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconEarth2/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 IconEarth2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconEarth2\"><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M6.11719 5.19016L6.43619 7.10316C6.6417 8.33698 7.11745 9.11582 8.00195 10.0002C9.42037 11.4187 8.57564 13.5739 9.50195 14.5002C10.2301 15.2287 10.002 17.5002 11.502 17.5002C12.502 17.5002 12.8883 15.8354 14.002 15.0002C14.002 15.0002 17.002 12.5002 12.0452 11.1168C10.4445 10.67 11.502 8.00024 13.502 8.50024C15.9273 9.10658 16.1951 6.61452 17.0362 4.93116L17.1822 4.63916\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M17.6982 4.72363C17.5056 5.1085 17.3337 5.57099 17.1289 6.08789C16.9305 6.58875 16.7045 7.12951 16.417 7.60449C16.1296 8.07924 15.7578 8.52759 15.2461 8.80469C14.7196 9.0898 14.0989 9.16508 13.3799 8.98535C12.6462 8.80194 12.1026 9.18765 11.874 9.66797C11.758 9.91192 11.7436 10.1413 11.793 10.3008C11.8352 10.4371 11.9352 10.5668 12.1787 10.6348C13.4558 10.9912 14.2953 11.4387 14.7998 11.959C15.3276 12.5035 15.4653 13.1059 15.375 13.6582C15.2899 14.1784 15.0107 14.6136 14.7832 14.8994C14.6661 15.0465 14.5543 15.165 14.4707 15.2471C14.4287 15.2883 14.3929 15.3206 14.3672 15.3438C14.3544 15.3553 14.3438 15.3643 14.3359 15.3711C14.332 15.3745 14.3287 15.3777 14.3262 15.3799L14.3223 15.3838C14.32 15.3815 14.2943 15.352 14.001 15L14.3213 15.3848C14.3148 15.3902 14.3076 15.3953 14.3008 15.4004C13.8271 15.7558 13.5095 16.2854 13.1191 16.8486C12.9374 17.1108 12.7306 17.391 12.4854 17.6045C12.2299 17.8269 11.906 18 11.501 18C10.9771 18 10.5764 17.7929 10.2852 17.4678C10.0141 17.165 9.85331 16.7777 9.7373 16.4326C9.67799 16.2561 9.6263 16.0755 9.57812 15.9082C9.52882 15.7369 9.48401 15.5799 9.43555 15.4336C9.33373 15.1261 9.24035 14.9464 9.14746 14.8535C8.81732 14.5233 8.66826 14.1054 8.58594 13.707C8.50564 13.3183 8.47585 12.8729 8.4375 12.4834C8.35643 11.6602 8.22214 10.9282 7.64746 10.3535C6.70998 9.41609 6.17414 8.5502 5.94629 7.20312L5.94531 7.2041L5.51172 5.10156L6.49023 4.89844L6.9248 7.00195C6.9261 7.00825 6.92766 7.01515 6.92871 7.02148C7.11367 8.13133 7.52742 8.81946 8.35449 9.64648C9.19813 10.4901 9.35084 11.5453 9.43359 12.3857C9.47715 12.8282 9.49829 13.1846 9.56445 13.5049C9.62857 13.8152 9.72169 14.0136 9.85449 14.1465C10.1257 14.4178 10.2777 14.7958 10.3848 15.1191C10.4407 15.288 10.4913 15.465 10.5391 15.6309C10.588 15.8007 10.6342 15.9615 10.6855 16.1143C10.791 16.428 10.8996 16.6549 11.0303 16.8008C11.1409 16.9242 11.2749 17 11.501 17C11.5959 17 11.6951 16.9654 11.8281 16.8496C11.9713 16.725 12.1188 16.5367 12.2979 16.2783C12.5877 15.8601 12.9548 15.2558 13.4707 14.79L13.6807 14.6162C13.6811 14.6158 13.6818 14.6149 13.6826 14.6143C13.6858 14.6115 13.6915 14.6065 13.6992 14.5996C13.715 14.5854 13.7392 14.563 13.7695 14.5332C13.8307 14.4732 13.9143 14.3852 14.001 14.2764C14.1809 14.0503 14.3422 13.7746 14.3877 13.4971C14.4278 13.2514 14.3858 12.9686 14.082 12.6553C13.7549 12.3179 13.1109 11.9338 11.9102 11.5986C11.3535 11.4433 10.9851 11.0718 10.8379 10.5977C10.698 10.1466 10.7725 9.65503 10.9707 9.23828C11.3708 8.3973 12.356 7.69915 13.6221 8.01562C14.1313 8.14293 14.491 8.07649 14.7695 7.92578C15.063 7.76684 15.3212 7.48385 15.5615 7.08691C15.8016 6.69025 16.0015 6.21865 16.1992 5.71973C16.3906 5.23681 16.5857 4.71199 16.8037 4.27637L17.6982 4.72363Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEarth2;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,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,sEChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAAwwG,EAAxwG,IAAqB,EAAO,OAAO,+CAA8C,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,wXAAwX,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qpFAAqpF,KAAK,eAAc,CAAI,EAChxG,EAEc",
9
+ "debugId": "6F7CC48D5AC001D164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as a,Mask as d,Rect as n,G as h}from"react-native-svg";var s=({children:t,size:r=24,mode:l="masked",maskId:e,...m})=>{let p=l!=="raw"&&!!e;return C.createElement(a,{...m,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?C.createElement(C.Fragment,null,C.createElement(d,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.createElement(n,{width:"24",height:"24",fill:"#000"}),C.createElement(h,{color:"#fff"},t)),C.createElement(n,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):t)};import o from"react";import{Circle as u,Path as i}from"react-native-svg";var f=o.memo((t)=>{return o.createElement(s,{...t,maskId:"round-outlined-radius-1-stroke-2-IconEarth2"},o.createElement(u,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),o.createElement(i,{d:"M6.11719 5.19016L6.43619 7.10316C6.6417 8.33698 7.11745 9.11582 8.00195 10.0002C9.42037 11.4187 8.57564 13.5739 9.50195 14.5002C10.2301 15.2287 10.002 17.5002 11.502 17.5002C12.502 17.5002 12.8883 15.8354 14.002 15.0002C14.002 15.0002 17.002 12.5002 12.0452 11.1168C10.4445 10.67 11.502 8.00024 13.502 8.50024C15.9273 9.10658 16.1951 6.61452 17.0362 4.93116L17.1822 4.63916",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),o.createElement(i,{d:"M17.6982 4.72363C17.5056 5.1085 17.3337 5.57099 17.1289 6.08789C16.9305 6.58875 16.7045 7.12951 16.417 7.60449C16.1296 8.07924 15.7578 8.52759 15.2461 8.80469C14.7196 9.0898 14.0989 9.16508 13.3799 8.98535C12.6462 8.80194 12.1026 9.18765 11.874 9.66797C11.758 9.91192 11.7436 10.1413 11.793 10.3008C11.8352 10.4371 11.9352 10.5668 12.1787 10.6348C13.4558 10.9912 14.2953 11.4387 14.7998 11.959C15.3276 12.5035 15.4653 13.1059 15.375 13.6582C15.2899 14.1784 15.0107 14.6136 14.7832 14.8994C14.6661 15.0465 14.5543 15.165 14.4707 15.2471C14.4287 15.2883 14.3929 15.3206 14.3672 15.3438C14.3544 15.3553 14.3438 15.3643 14.3359 15.3711C14.332 15.3745 14.3287 15.3777 14.3262 15.3799L14.3223 15.3838C14.32 15.3815 14.2943 15.352 14.001 15L14.3213 15.3848C14.3148 15.3902 14.3076 15.3953 14.3008 15.4004C13.8271 15.7558 13.5095 16.2854 13.1191 16.8486C12.9374 17.1108 12.7306 17.391 12.4854 17.6045C12.2299 17.8269 11.906 18 11.501 18C10.9771 18 10.5764 17.7929 10.2852 17.4678C10.0141 17.165 9.85331 16.7777 9.7373 16.4326C9.67799 16.2561 9.6263 16.0755 9.57812 15.9082C9.52882 15.7369 9.48401 15.5799 9.43555 15.4336C9.33373 15.1261 9.24035 14.9464 9.14746 14.8535C8.81732 14.5233 8.66826 14.1054 8.58594 13.707C8.50564 13.3183 8.47585 12.8729 8.4375 12.4834C8.35643 11.6602 8.22214 10.9282 7.64746 10.3535C6.70998 9.41609 6.17414 8.5502 5.94629 7.20312L5.94531 7.2041L5.51172 5.10156L6.49023 4.89844L6.9248 7.00195C6.9261 7.00825 6.92766 7.01515 6.92871 7.02148C7.11367 8.13133 7.52742 8.81946 8.35449 9.64648C9.19813 10.4901 9.35084 11.5453 9.43359 12.3857C9.47715 12.8282 9.49829 13.1846 9.56445 13.5049C9.62857 13.8152 9.72169 14.0136 9.85449 14.1465C10.1257 14.4178 10.2777 14.7958 10.3848 15.1191C10.4407 15.288 10.4913 15.465 10.5391 15.6309C10.588 15.8007 10.6342 15.9615 10.6855 16.1143C10.791 16.428 10.8996 16.6549 11.0303 16.8008C11.1409 16.9242 11.2749 17 11.501 17C11.5959 17 11.6951 16.9654 11.8281 16.8496C11.9713 16.725 12.1188 16.5367 12.2979 16.2783C12.5877 15.8601 12.9548 15.2558 13.4707 14.79L13.6807 14.6162C13.6811 14.6158 13.6818 14.6149 13.6826 14.6143C13.6858 14.6115 13.6915 14.6065 13.6992 14.5996C13.715 14.5854 13.7392 14.563 13.7695 14.5332C13.8307 14.4732 13.9143 14.3852 14.001 14.2764C14.1809 14.0503 14.3422 13.7746 14.3877 13.4971C14.4278 13.2514 14.3858 12.9686 14.082 12.6553C13.7549 12.3179 13.1109 11.9338 11.9102 11.5986C11.3535 11.4433 10.9851 11.0718 10.8379 10.5977C10.698 10.1466 10.7725 9.65503 10.9707 9.23828C11.3708 8.3973 12.356 7.69915 13.6221 8.01562C14.1313 8.14293 14.491 8.07649 14.7695 7.92578C15.063 7.76684 15.3212 7.48385 15.5615 7.08691C15.8016 6.69025 16.0015 6.21865 16.1992 5.71973C16.3906 5.23681 16.5857 4.71199 16.8037 4.27637L17.6982 4.72363Z",fill:"currentColor"}))}),y=f;export{y as default,f as IconEarth2};
2
+
3
+ //# debugId=8E761239B7013B2064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconEarth2/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 IconEarth2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconEarth2\"><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M6.11719 5.19016L6.43619 7.10316C6.6417 8.33698 7.11745 9.11582 8.00195 10.0002C9.42037 11.4187 8.57564 13.5739 9.50195 14.5002C10.2301 15.2287 10.002 17.5002 11.502 17.5002C12.502 17.5002 12.8883 15.8354 14.002 15.0002C14.002 15.0002 17.002 12.5002 12.0452 11.1168C10.4445 10.67 11.502 8.00024 13.502 8.50024C15.9273 9.10658 16.1951 6.61452 17.0362 4.93116L17.1822 4.63916\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M17.6982 4.72363C17.5056 5.1085 17.3337 5.57099 17.1289 6.08789C16.9305 6.58875 16.7045 7.12951 16.417 7.60449C16.1296 8.07924 15.7578 8.52759 15.2461 8.80469C14.7196 9.0898 14.0989 9.16508 13.3799 8.98535C12.6462 8.80194 12.1026 9.18765 11.874 9.66797C11.758 9.91192 11.7436 10.1413 11.793 10.3008C11.8352 10.4371 11.9352 10.5668 12.1787 10.6348C13.4558 10.9912 14.2953 11.4387 14.7998 11.959C15.3276 12.5035 15.4653 13.1059 15.375 13.6582C15.2899 14.1784 15.0107 14.6136 14.7832 14.8994C14.6661 15.0465 14.5543 15.165 14.4707 15.2471C14.4287 15.2883 14.3929 15.3206 14.3672 15.3438C14.3544 15.3553 14.3438 15.3643 14.3359 15.3711C14.332 15.3745 14.3287 15.3777 14.3262 15.3799L14.3223 15.3838C14.32 15.3815 14.2943 15.352 14.001 15L14.3213 15.3848C14.3148 15.3902 14.3076 15.3953 14.3008 15.4004C13.8271 15.7558 13.5095 16.2854 13.1191 16.8486C12.9374 17.1108 12.7306 17.391 12.4854 17.6045C12.2299 17.8269 11.906 18 11.501 18C10.9771 18 10.5764 17.7929 10.2852 17.4678C10.0141 17.165 9.85331 16.7777 9.7373 16.4326C9.67799 16.2561 9.6263 16.0755 9.57812 15.9082C9.52882 15.7369 9.48401 15.5799 9.43555 15.4336C9.33373 15.1261 9.24035 14.9464 9.14746 14.8535C8.81732 14.5233 8.66826 14.1054 8.58594 13.707C8.50564 13.3183 8.47585 12.8729 8.4375 12.4834C8.35643 11.6602 8.22214 10.9282 7.64746 10.3535C6.70998 9.41609 6.17414 8.5502 5.94629 7.20312L5.94531 7.2041L5.51172 5.10156L6.49023 4.89844L6.9248 7.00195C6.9261 7.00825 6.92766 7.01515 6.92871 7.02148C7.11367 8.13133 7.52742 8.81946 8.35449 9.64648C9.19813 10.4901 9.35084 11.5453 9.43359 12.3857C9.47715 12.8282 9.49829 13.1846 9.56445 13.5049C9.62857 13.8152 9.72169 14.0136 9.85449 14.1465C10.1257 14.4178 10.2777 14.7958 10.3848 15.1191C10.4407 15.288 10.4913 15.465 10.5391 15.6309C10.588 15.8007 10.6342 15.9615 10.6855 16.1143C10.791 16.428 10.8996 16.6549 11.0303 16.8008C11.1409 16.9242 11.2749 17 11.501 17C11.5959 17 11.6951 16.9654 11.8281 16.8496C11.9713 16.725 12.1188 16.5367 12.2979 16.2783C12.5877 15.8601 12.9548 15.2558 13.4707 14.79L13.6807 14.6162C13.6811 14.6158 13.6818 14.6149 13.6826 14.6143C13.6858 14.6115 13.6915 14.6065 13.6992 14.5996C13.715 14.5854 13.7392 14.563 13.7695 14.5332C13.8307 14.4732 13.9143 14.3852 14.001 14.2764C14.1809 14.0503 14.3422 13.7746 14.3877 13.4971C14.4278 13.2514 14.3858 12.9686 14.082 12.6553C13.7549 12.3179 13.1109 11.9338 11.9102 11.5986C11.3535 11.4433 10.9851 11.0718 10.8379 10.5977C10.698 10.1466 10.7725 9.65503 10.9707 9.23828C11.3708 8.3973 12.356 7.69915 13.6221 8.01562C14.1313 8.14293 14.491 8.07649 14.7695 7.92578C15.063 7.76684 15.3212 7.48385 15.5615 7.08691C15.8016 6.69025 16.0015 6.21865 16.1992 5.71973C16.3906 5.23681 16.5857 4.71199 16.8037 4.27637L17.6982 4.72363Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEarth2;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAwwG,EAAxwG,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,wXAAwX,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,qpFAAqpF,KAAK,eAAc,CAAI,EAChxG,EAEc",
9
+ "debugId": "8E761239B7013B2064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPlugins: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconPlugins;
@@ -0,0 +1,3 @@
1
+ var P=Object.create;var{getPrototypeOf:B,defineProperty:d,getOwnPropertyNames:h,getOwnPropertyDescriptor:w}=Object,c=Object.prototype.hasOwnProperty;function L(o){return this[o]}var M,v,f=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var u=r?M??=new WeakMap:v??=new WeakMap,k=u.get(o);if(k)return k}e=o!=null?P(B(o)):{};let a=r||!o||!o.__esModule?d(e,"default",{value:o,enumerable:!0}):e;for(let l of h(o))if(!c.call(a,l))d(a,l,{get:L.bind(o,l),enumerable:!0});if(n)u.set(o,a);return a},g=(o)=>{var r=(C??=new WeakMap).get(o),e;if(r)return r;if(r=d({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of h(o))if(!c.call(r,n))d(r,n,{get:L.bind(o,n),enumerable:!(e=w(o,n))||e.enumerable})}return C.set(o,r),r},C;var y=(o)=>o;function S(o,r){this[o]=y.bind(null,r)}var x=(o,r)=>{for(var e in r)d(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var j={};x(j,{CentralIconBase:()=>m});module.exports=g(j);var s=f(require("react")),t=require("react-native-svg"),m=({children:o,size:r=24,mode:e="masked",maskId:n,...u})=>{let k=e!=="raw"&&!!n;return s.default.createElement(t.Svg,{...u,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},k?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 W={};x(W,{default:()=>b,IconPlugins:()=>I});module.exports=g(W);var i=f(require("react"));var p=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(m,{...o,maskId:"round-outlined-radius-1-stroke-2-IconPlugins"},i.default.createElement(p.Path,{d:"M13 8L8 13L10.5858 15.5858C11.3668 16.3668 12.6332 16.3668 13.4142 15.5858L15.5858 13.4142C16.3668 12.6332 16.3668 11.3668 15.5858 10.5858L13 8Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(p.Path,{d:"M9 12L7.5 10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(p.Path,{d:"M12 9L10.5 7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(p.Path,{d:"M14.5 14.5L15 15C18 18 21 15.5 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C12.6874 21 13.3568 20.9229 14 20.777",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))}),b=I;
2
+
3
+ //# debugId=8FC7184BEB62B3DA64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconPlugins/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 IconPlugins: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconPlugins\"><Path d=\"M13 8L8 13L10.5858 15.5858C11.3668 16.3668 12.6332 16.3668 13.4142 15.5858L15.5858 13.4142C16.3668 12.6332 16.3668 11.3668 15.5858 10.5858L13 8Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9 12L7.5 10.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 9L10.5 7.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M14.5 14.5L15 15C18 18 21 15.5 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C12.6874 21 13.3568 20.9229 14 20.777\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconPlugins;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,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,IAAU,CACjG,OAAO,wBAAmxB,EAAnxB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,mJAAmJ,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC3xB,EAEc",
9
+ "debugId": "8FC7184BEB62B3DA64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as l,Rect as i,G as m}from"react-native-svg";var d=({children:n,size:r=24,mode:p="masked",maskId:s,...u})=>{let k=p!=="raw"&&!!s;return o.createElement(a,{...u,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},k?o.createElement(o.Fragment,null,o.createElement(l,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(m,{color:"#fff"},n)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):n)};import e from"react";import{Path as t}from"react-native-svg";var C=e.memo((n)=>{return e.createElement(d,{...n,maskId:"round-outlined-radius-1-stroke-2-IconPlugins"},e.createElement(t,{d:"M13 8L8 13L10.5858 15.5858C11.3668 16.3668 12.6332 16.3668 13.4142 15.5858L15.5858 13.4142C16.3668 12.6332 16.3668 11.3668 15.5858 10.5858L13 8Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M9 12L7.5 10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M12 9L10.5 7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M14.5 14.5L15 15C18 18 21 15.5 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C12.6874 21 13.3568 20.9229 14 20.777",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))}),w=C;export{w as default,C as IconPlugins};
2
+
3
+ //# debugId=22FBE5ACA7AF024B64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconPlugins/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 IconPlugins: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconPlugins\"><Path d=\"M13 8L8 13L10.5858 15.5858C11.3668 16.3668 12.6332 16.3668 13.4142 15.5858L15.5858 13.4142C16.3668 12.6332 16.3668 11.3668 15.5858 10.5858L13 8Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9 12L7.5 10.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 9L10.5 7.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M14.5 14.5L15 15C18 18 21 15.5 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C12.6874 21 13.3568 20.9229 14 20.777\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconPlugins;\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,IAAU,CACjG,OAAO,gBAAmxB,EAAnxB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,mJAAmJ,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC3xB,EAEc",
9
+ "debugId": "22FBE5ACA7AF024B64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -413,6 +413,7 @@ Below is a complete list of available icons:
413
413
  - IconChevronTriangleDownMedium
414
414
  - IconChevronTriangleUpMedium
415
415
  - IconCompassPointer
416
+ - IconArrowRotatePoint
416
417
 
417
418
  ### Augmented Reality
418
419
 
@@ -462,6 +463,7 @@ Below is a complete list of available icons:
462
463
  - IconGoldenGateBridge
463
464
  - IconHomeRoofDoor
464
465
  - IconHomePlus
466
+ - IconCastle
465
467
 
466
468
  ### Clouds
467
469
 
@@ -1434,6 +1436,7 @@ Below is a complete list of available icons:
1434
1436
  - IconMapEditFlat
1435
1437
  - IconPinFocus
1436
1438
  - IconCompassPointerSquare
1439
+ - IconEarth2
1437
1440
 
1438
1441
  ### Nature & Energy
1439
1442
 
@@ -2150,6 +2153,7 @@ Below is a complete list of available icons:
2150
2153
  - IconHermesHelmet
2151
2154
  - IconOwlFace
2152
2155
  - IconPiggyBankCoin
2156
+ - IconPlugins
2153
2157
 
2154
2158
  ### Time & Date
2155
2159