@central-icons-react/round-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 I=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:B}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var P,V,C=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var a=o?P??=new WeakMap:V??=new WeakMap,d=a.get(r);if(d)return d}t=r!=null?I(L(r)):{};let l=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let i of k(r))if(!c.call(l,i))p(l,i,{get:h.bind(r,i),enumerable:!0});if(e)a.set(r,l);return l},f=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of k(r))if(!c.call(o,e))p(o,e,{get:h.bind(r,e),enumerable:!(t=B(r,e))||t.enumerable})}return u.set(r,o),o},u;var b=(r)=>r;function S(r,o){this[r]=b.bind(null,o)}var g=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};var j={};g(j,{CentralIconBase:()=>m});module.exports=f(j);var n=C(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:a=!0,style:d,mode:l="masked",maskId:i,...x})=>{let y=l!=="raw"&&!!i;return n.default.createElement("svg",{...x,"aria-hidden":a,role:a?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...d}},t&&!a&&n.default.createElement("title",null,t),y?n.default.createElement(n.default.Fragment,null,n.default.createElement("mask",{id:i,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),n.default.createElement("g",{fill:"none",style:{color:"#fff"}},r)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${i})`})):r)};var v={};g(v,{default:()=>G,IconArrowRotatePoint:()=>w});module.exports=f(v);var s=C(require("react"));var w=s.default.memo((r)=>{return s.default.createElement(m,{...r,ariaLabel:"arrow-rotate-point, rotate-camera",maskId:"round-outlined-radius-0-stroke-2-IconArrowRotatePoint"},s.default.createElement("path",{d:"M19 4V8H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M4.98828 20V16H8.98828",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("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"}),s.default.createElement("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"}),s.default.createElement("circle",{cx:"12",cy:"12",r:"1.75",fill:"currentColor"}))}),G=w;
2
+
3
+ //# debugId=D1DCEB684224AC9A64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowRotatePoint/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconArrowRotatePoint: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"arrow-rotate-point, rotate-camera\" maskId=\"round-outlined-radius-0-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": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,gFC9DY,IAAlB,sBAGO,IAAM,EAAyE,UAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,wBAA8uB,EAA9uB,IAAqB,EAAO,UAAU,oCAAoC,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,EACtvB,EAEc",
9
+ "debugId": "D1DCEB684224AC9A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";var a=({children:e,size:t=24,ariaLabel:i,color:l,ariaHidden:n=!0,style:p,mode:d="masked",maskId:s,...m})=>{let u=d!=="raw"&&!!s;return r.createElement("svg",{...m,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...p}},i&&!n&&r.createElement("title",null,i),u?r.createElement(r.Fragment,null,r.createElement("mask",{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement("rect",{width:"24",height:"24",fill:"#000"}),r.createElement("g",{fill:"none",style:{color:"#fff"}},e)),r.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):e)};import o from"react";var k=o.memo((e)=>{return o.createElement(a,{...e,ariaLabel:"arrow-rotate-point, rotate-camera",maskId:"round-outlined-radius-0-stroke-2-IconArrowRotatePoint"},o.createElement("path",{d:"M19 4V8H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M4.98828 20V16H8.98828",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("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"}),o.createElement("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"}),o.createElement("circle",{cx:"12",cy:"12",r:"1.75",fill:"currentColor"}))}),w=k;export{w as default,k as IconArrowRotatePoint};
2
+
3
+ //# debugId=F886A4F6331725E564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowRotatePoint/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconArrowRotatePoint: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"arrow-rotate-point, rotate-camera\" maskId=\"round-outlined-radius-0-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,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAA8uB,EAA9uB,IAAqB,EAAO,UAAU,oCAAoC,OAAO,yDAAwD,gBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,4EAA4E,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,2EAA2E,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,CAAI,EACtvB,EAEc",
9
+ "debugId": "F886A4F6331725E564756E2164756E21",
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 I=Object.create;var{getPrototypeOf:y,defineProperty:i,getOwnPropertyNames:f,getOwnPropertyDescriptor:B}=Object,h=Object.prototype.hasOwnProperty;function c(e){return this[e]}var H,b,g=(e,o,r)=>{var t=e!=null&&typeof e==="object";if(t){var l=o?H??=new WeakMap:b??=new WeakMap,m=l.get(e);if(m)return m}r=e!=null?I(y(e)):{};let a=o||!e||!e.__esModule?i(r,"default",{value:e,enumerable:!0}):r;for(let s of f(e))if(!h.call(a,s))i(a,s,{get:c.bind(e,s),enumerable:!0});if(t)l.set(e,a);return a},C=(e)=>{var o=(u??=new WeakMap).get(e),r;if(o)return o;if(o=i({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of f(e))if(!h.call(o,t))i(o,t,{get:c.bind(e,t),enumerable:!(r=B(e,t))||r.enumerable})}return u.set(e,o),o},u;var P=(e)=>e;function S(e,o){this[e]=P.bind(null,o)}var w=(e,o)=>{for(var r in o)i(e,r,{get:o[r],enumerable:!0,configurable:!0,set:S.bind(o,r)})};var v={};w(v,{CentralIconBase:()=>d});module.exports=C(v);var n=g(require("react")),d=({children:e,size:o=24,ariaLabel:r,color:t,ariaHidden:l=!0,style:m,mode:a="masked",maskId:s,...k})=>{let x=a!=="raw"&&!!s;return n.default.createElement("svg",{...k,"aria-hidden":l,role:l?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...m}},r&&!l&&n.default.createElement("title",null,r),x?n.default.createElement(n.default.Fragment,null,n.default.createElement("mask",{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),n.default.createElement("g",{fill:"none",style:{color:"#fff"}},e)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):e)};var G={};w(G,{default:()=>L,IconCastle:()=>V});module.exports=C(G);var p=g(require("react"));var V=p.default.memo((e)=>{return p.default.createElement(d,{...e,ariaLabel:"castle, sandbox, wall",maskId:"round-outlined-radius-0-stroke-2-IconCastle"},p.default.createElement("path",{d:"M16 4H19V6L20 20H14V15H10V20H4L5 6V4H8V6H10.5V4H13.5V6H16V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))}),L=V;
2
+
3
+ //# debugId=175C106F31452CF764756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCastle/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconCastle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"castle, sandbox, wall\" maskId=\"round-outlined-radius-0-stroke-2-IconCastle\"><path d=\"M16 4H19V6L20 20H14V15H10V20H4L5 6V4H8V6H10.5V4H13.5V6H16V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconCastle;\n"
7
+ ],
8
+ "mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,sEC9DY,IAAlB,sBAGO,IAAM,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAA0P,EAA1P,IAAqB,EAAO,UAAU,wBAAwB,OAAO,+CAA8C,wBAAC,OAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,EAClQ,EAEc",
9
+ "debugId": "175C106F31452CF764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var a=({children:r,size:o=24,ariaLabel:l,color:i,ariaHidden:t=!0,style:m,mode:p="masked",maskId:n,...d})=>{let u=p!=="raw"&&!!n;return e.createElement("svg",{...d,"aria-hidden":t,role:t?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...m}},l&&!t&&e.createElement("title",null,l),u?e.createElement(e.Fragment,null,e.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},e.createElement("rect",{width:"24",height:"24",fill:"#000"}),e.createElement("g",{fill:"none",style:{color:"#fff"}},r)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};import s from"react";var f=s.memo((r)=>{return s.createElement(a,{...r,ariaLabel:"castle, sandbox, wall",maskId:"round-outlined-radius-0-stroke-2-IconCastle"},s.createElement("path",{d:"M16 4H19V6L20 20H14V15H10V20H4L5 6V4H8V6H10.5V4H13.5V6H16V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))}),V=f;export{V as default,f as IconCastle};
2
+
3
+ //# debugId=F05A267E82E05C6464756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCastle/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconCastle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"castle, sandbox, wall\" maskId=\"round-outlined-radius-0-stroke-2-IconCastle\"><path d=\"M16 4H19V6L20 20H14V15H10V20H4L5 6V4H8V6H10.5V4H13.5V6H16V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconCastle;\n"
7
+ ],
8
+ "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA0P,EAA1P,IAAqB,EAAO,UAAU,wBAAwB,OAAO,+CAA8C,gBAAC,OAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,EAClQ,EAEc",
9
+ "debugId": "F05A267E82E05C6464756E2164756E21",
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 y=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:h,getOwnPropertyDescriptor:B}=Object,u=Object.prototype.hasOwnProperty;function c(C){return this[C]}var b,P,f=(C,r,o)=>{var e=C!=null&&typeof C==="object";if(e){var s=r?b??=new WeakMap:P??=new WeakMap,m=s.get(C);if(m)return m}o=C!=null?y(I(C)):{};let l=r||!C||!C.__esModule?a(o,"default",{value:C,enumerable:!0}):o;for(let n of h(C))if(!u.call(l,n))a(l,n,{get:c.bind(C,n),enumerable:!0});if(e)s.set(C,l);return l},g=(C)=>{var r=(d??=new WeakMap).get(C),o;if(r)return r;if(r=a({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var e of h(C))if(!u.call(r,e))a(r,e,{get:c.bind(C,e),enumerable:!(o=B(C,e))||o.enumerable})}return d.set(C,r),r},d;var S=(C)=>C;function v(C,r){this[C]=S.bind(null,r)}var k=(C,r)=>{for(var o in r)a(C,o,{get:r[o],enumerable:!0,configurable:!0,set:v.bind(r,o)})};var E={};k(E,{CentralIconBase:()=>p});module.exports=g(E);var t=f(require("react")),p=({children:C,size:r=24,ariaLabel:o,color:e,ariaHidden:s=!0,style:m,mode:l="masked",maskId:n,...L})=>{let x=l!=="raw"&&!!n;return t.default.createElement("svg",{...L,"aria-hidden":s,role:s?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...m}},o&&!s&&t.default.createElement("title",null,o),x?t.default.createElement(t.default.Fragment,null,t.default.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},t.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),t.default.createElement("g",{fill:"none",style:{color:"#fff"}},C)),t.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):C)};var G={};k(G,{default:()=>V,IconEarth2:()=>w});module.exports=g(G);var i=f(require("react"));var w=i.default.memo((C)=>{return i.default.createElement(p,{...C,ariaLabel:"earth-2, globe, world",maskId:"round-outlined-radius-0-stroke-2-IconEarth2"},i.default.createElement("circle",{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),i.default.createElement("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"}),i.default.createElement("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"}))}),V=w;
2
+
3
+ //# debugId=FE24997D803B92BB64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconEarth2/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconEarth2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"earth-2, globe, world\" maskId=\"round-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\"/><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": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,sEC9DY,IAAlB,sBAGO,IAAM,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAA0yG,EAA1yG,IAAqB,EAAO,UAAU,wBAAwB,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,EAClzG,EAEc",
9
+ "debugId": "FE24997D803B92BB64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";var l=({children:e,size:r=24,ariaLabel:s,color:i,ariaHidden:t=!0,style:a,mode:m="masked",maskId:n,...p})=>{let d=m!=="raw"&&!!n;return C.createElement("svg",{...p,"aria-hidden":t,role:t?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...a}},s&&!t&&C.createElement("title",null,s),d?C.createElement(C.Fragment,null,C.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.createElement("rect",{width:"24",height:"24",fill:"#000"}),C.createElement("g",{fill:"none",style:{color:"#fff"}},e)),C.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import o from"react";var h=o.memo((e)=>{return o.createElement(l,{...e,ariaLabel:"earth-2, globe, world",maskId:"round-outlined-radius-0-stroke-2-IconEarth2"},o.createElement("circle",{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),o.createElement("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"}),o.createElement("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"}))}),w=h;export{w as default,h as IconEarth2};
2
+
3
+ //# debugId=E8A32FB47532495864756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconEarth2/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconEarth2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"earth-2, globe, world\" maskId=\"round-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\"/><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,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA0yG,EAA1yG,IAAqB,EAAO,UAAU,wBAAwB,OAAO,+CAA8C,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,wXAAwX,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qpFAAqpF,KAAK,eAAc,CAAI,EAClzG,EAEc",
9
+ "debugId": "E8A32FB47532495864756E2164756E21",
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 y=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:k,getOwnPropertyDescriptor:B}=Object,c=Object.prototype.hasOwnProperty;function h(o){return this[o]}var P,b,C=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var l=r?P??=new WeakMap:b??=new WeakMap,d=l.get(o);if(d)return d}e=o!=null?y(I(o)):{};let p=r||!o||!o.__esModule?a(e,"default",{value:o,enumerable:!0}):e;for(let s of k(o))if(!c.call(p,s))a(p,s,{get:h.bind(o,s),enumerable:!0});if(t)l.set(o,p);return p},g=(o)=>{var r=(m??=new WeakMap).get(o),e;if(r)return r;if(r=a({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of k(o))if(!c.call(r,t))a(r,t,{get:h.bind(o,t),enumerable:!(e=B(o,t))||e.enumerable})}return m.set(o,r),r},m;var S=(o)=>o;function j(o,r){this[o]=S.bind(null,r)}var L=(o,r)=>{for(var e in r)a(o,e,{get:r[e],enumerable:!0,configurable:!0,set:j.bind(r,e)})};var v={};L(v,{CentralIconBase:()=>u});module.exports=g(v);var n=C(require("react")),u=({children:o,size:r=24,ariaLabel:e,color:t,ariaHidden:l=!0,style:d,mode:p="masked",maskId:s,...w})=>{let x=p!=="raw"&&!!s;return n.default.createElement("svg",{...w,"aria-hidden":l,role:l?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...d}},e&&!l&&n.default.createElement("title",null,e),x?n.default.createElement(n.default.Fragment,null,n.default.createElement("mask",{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),n.default.createElement("g",{fill:"none",style:{color:"#fff"}},o)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):o)};var G={};L(G,{default:()=>M,IconPlugins:()=>f});module.exports=g(G);var i=C(require("react"));var f=i.default.memo((o)=>{return i.default.createElement(u,{...o,ariaLabel:"plugins, apps, connection, electricity, power, at",maskId:"round-outlined-radius-0-stroke-2-IconPlugins"},i.default.createElement("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("path",{d:"M9 12L7.5 10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement("path",{d:"M12 9L10.5 7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement("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"}))}),M=f;
2
+
3
+ //# debugId=4B6C37DC35F03FAD64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconPlugins/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconPlugins: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"plugins, apps, connection, electricity, power, at\" maskId=\"round-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\" 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": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,uEC9DY,IAAlB,sBAGO,IAAM,EAAgE,UAAM,KAAK,CAAC,IAAU,CACjG,OAAO,wBAAi1B,EAAj1B,IAAqB,EAAO,UAAU,oDAAoD,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,EACz1B,EAEc",
9
+ "debugId": "4B6C37DC35F03FAD64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";var l=({children:t,size:r=24,ariaLabel:i,color:p,ariaHidden:n=!0,style:a,mode:d="masked",maskId:s,...u})=>{let m=d!=="raw"&&!!s;return o.createElement("svg",{...u,"aria-hidden":n,role:n?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...a}},i&&!n&&o.createElement("title",null,i),m?o.createElement(o.Fragment,null,o.createElement("mask",{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement("rect",{width:"24",height:"24",fill:"#000"}),o.createElement("g",{fill:"none",style:{color:"#fff"}},t)),o.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):t)};import e from"react";var k=e.memo((t)=>{return e.createElement(l,{...t,ariaLabel:"plugins, apps, connection, electricity, power, at",maskId:"round-outlined-radius-0-stroke-2-IconPlugins"},e.createElement("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"}),e.createElement("path",{d:"M9 12L7.5 10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M12 9L10.5 7.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("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"}))}),f=k;export{f as default,k as IconPlugins};
2
+
3
+ //# debugId=941FD581704B85EB64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconPlugins/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconPlugins: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"plugins, apps, connection, electricity, power, at\" maskId=\"round-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\" 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,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAi1B,EAAj1B,IAAqB,EAAO,UAAU,oDAAoD,OAAO,gDAA+C,gBAAC,OAAD,CAAM,EAAE,mJAAmJ,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,EACz1B,EAEc",
9
+ "debugId": "941FD581704B85EB64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -447,6 +447,7 @@ Below is a complete list of available icons:
447
447
  - IconChevronTriangleDownMedium
448
448
  - IconChevronTriangleUpMedium
449
449
  - IconCompassPointer
450
+ - IconArrowRotatePoint
450
451
 
451
452
  ### Augmented Reality
452
453
 
@@ -496,6 +497,7 @@ Below is a complete list of available icons:
496
497
  - IconGoldenGateBridge
497
498
  - IconHomeRoofDoor
498
499
  - IconHomePlus
500
+ - IconCastle
499
501
 
500
502
  ### Clouds
501
503
 
@@ -1468,6 +1470,7 @@ Below is a complete list of available icons:
1468
1470
  - IconMapEditFlat
1469
1471
  - IconPinFocus
1470
1472
  - IconCompassPointerSquare
1473
+ - IconEarth2
1471
1474
 
1472
1475
  ### Nature & Energy
1473
1476
 
@@ -2184,6 +2187,7 @@ Below is a complete list of available icons:
2184
2187
  - IconHermesHelmet
2185
2188
  - IconOwlFace
2186
2189
  - IconPiggyBankCoin
2190
+ - IconPlugins
2187
2191
 
2188
2192
  ### Time & Date
2189
2193