@central-icons-react-native/round-outlined-radius-2-stroke-1 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:d,getOwnPropertyNames:c,getOwnPropertyDescriptor:L}=Object,f=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 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?d(e,"default",{value:o,enumerable:!0}):e;for(let m of c(o))if(!f.call(a,m))d(a,m,{get:h.bind(o,m),enumerable:!0});if(n)l.set(o,a);return a},x=(o)=>{var r=(k??=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 c(o))if(!f.call(r,n))d(r,n,{get:h.bind(o,n),enumerable:!(e=L(o,n))||e.enumerable})}return k.set(o,r),r},k;var v=(o)=>o;function S(o,r){this[o]=v.bind(null,r)}var w=(o,r)=>{for(var e in r)d(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var j={};w(j,{CentralIconBase:()=>C});module.exports=x(j);var s=g(require("react")),t=require("react-native-svg"),C=({children:o,size:r=24,mode:e="masked",maskId:n,...l})=>{let u=e!=="raw"&&!!n;return s.default.createElement(t.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(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(t.G,{color:"#fff"},o)),s.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var b={};w(b,{default:()=>$,IconArrowRotatePoint:()=>I});module.exports=x(b);var i=g(require("react"));var p=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(C,{...o,maskId:"round-outlined-radius-2-stroke-1-IconArrowRotatePoint"},i.default.createElement(p.Path,{d:"M4.48828 20.5V16.5H8.48828",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(p.Path,{d:"M19.5 3.5V7.5H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(p.Path,{d:"M20.4342 10.9375C20.4776 11.2856 20.4999 11.6402 20.4999 12C20.4999 16.6944 16.6943 20.5 11.9999 20.5C9.17438 20.5 6.42673 19.1213 4.84277 17",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(p.Path,{d:"M3.56576 13.0625C3.52236 12.7144 3.5 12.3598 3.5 12C3.5 7.30558 7.30558 3.5 12 3.5C14.8255 3.5 17.5732 4.87867 19.1571 7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(p.Circle,{cx:"12",cy:"12",r:"1.75",fill:"currentColor"}))}),$=I;
2
+
3
+ //# debugId=FD863DC53FA6521364756E2164756E21
@@ -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-2-stroke-1-IconArrowRotatePoint\"><Path d=\"M4.48828 20.5V16.5H8.48828\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M19.5 3.5V7.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M20.4342 10.9375C20.4776 11.2856 20.4999 11.6402 20.4999 12C20.4999 16.6944 16.6943 20.5 11.9999 20.5C9.17438 20.5 6.42673 19.1213 4.84277 17\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.56576 13.0625C3.52236 12.7144 3.5 12.3598 3.5 12C3.5 7.30558 7.30558 3.5 12 3.5C14.8255 3.5 17.5732 4.87867 19.1571 7\" stroke=\"currentColor\" 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,wBAAgwB,EAAhwB,IAAqB,EAAO,OAAO,yDAAwD,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gJAAgJ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2HAA2H,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EACxwB,EAEc",
9
+ "debugId": "FD863DC53FA6521364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as m,Rect as i,G as C}from"react-native-svg";var p=({children:n,size:e=24,mode:d="masked",maskId:s,...l})=>{let u=d!=="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(m,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(C,{color:"#fff"},n)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):n)};import r from"react";import{Circle as k,Path as t}from"react-native-svg";var c=r.memo((n)=>{return r.createElement(p,{...n,maskId:"round-outlined-radius-2-stroke-1-IconArrowRotatePoint"},r.createElement(t,{d:"M4.48828 20.5V16.5H8.48828",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M19.5 3.5V7.5H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M20.4342 10.9375C20.4776 11.2856 20.4999 11.6402 20.4999 12C20.4999 16.6944 16.6943 20.5 11.9999 20.5C9.17438 20.5 6.42673 19.1213 4.84277 17",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M3.56576 13.0625C3.52236 12.7144 3.5 12.3598 3.5 12C3.5 7.30558 7.30558 3.5 12 3.5C14.8255 3.5 17.5732 4.87867 19.1571 7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(k,{cx:"12",cy:"12",r:"1.75",fill:"currentColor"}))}),y=c;export{y as default,c as IconArrowRotatePoint};
2
+
3
+ //# debugId=395D60B2FB06A25A64756E2164756E21
@@ -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-2-stroke-1-IconArrowRotatePoint\"><Path d=\"M4.48828 20.5V16.5H8.48828\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M19.5 3.5V7.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M20.4342 10.9375C20.4776 11.2856 20.4999 11.6402 20.4999 12C20.4999 16.6944 16.6943 20.5 11.9999 20.5C9.17438 20.5 6.42673 19.1213 4.84277 17\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.56576 13.0625C3.52236 12.7144 3.5 12.3598 3.5 12C3.5 7.30558 7.30558 3.5 12 3.5C14.8255 3.5 17.5732 4.87867 19.1571 7\" stroke=\"currentColor\" 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,gBAAgwB,EAAhwB,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gJAAgJ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,2HAA2H,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EACxwB,EAEc",
9
+ "debugId": "395D60B2FB06A25A64756E2164756E21",
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,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var a=r?v??=new WeakMap:y??=new WeakMap,m=a.get(o);if(m)return m}e=o!=null?H(w(o)):{};let p=r||!o||!o.__esModule?C(e,"default",{value:o,enumerable:!0}):e;for(let l of u(o))if(!h.call(p,l))C(p,l,{get:c.bind(o,l),enumerable:!0});if(t)a.set(o,p);return p},k=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=C({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of u(o))if(!h.call(r,t))C(r,t,{get:c.bind(o,t),enumerable:!(e=P(o,t))||e.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 e in r)C(o,e,{get:r[e],enumerable:!0,configurable:!0,set:V.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>d});module.exports=k(b);var s=g(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...a})=>{let m=e!=="raw"&&!!t;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: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 L={};x(L,{default:()=>M,IconCastle:()=>B});module.exports=k(L);var i=g(require("react"));var I=require("react-native-svg"),B=i.default.memo((o)=>{return i.default.createElement(d,{...o,maskId:"round-outlined-radius-2-stroke-1-IconCastle"},i.default.createElement(I.Path,{d:"M17.1667 3.5H18.5C19.0523 3.5 19.5 3.94772 19.5 4.5V5.5L20.3578 18.367C20.4348 19.5213 19.5192 20.5 18.3622 20.5H14.5V17.5C14.5 16.3954 13.6046 15.5 12.5 15.5H11.5C10.3954 15.5 9.5 16.3954 9.5 17.5V20.5H5.63777C4.48084 20.5 3.56524 19.5213 3.6422 18.367L4.5 5.5V4.5C4.5 3.94772 4.94772 3.5 5.5 3.5H6.83333C7.20152 3.5 7.5 3.79848 7.5 4.16667C7.5 4.90305 8.09695 5.5 8.83333 5.5H9.16667C9.90305 5.5 10.5 4.90305 10.5 4.16667C10.5 3.79848 10.7985 3.5 11.1667 3.5H12.8333C13.2015 3.5 13.5 3.79848 13.5 4.16667C13.5 4.90305 14.097 5.5 14.8333 5.5H15.1667C15.903 5.5 16.5 4.90305 16.5 4.16667C16.5 3.79848 16.7985 3.5 17.1667 3.5Z",stroke:"currentColor",strokeLinejoin:"round"}))}),M=B;
2
+
3
+ //# debugId=014BA58F1372DFF364756E2164756E21
@@ -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-2-stroke-1-IconCastle\"><Path d=\"M17.1667 3.5H18.5C19.0523 3.5 19.5 3.94772 19.5 4.5V5.5L20.3578 18.367C20.4348 19.5213 19.5192 20.5 18.3622 20.5H14.5V17.5C14.5 16.3954 13.6046 15.5 12.5 15.5H11.5C10.3954 15.5 9.5 16.3954 9.5 17.5V20.5H5.63777C4.48084 20.5 3.56524 19.5213 3.6422 18.367L4.5 5.5V4.5C4.5 3.94772 4.94772 3.5 5.5 3.5H6.83333C7.20152 3.5 7.5 3.79848 7.5 4.16667C7.5 4.90305 8.09695 5.5 8.83333 5.5H9.16667C9.90305 5.5 10.5 4.90305 10.5 4.16667C10.5 3.79848 10.7985 3.5 11.1667 3.5H12.8333C13.2015 3.5 13.5 3.79848 13.5 4.16667C13.5 4.90305 14.097 5.5 14.8333 5.5H15.1667C15.903 5.5 16.5 4.90305 16.5 4.16667C16.5 3.79848 16.7985 3.5 17.1667 3.5Z\" stroke=\"currentColor\" 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,wBAA6vB,EAA7vB,IAAqB,EAAO,OAAO,+CAA8C,wBAAC,OAAD,CAAM,EAAE,onBAAonB,OAAO,eAAe,eAAe,QAAO,CAAI,EACrwB,EAEc",
9
+ "debugId": "014BA58F1372DFF364756E2164756E21",
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:e,size:r=24,mode:a="masked",maskId:t,...m})=>{let p=a!=="raw"&&!!t;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:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(s,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as f}from"react-native-svg";var u=n.memo((e)=>{return n.createElement(C,{...e,maskId:"round-outlined-radius-2-stroke-1-IconCastle"},n.createElement(f,{d:"M17.1667 3.5H18.5C19.0523 3.5 19.5 3.94772 19.5 4.5V5.5L20.3578 18.367C20.4348 19.5213 19.5192 20.5 18.3622 20.5H14.5V17.5C14.5 16.3954 13.6046 15.5 12.5 15.5H11.5C10.3954 15.5 9.5 16.3954 9.5 17.5V20.5H5.63777C4.48084 20.5 3.56524 19.5213 3.6422 18.367L4.5 5.5V4.5C4.5 3.94772 4.94772 3.5 5.5 3.5H6.83333C7.20152 3.5 7.5 3.79848 7.5 4.16667C7.5 4.90305 8.09695 5.5 8.83333 5.5H9.16667C9.90305 5.5 10.5 4.90305 10.5 4.16667C10.5 3.79848 10.7985 3.5 11.1667 3.5H12.8333C13.2015 3.5 13.5 3.79848 13.5 4.16667C13.5 4.90305 14.097 5.5 14.8333 5.5H15.1667C15.903 5.5 16.5 4.90305 16.5 4.16667C16.5 3.79848 16.7985 3.5 17.1667 3.5Z",stroke:"currentColor",strokeLinejoin:"round"}))}),P=u;export{P as default,u as IconCastle};
2
+
3
+ //# debugId=FCE49FDDD0B63B7E64756E2164756E21
@@ -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-2-stroke-1-IconCastle\"><Path d=\"M17.1667 3.5H18.5C19.0523 3.5 19.5 3.94772 19.5 4.5V5.5L20.3578 18.367C20.4348 19.5213 19.5192 20.5 18.3622 20.5H14.5V17.5C14.5 16.3954 13.6046 15.5 12.5 15.5H11.5C10.3954 15.5 9.5 16.3954 9.5 17.5V20.5H5.63777C4.48084 20.5 3.56524 19.5213 3.6422 18.367L4.5 5.5V4.5C4.5 3.94772 4.94772 3.5 5.5 3.5H6.83333C7.20152 3.5 7.5 3.79848 7.5 4.16667C7.5 4.90305 8.09695 5.5 8.83333 5.5H9.16667C9.90305 5.5 10.5 4.90305 10.5 4.16667C10.5 3.79848 10.7985 3.5 11.1667 3.5H12.8333C13.2015 3.5 13.5 3.79848 13.5 4.16667C13.5 4.90305 14.097 5.5 14.8333 5.5H15.1667C15.903 5.5 16.5 4.90305 16.5 4.16667C16.5 3.79848 16.7985 3.5 17.1667 3.5Z\" stroke=\"currentColor\" 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,gBAA6vB,EAA7vB,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,onBAAonB,OAAO,eAAe,eAAe,QAAO,CAAI,EACrwB,EAEc",
9
+ "debugId": "FCE49FDDD0B63B7E64756E2164756E21",
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 w=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,h=Object.prototype.hasOwnProperty;function k(r){return this[r]}var v,S,g=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var p=o?v??=new WeakMap:S??=new WeakMap,i=p.get(r);if(i)return i}t=r!=null?w(P(r)):{};let C=o||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t;for(let d of f(r))if(!h.call(C,d))a(C,d,{get:k.bind(r,d),enumerable:!0});if(e)p.set(r,C);return C},x=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!h.call(o,e))a(o,e,{get:k.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function E(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var t in o)a(r,t,{get:o[t],enumerable:!0,configurable:!0,set:E.bind(o,t)})};var M={};I(M,{CentralIconBase:()=>u});module.exports=x(M);var s=g(require("react")),n=require("react-native-svg"),u=({children:r,size:o=24,mode:t="masked",maskId:e,...p})=>{let i=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},i?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"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):r)};var $={};I($,{default:()=>F,IconEarth2:()=>B});module.exports=x($);var m=g(require("react"));var l=require("react-native-svg"),B=m.default.memo((r)=>{return m.default.createElement(u,{...r,maskId:"round-outlined-radius-2-stroke-1-IconEarth2"},m.default.createElement(l.Path,{d:"M6 5L6.43423 7.10316C6.63975 8.33698 7.1155 9.11582 8 10.0002C9.41842 11.4187 8.57369 13.5739 9.5 14.5002C10.2282 15.2287 10 17.5002 11.5 17.5002C12.5 17.5002 12.8864 15.8354 14 15.0002C14 15.0002 17 12.5002 12.0432 11.1168C10.4426 10.67 11.5 8.00024 13.5 8.50024C15.9573 9.11457 16.4288 6.14104 17.25 4.5",stroke:"currentColor",strokeLinejoin:"round"}),m.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}))}),F=B;
2
+
3
+ //# debugId=556F620467C4B22664756E2164756E21
@@ -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-2-stroke-1-IconEarth2\"><Path d=\"M6 5L6.43423 7.10316C6.63975 8.33698 7.1155 9.11582 8 10.0002C9.41842 11.4187 8.57369 13.5739 9.5 14.5002C10.2282 15.2287 10 17.5002 11.5 17.5002C12.5 17.5002 12.8864 15.8354 14 15.0002C14 15.0002 17 12.5002 12.0432 11.1168C10.4426 10.67 11.5 8.00024 13.5 8.50024C15.9573 9.11457 16.4288 6.14104 17.25 4.5\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"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,wBAAof,EAApf,IAAqB,EAAO,OAAO,+CAA8C,wBAAC,OAAD,CAAM,EAAE,oTAAoT,OAAO,eAAe,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,CAAI,EAC5f,EAEc",
9
+ "debugId": "556F620467C4B22664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as C,Mask as l,Rect as s,G as d}from"react-native-svg";var a=({children:t,size:o=24,mode:m="masked",maskId:n,...p})=>{let i=m!=="raw"&&!!n;return r.createElement(C,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},i?r.createElement(r.Fragment,null,r.createElement(l,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},t)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Circle as u,Path as c}from"react-native-svg";var f=e.memo((t)=>{return e.createElement(a,{...t,maskId:"round-outlined-radius-2-stroke-1-IconEarth2"},e.createElement(c,{d:"M6 5L6.43423 7.10316C6.63975 8.33698 7.1155 9.11582 8 10.0002C9.41842 11.4187 8.57369 13.5739 9.5 14.5002C10.2282 15.2287 10 17.5002 11.5 17.5002C12.5 17.5002 12.8864 15.8354 14 15.0002C14 15.0002 17 12.5002 12.0432 11.1168C10.4426 10.67 11.5 8.00024 13.5 8.50024C15.9573 9.11457 16.4288 6.14104 17.25 4.5",stroke:"currentColor",strokeLinejoin:"round"}),e.createElement(u,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}))}),v=f;export{v as default,f as IconEarth2};
2
+
3
+ //# debugId=81AD182CE190048564756E2164756E21
@@ -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-2-stroke-1-IconEarth2\"><Path d=\"M6 5L6.43423 7.10316C6.63975 8.33698 7.1155 9.11582 8 10.0002C9.41842 11.4187 8.57369 13.5739 9.5 14.5002C10.2282 15.2287 10 17.5002 11.5 17.5002C12.5 17.5002 12.8864 15.8354 14 15.0002C14 15.0002 17 12.5002 12.0432 11.1168C10.4426 10.67 11.5 8.00024 13.5 8.50024C15.9573 9.11457 16.4288 6.14104 17.25 4.5\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"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,gBAAof,EAApf,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,oTAAoT,OAAO,eAAe,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,CAAI,EAC5f,EAEc",
9
+ "debugId": "81AD182CE190048564756E2164756E21",
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:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:w}=Object,L=Object.prototype.hasOwnProperty;function f(o){return this[o]}var M,v,g=(o,r,n)=>{var e=o!=null&&typeof o==="object";if(e){var d=r?M??=new WeakMap:v??=new WeakMap,a=d.get(o);if(a)return a}n=o!=null?P(B(o)):{};let l=r||!o||!o.__esModule?p(n,"default",{value:o,enumerable:!0}):n;for(let m of c(o))if(!L.call(l,m))p(l,m,{get:f.bind(o,m),enumerable:!0});if(e)d.set(o,l);return l},h=(o)=>{var r=(k??=new WeakMap).get(o),n;if(r)return r;if(r=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of c(o))if(!L.call(r,e))p(r,e,{get:f.bind(o,e),enumerable:!(n=w(o,e))||n.enumerable})}return k.set(o,r),r},k;var y=(o)=>o;function S(o,r){this[o]=y.bind(null,r)}var x=(o,r)=>{for(var n in r)p(o,n,{get:r[n],enumerable:!0,configurable:!0,set:S.bind(r,n)})};var j={};x(j,{CentralIconBase:()=>C});module.exports=h(j);var s=g(require("react")),t=require("react-native-svg"),C=({children:o,size:r=24,mode:n="masked",maskId:e,...d})=>{let a=n!=="raw"&&!!e;return s.default.createElement(t.Svg,{...d,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?s.default.createElement(s.default.Fragment,null,s.default.createElement(t.Mask,{id:e,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(#${e})`})):o)};var b={};x(b,{default:()=>$,IconPlugins:()=>I});module.exports=h(b);var i=g(require("react"));var u=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(C,{...o,maskId:"round-outlined-radius-2-stroke-1-IconPlugins"},i.default.createElement(u.Path,{d:"M15 15L15.1667 15.1667C18.3333 18.3333 21.5 15.6944 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C13.5167 21.5 14.9503 21.1446 16.2222 20.5125",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(u.Path,{d:"M13.0556 7.5L7.5 13.0556L10.5302 16.0858C11.3113 16.8668 12.5776 16.8668 13.3587 16.0858L16.0858 13.3587C16.8668 12.5776 16.8668 11.3113 16.0858 10.5302L13.0556 7.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(u.Path,{d:"M8.5 11.5L7 10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(u.Path,{d:"M11.5 8.5L10 7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),$=I;
2
+
3
+ //# debugId=9C23D74EC84C494F64756E2164756E21
@@ -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-2-stroke-1-IconPlugins\"><Path d=\"M15 15L15.1667 15.1667C18.3333 18.3333 21.5 15.6944 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C13.5167 21.5 14.9503 21.1446 16.2222 20.5125\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13.0556 7.5L7.5 13.0556L10.5302 16.0858C11.3113 16.8668 12.5776 16.8668 13.3587 16.0858L16.0858 13.3587C16.8668 12.5776 16.8668 11.3113 16.0858 10.5302L13.0556 7.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.5 11.5L7 10\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M11.5 8.5L10 7\" stroke=\"currentColor\" 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,wBAAyxB,EAAzxB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,2MAA2M,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,wKAAwK,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EACjyB,EAEc",
9
+ "debugId": "9C23D74EC84C494F64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as l,Mask as m,Rect as i,G as C}from"react-native-svg";var p=({children:e,size:r=24,mode:u="masked",maskId:s,...d})=>{let a=u!=="raw"&&!!s;return o.createElement(l,{...d,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?o.createElement(o.Fragment,null,o.createElement(m,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(C,{color:"#fff"},e)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):e)};import n from"react";import{Path as t}from"react-native-svg";var k=n.memo((e)=>{return n.createElement(p,{...e,maskId:"round-outlined-radius-2-stroke-1-IconPlugins"},n.createElement(t,{d:"M15 15L15.1667 15.1667C18.3333 18.3333 21.5 15.6944 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C13.5167 21.5 14.9503 21.1446 16.2222 20.5125",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement(t,{d:"M13.0556 7.5L7.5 13.0556L10.5302 16.0858C11.3113 16.8668 12.5776 16.8668 13.3587 16.0858L16.0858 13.3587C16.8668 12.5776 16.8668 11.3113 16.0858 10.5302L13.0556 7.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement(t,{d:"M8.5 11.5L7 10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement(t,{d:"M11.5 8.5L10 7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),w=k;export{w as default,k as IconPlugins};
2
+
3
+ //# debugId=1C065A9F2C20AC7764756E2164756E21
@@ -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-2-stroke-1-IconPlugins\"><Path d=\"M15 15L15.1667 15.1667C18.3333 18.3333 21.5 15.6944 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C13.5167 21.5 14.9503 21.1446 16.2222 20.5125\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13.0556 7.5L7.5 13.0556L10.5302 16.0858C11.3113 16.8668 12.5776 16.8668 13.3587 16.0858L16.0858 13.3587C16.8668 12.5776 16.8668 11.3113 16.0858 10.5302L13.0556 7.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.5 11.5L7 10\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M11.5 8.5L10 7\" stroke=\"currentColor\" 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,gBAAyxB,EAAzxB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,2MAA2M,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,wKAAwK,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EACjyB,EAEc",
9
+ "debugId": "1C065A9F2C20AC7764756E2164756E21",
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