@central-icons-react-native/square-outlined-radius-0-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:y}=Object,h=Object.prototype.hasOwnProperty;function f(r){return this[r]}var M,q,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var l=o?M??=new WeakMap:q??=new WeakMap,m=l.get(r);if(m)return m}e=r!=null?P(B(r)):{};let u=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let C of c(r))if(!h.call(u,C))p(u,C,{get:f.bind(r,C),enumerable:!0});if(t)l.set(r,u);return u},x=(r)=>{var o=(k??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!h.call(o,t))p(o,t,{get:f.bind(r,t),enumerable:!(e=y(r,t))||e.enumerable})}return k.set(r,o),o},k;var v=(r)=>r;function S(r,o){this[r]=v.bind(null,o)}var w=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var L={};w(L,{CentralIconBase:()=>d});module.exports=x(L);var s=g(require("react")),n=require("react-native-svg"),d=({children:r,size:o=24,mode:e="masked",maskId:t,...l})=>{let m=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...l,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,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"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var W={};w(W,{default:()=>b,IconArrowRotatePoint:()=>I});module.exports=x(W);var i=g(require("react"));var a=require("react-native-svg"),I=i.default.memo((r)=>{return i.default.createElement(d,{...r,maskId:"square-outlined-radius-0-stroke-2-IconArrowRotatePoint"},i.default.createElement(a.Path,{d:"M4.98828 20V16H8.98828",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),i.default.createElement(a.Path,{d:"M19 4V8H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),i.default.createElement(a.Path,{d:"M20.0002 12C20.0002 16.4183 16.4184 20 12.0002 20C9.49909 20 7.21596 18.8523 5.7334 17.0548",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),i.default.createElement(a.Path,{d:"M4 12C4 7.58172 7.58172 4 12 4C14.5264 4 16.8304 5.17107 18.3115 7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),i.default.createElement(a.Circle,{cx:"12",cy:"12",r:"1.75",fill:"currentColor"}))}),b=I;
2
+
3
+ //# debugId=27D3E998E3453CA164756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconArrowRotatePoint\"><Path d=\"M4.98828 20V16H8.98828\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M19 4V8H15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M20.0002 12C20.0002 16.4183 16.4184 20 12.0002 20C9.49909 20 7.21596 18.8523 5.7334 17.0548\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M4 12C4 7.58172 7.58172 4 12 4C14.5264 4 16.8304 5.17107 18.3115 7\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><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,wBAAqnB,EAArnB,IAAqB,EAAO,OAAO,0DAAyD,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,8FAA8F,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,qEAAqE,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EAC7nB,EAEc",
9
+ "debugId": "27D3E998E3453CA164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as u,Mask as C,Rect as i,G as d}from"react-native-svg";var a=({children:t,size:e=24,mode:p="masked",maskId:s,...l})=>{let m=p!=="raw"&&!!s;return r.createElement(u,{...l,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},m?r.createElement(r.Fragment,null,r.createElement(C,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(i,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},t)),r.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):t)};import o from"react";import{Circle as k,Path as n}from"react-native-svg";var c=o.memo((t)=>{return o.createElement(a,{...t,maskId:"square-outlined-radius-0-stroke-2-IconArrowRotatePoint"},o.createElement(n,{d:"M4.98828 20V16H8.98828",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(n,{d:"M19 4V8H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(n,{d:"M20.0002 12C20.0002 16.4183 16.4184 20 12.0002 20C9.49909 20 7.21596 18.8523 5.7334 17.0548",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(n,{d:"M4 12C4 7.58172 7.58172 4 12 4C14.5264 4 16.8304 5.17107 18.3115 7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(k,{cx:"12",cy:"12",r:"1.75",fill:"currentColor"}))}),M=c;export{M as default,c as IconArrowRotatePoint};
2
+
3
+ //# debugId=3882F8678611682C64756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconArrowRotatePoint\"><Path d=\"M4.98828 20V16H8.98828\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M19 4V8H15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M20.0002 12C20.0002 16.4183 16.4184 20 12.0002 20C9.49909 20 7.21596 18.8523 5.7334 17.0548\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M4 12C4 7.58172 7.58172 4 12 4C14.5264 4 16.8304 5.17107 18.3115 7\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><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,gBAAqnB,EAArnB,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,8FAA8F,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,qEAAqE,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EAC7nB,EAEc",
9
+ "debugId": "3882F8678611682C64756E2164756E21",
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:V,defineProperty:a,getOwnPropertyNames:h,getOwnPropertyDescriptor:w}=Object,u=Object.prototype.hasOwnProperty;function c(o){return this[o]}var P,v,g=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var m=r?P??=new WeakMap:v??=new WeakMap,p=m.get(o);if(p)return p}t=o!=null?H(V(o)):{};let i=r||!o||!o.__esModule?a(t,"default",{value:o,enumerable:!0}):t;for(let d of h(o))if(!u.call(i,d))a(i,d,{get:c.bind(o,d),enumerable:!0});if(e)m.set(o,i);return i},k=(o)=>{var r=(C??=new WeakMap).get(o),t;if(r)return r;if(r=a({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of h(o))if(!u.call(r,e))a(r,e,{get:c.bind(o,e),enumerable:!(t=w(o,e))||t.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 t in r)a(o,t,{get:r[t],enumerable:!0,configurable:!0,set:S.bind(r,t)})};var b={};x(b,{CentralIconBase:()=>f});module.exports=k(b);var s=g(require("react")),n=require("react-native-svg"),f=({children:o,size:r=24,mode:t="masked",maskId:e,...m})=>{let p=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...m,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},o)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):o)};var M={};x(M,{default:()=>$,IconCastle:()=>B});module.exports=k(M);var l=g(require("react"));var I=require("react-native-svg"),B=l.default.memo((o)=>{return l.default.createElement(f,{...o,maskId:"square-outlined-radius-0-stroke-2-IconCastle"},l.default.createElement(I.Path,{d:"M16 4H19V6L20 20H14V15H10V20H4L5 6V4H8V6H10.5V4H13.5V6H16V4Z",stroke:"currentColor",strokeWidth:"2"}))}),$=B;
2
+
3
+ //# debugId=434607B07C5631CF64756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconCastle\"><Path d=\"M16 4H19V6L20 20H14V15H10V20H4L5 6V4H8V6H10.5V4H13.5V6H16V4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAAkM,EAAlM,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAG,CAAI,EAC1M,EAEc",
9
+ "debugId": "434607B07C5631CF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as l,Mask as d,Rect as s,G as f}from"react-native-svg";var a=({children:t,size:r=24,mode:m="masked",maskId:e,...p})=>{let i=m!=="raw"&&!!e;return o.createElement(l,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},i?o.createElement(o.Fragment,null,o.createElement(d,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(s,{width:"24",height:"24",fill:"#000"}),o.createElement(f,{color:"#fff"},t)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):t)};import n from"react";import{Path as C}from"react-native-svg";var h=n.memo((t)=>{return n.createElement(a,{...t,maskId:"square-outlined-radius-0-stroke-2-IconCastle"},n.createElement(C,{d:"M16 4H19V6L20 20H14V15H10V20H4L5 6V4H8V6H10.5V4H13.5V6H16V4Z",stroke:"currentColor",strokeWidth:"2"}))}),w=h;export{w as default,h as IconCastle};
2
+
3
+ //# debugId=49AE2666BFFD1ADE64756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconCastle\"><Path d=\"M16 4H19V6L20 20H14V15H10V20H4L5 6V4H8V6H10.5V4H13.5V6H16V4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAAkM,EAAlM,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAG,CAAI,EAC1M,EAEc",
9
+ "debugId": "49AE2666BFFD1ADE64756E2164756E21",
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:c,getOwnPropertyDescriptor:y}=Object,f=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 m=o?v??=new WeakMap:S??=new WeakMap,p=m.get(r);if(p)return p}t=r!=null?w(P(r)):{};let C=o||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t;for(let d of c(r))if(!f.call(C,d))a(C,d,{get:k.bind(r,d),enumerable:!0});if(e)m.set(r,C);return C},x=(r)=>{var o=(u??=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 c(r))if(!f.call(o,e))a(o,e,{get:k.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return u.set(r,o),o},u;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 L={};I(L,{CentralIconBase:()=>h});module.exports=x(L);var s=g(require("react")),n=require("react-native-svg"),h=({children:r,size:o=24,mode:t="masked",maskId:e,...m})=>{let p=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...m,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):r)};var M={};I(M,{default:()=>$,IconEarth2:()=>B});module.exports=x(M);var i=g(require("react"));var l=require("react-native-svg"),B=i.default.memo((r)=>{return i.default.createElement(h,{...r,maskId:"square-outlined-radius-0-stroke-2-IconEarth2"},i.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),i.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"}))}),$=B;
2
+
3
+ //# debugId=B0B5BFE18AAB60EF64756E2164756E21
@@ -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=\"square-outlined-radius-0-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\"/></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,wBAAulB,EAAvlB,IAAqB,EAAO,OAAO,gDAA+C,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,CAAI,EAC/lB,EAEc",
9
+ "debugId": "B0B5BFE18AAB60EF64756E2164756E21",
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:i="masked",maskId:n,...m})=>{let p=i!=="raw"&&!!n;return r.createElement(C,{...m,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?r.createElement(r.Fragment,null,r.createElement(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 h,Path as u}from"react-native-svg";var c=e.memo((t)=>{return e.createElement(a,{...t,maskId:"square-outlined-radius-0-stroke-2-IconEarth2"},e.createElement(h,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(u,{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"}))}),v=c;export{v as default,c as IconEarth2};
2
+
3
+ //# debugId=09F51E950A8B768464756E2164756E21
@@ -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=\"square-outlined-radius-0-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\"/></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,gBAAulB,EAAvlB,IAAqB,EAAO,OAAO,gDAA+C,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,CAAI,EAC/lB,EAEc",
9
+ "debugId": "09F51E950A8B768464756E2164756E21",
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 B=Object.create;var{getPrototypeOf:w,defineProperty:l,getOwnPropertyNames:k,getOwnPropertyDescriptor:L}=Object,f=Object.prototype.hasOwnProperty;function g(r){return this[r]}var M,v,c=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var p=o?M??=new WeakMap:v??=new WeakMap,C=p.get(r);if(C)return C}t=r!=null?B(w(r)):{};let a=o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let d of k(r))if(!f.call(a,d))l(a,d,{get:g.bind(r,d),enumerable:!0});if(e)p.set(r,a);return a},x=(r)=>{var o=(h??=new WeakMap).get(r),t;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of k(r))if(!f.call(o,e))l(o,e,{get:g.bind(r,e),enumerable:!(t=L(r,e))||t.enumerable})}return h.set(r,o),o},h;var y=(r)=>r;function S(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};var W={};I(W,{CentralIconBase:()=>u});module.exports=x(W);var s=c(require("react")),n=require("react-native-svg"),u=({children:r,size:o=24,mode:t="masked",maskId:e,...p})=>{let C=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"},C?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 b={};I(b,{default:()=>$,IconPlugins:()=>P});module.exports=x(b);var i=c(require("react"));var m=require("react-native-svg"),P=i.default.memo((r)=>{return i.default.createElement(u,{...r,maskId:"square-outlined-radius-0-stroke-2-IconPlugins"},i.default.createElement(m.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"}),i.default.createElement(m.Path,{d:"M9 12L7 10",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement(m.Path,{d:"M12 9L10 7",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement(m.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 21C13.4368 21 14.795 20.6633 16 20.0645",stroke:"currentColor",strokeWidth:"2"}))}),$=P;
2
+
3
+ //# debugId=29F326721D5D44B864756E2164756E21
@@ -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=\"square-outlined-radius-0-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\"/><Path d=\"M9 12L7 10\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 9L10 7\" stroke=\"currentColor\" strokeWidth=\"2\"/><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 21C13.4368 21 14.795 20.6633 16 20.0645\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAAwlB,EAAxlB,IAAqB,EAAO,OAAO,iDAAgD,wBAAC,OAAD,CAAM,EAAE,mJAAmJ,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAG,CAAI,EAChmB,EAEc",
9
+ "debugId": "29F326721D5D44B864756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as a,Mask as d,Rect as i,G as u}from"react-native-svg";var l=({children:e,size:o=24,mode:m="masked",maskId:s,...p})=>{let C=m!=="raw"&&!!s;return r.createElement(a,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C?r.createElement(r.Fragment,null,r.createElement(d,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(i,{width:"24",height:"24",fill:"#000"}),r.createElement(u,{color:"#fff"},e)),r.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):e)};import t from"react";import{Path as n}from"react-native-svg";var h=t.memo((e)=>{return t.createElement(l,{...e,maskId:"square-outlined-radius-0-stroke-2-IconPlugins"},t.createElement(n,{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"}),t.createElement(n,{d:"M9 12L7 10",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{d:"M12 9L10 7",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{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 21C13.4368 21 14.795 20.6633 16 20.0645",stroke:"currentColor",strokeWidth:"2"}))}),L=h;export{L as default,h as IconPlugins};
2
+
3
+ //# debugId=029DD06F8E2A4BE164756E2164756E21
@@ -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=\"square-outlined-radius-0-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\"/><Path d=\"M9 12L7 10\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 9L10 7\" stroke=\"currentColor\" strokeWidth=\"2\"/><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 21C13.4368 21 14.795 20.6633 16 20.0645\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAAwlB,EAAxlB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,mJAAmJ,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAG,CAAI,EAChmB,EAEc",
9
+ "debugId": "029DD06F8E2A4BE164756E2164756E21",
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