@central-icons-react-native/round-outlined-radius-1-stroke-1 1.1.218 → 1.1.220

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 { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconGoblin: FC<CentralIconBaseProps>;
4
+ export default IconGoblin;
@@ -0,0 +1,2 @@
1
+ "use strict";var a=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var n in o)i(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==n&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var C=(r,o,n)=>(n=r!=null?a(x(r)):{},u(o||!r||!r.__esModule?i(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>u(i({},"__esModule",{value:!0}),r);var h={};B(h,{IconGoblin:()=>l,default:()=>g});module.exports=I(h);var t=C(require("react"));var c=C(require("react")),d=require("react-native-svg"),k=({children:r,size:o=24,...n})=>c.default.createElement(d.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),l=r=>t.default.createElement(k,{...r},t.default.createElement(e.Rect,{x:"4.5",y:"2.5",width:"15",height:"19",rx:"7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(e.Path,{d:"M9 16C11.25 16.6667 12.75 16.6667 15 16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(e.Path,{d:"M19.5 7.5H22.5C23.0523 7.5 23.5 7.94772 23.5 8.5V9.5C23.5 11.7091 21.7091 13.5 19.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(e.Circle,{cx:"9.4501",cy:"11.35",r:"1.35",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(e.Circle,{cx:"14.5502",cy:"11.35",r:"1.35",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(e.Path,{d:"M7.5 4L11.5144 6.2302C11.8164 6.39799 12.1836 6.39799 12.4856 6.2302L16.5 4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(e.Path,{d:"M4.5 7.5H1.5C0.947715 7.5 0.5 7.94772 0.5 8.5V9.5C0.5 11.7091 2.29086 13.5 4.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=l;0&&(module.exports={IconGoblin});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconGoblin/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path, Rect } from \"react-native-svg\";\n\nexport const IconGoblin: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Rect\n x=\"4.5\"\n y=\"2.5\"\n width=\"15\"\n height=\"19\"\n rx=\"7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 16C11.25 16.6667 12.75 16.6667 15 16\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 7.5H22.5C23.0523 7.5 23.5 7.94772 23.5 8.5V9.5C23.5 11.7091 21.7091 13.5 19.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"9.4501\"\n cy=\"11.35\"\n r=\"1.35\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"14.5502\"\n cy=\"11.35\"\n r=\"1.35\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 4L11.5144 6.2302C11.8164 6.39799 12.1836 6.39799 12.4856 6.2302L16.5 4\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.5 7.5H1.5C0.947715 7.5 0.5 7.94772 0.5 8.5V9.5C0.5 11.7091 2.29086 13.5 4.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoblin;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAmC,4BAEtBC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,MACF,EAAE,MACF,MAAM,KACN,OAAO,KACP,GAAG,MACH,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,SACH,GAAG,QACH,EAAE,OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,UACH,GAAG,QACH,EAAE,OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8EACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconGoblin_exports","__export","IconGoblin","IconGoblin_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoblin","props","React","CentralIconBase","IconGoblin_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import p from"react";import{Svg as u}from"react-native-svg";var t=({children:e,size:o=24,...i})=>p.createElement(u,{...i,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as s,Path as n,Rect as C}from"react-native-svg";var c=e=>r.createElement(t,{...e},r.createElement(C,{x:"4.5",y:"2.5",width:"15",height:"19",rx:"7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M9 16C11.25 16.6667 12.75 16.6667 15 16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M19.5 7.5H22.5C23.0523 7.5 23.5 7.94772 23.5 8.5V9.5C23.5 11.7091 21.7091 13.5 19.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(s,{cx:"9.4501",cy:"11.35",r:"1.35",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(s,{cx:"14.5502",cy:"11.35",r:"1.35",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M7.5 4L11.5144 6.2302C11.8164 6.39799 12.1836 6.39799 12.4856 6.2302L16.5 4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M4.5 7.5H1.5C0.947715 7.5 0.5 7.94772 0.5 8.5V9.5C0.5 11.7091 2.29086 13.5 4.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=c;export{c as IconGoblin,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconGoblin/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path, Rect } from \"react-native-svg\";\n\nexport const IconGoblin: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Rect\n x=\"4.5\"\n y=\"2.5\"\n width=\"15\"\n height=\"19\"\n rx=\"7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 16C11.25 16.6667 12.75 16.6667 15 16\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 7.5H22.5C23.0523 7.5 23.5 7.94772 23.5 8.5V9.5C23.5 11.7091 21.7091 13.5 19.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"9.4501\"\n cy=\"11.35\"\n r=\"1.35\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"14.5502\"\n cy=\"11.35\"\n r=\"1.35\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 4L11.5144 6.2302C11.8164 6.39799 12.1836 6.39799 12.4856 6.2302L16.5 4\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.5 7.5H1.5C0.947715 7.5 0.5 7.94772 0.5 8.5V9.5C0.5 11.7091 2.29086 13.5 4.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoblin;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,EAAM,QAAAC,MAAY,mBAE5B,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,MACF,EAAE,MACF,MAAM,KACN,OAAO,KACP,GAAG,MACH,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,EAAE,0CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,2FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACL,EAAA,CACC,GAAG,SACH,GAAG,QACH,EAAE,OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAK,EAAA,cAACL,EAAA,CACC,GAAG,UACH,GAAG,QACH,EAAE,OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAK,EAAA,cAACJ,EAAA,CACC,EAAE,8EACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,sFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","Rect","IconGoblin","props","React","CentralIconBase","IconGoblin_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconGoblin2: FC<CentralIconBaseProps>;
4
+ export default IconGoblin2;
@@ -0,0 +1,2 @@
1
+ "use strict";var x=Object.create;var l=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var y=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)l(r,n,{get:o[n],enumerable:!0})},s=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of d(o))!B.call(r,C)&&C!==n&&l(r,C,{get:()=>o[C],enumerable:!(p=a(o,C))||p.enumerable});return r};var i=(r,o,n)=>(n=r!=null?x(y(r)):{},s(o||!r||!r.__esModule?l(n,"default",{value:r,enumerable:!0}):n,r)),P=r=>s(l({},"__esModule",{value:!0}),r);var k={};I(k,{IconGoblin2:()=>f,default:()=>g});module.exports=P(k);var e=i(require("react"));var u=i(require("react")),c=require("react-native-svg"),m=({children:r,size:o=24,...n})=>u.default.createElement(c.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),f=r=>e.default.createElement(m,{...r},e.default.createElement(t.Path,{d:"M14.5294 14.8075C12.7233 15.3142 11.2767 15.3142 9.47057 14.8075C9.0707 14.6953 8.72189 15.0667 8.97559 15.3955C10.3691 17.2015 13.6309 17.2015 15.0244 15.3955C15.2781 15.0667 14.9293 14.6953 14.5294 14.8075Z",fill:"currentColor"}),e.default.createElement(t.Ellipse,{cx:"9.5",cy:"11",rx:"1.25",ry:"1",fill:"currentColor"}),e.default.createElement(t.Ellipse,{cx:"14.5",cy:"11",rx:"1.25",ry:"1",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M4.5 14.5V10.5C4.5 8.29086 2.70914 6.5 0.5 6.5V10.5C0.5 12.7091 2.29086 14.5 4.5 14.5Z",stroke:"currentColor",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M19.5 14.5V10.5C19.5 8.29086 21.2909 6.5 23.5 6.5V10.5C23.5 12.7091 21.7091 14.5 19.5 14.5Z",stroke:"currentColor",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M19.5 13.5V11C19.5 6.85786 16.1421 3.5 12 3.5C7.85786 3.5 4.5 6.85786 4.5 11V13.5C4.5 17.366 7.63401 20.5 11.5 20.5H12.5C16.366 20.5 19.5 17.366 19.5 13.5Z",stroke:"currentColor",strokeLinejoin:"round"})),g=f;0&&(module.exports={IconGoblin2});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconGoblin2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Ellipse, Path } from \"react-native-svg\";\n\nexport const IconGoblin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.5294 14.8075C12.7233 15.3142 11.2767 15.3142 9.47057 14.8075C9.0707 14.6953 8.72189 15.0667 8.97559 15.3955C10.3691 17.2015 13.6309 17.2015 15.0244 15.3955C15.2781 15.0667 14.9293 14.6953 14.5294 14.8075Z\"\n fill=\"currentColor\"\n />\n <Ellipse cx=\"9.5\" cy=\"11\" rx=\"1.25\" ry=\"1\" fill=\"currentColor\" />\n <Ellipse cx=\"14.5\" cy=\"11\" rx=\"1.25\" ry=\"1\" fill=\"currentColor\" />\n <Path\n d=\"M4.5 14.5V10.5C4.5 8.29086 2.70914 6.5 0.5 6.5V10.5C0.5 12.7091 2.29086 14.5 4.5 14.5Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 14.5V10.5C19.5 8.29086 21.2909 6.5 23.5 6.5V10.5C23.5 12.7091 21.7091 14.5 19.5 14.5Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 13.5V11C19.5 6.85786 16.1421 3.5 12 3.5C7.85786 3.5 4.5 6.85786 4.5 11V13.5C4.5 17.366 7.63401 20.5 11.5 20.5H12.5C16.366 20.5 19.5 17.366 19.5 13.5Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoblin2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA8B,4BAEjBC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,WAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,GAAG,IAAI,KAAK,eAAe,EAC/D,EAAAA,QAAA,cAAC,WAAQ,GAAG,OAAO,GAAG,KAAK,GAAG,OAAO,GAAG,IAAI,KAAK,eAAe,EAChE,EAAAA,QAAA,cAAC,QACC,EAAE,yFACF,OAAO,eACP,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8FACF,OAAO,eACP,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8JACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconGoblin2_exports","__export","IconGoblin2","IconGoblin2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoblin2","props","React","CentralIconBase","IconGoblin2_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import p from"react";import{Svg as s}from"react-native-svg";var t=({children:e,size:o=24,...l})=>p.createElement(s,{...l,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Ellipse as C,Path as n}from"react-native-svg";var i=e=>r.createElement(t,{...e},r.createElement(n,{d:"M14.5294 14.8075C12.7233 15.3142 11.2767 15.3142 9.47057 14.8075C9.0707 14.6953 8.72189 15.0667 8.97559 15.3955C10.3691 17.2015 13.6309 17.2015 15.0244 15.3955C15.2781 15.0667 14.9293 14.6953 14.5294 14.8075Z",fill:"currentColor"}),r.createElement(C,{cx:"9.5",cy:"11",rx:"1.25",ry:"1",fill:"currentColor"}),r.createElement(C,{cx:"14.5",cy:"11",rx:"1.25",ry:"1",fill:"currentColor"}),r.createElement(n,{d:"M4.5 14.5V10.5C4.5 8.29086 2.70914 6.5 0.5 6.5V10.5C0.5 12.7091 2.29086 14.5 4.5 14.5Z",stroke:"currentColor",strokeLinejoin:"round"}),r.createElement(n,{d:"M19.5 14.5V10.5C19.5 8.29086 21.2909 6.5 23.5 6.5V10.5C23.5 12.7091 21.7091 14.5 19.5 14.5Z",stroke:"currentColor",strokeLinejoin:"round"}),r.createElement(n,{d:"M19.5 13.5V11C19.5 6.85786 16.1421 3.5 12 3.5C7.85786 3.5 4.5 6.85786 4.5 11V13.5C4.5 17.366 7.63401 20.5 11.5 20.5H12.5C16.366 20.5 19.5 17.366 19.5 13.5Z",stroke:"currentColor",strokeLinejoin:"round"})),I=i;export{i as IconGoblin2,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconGoblin2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Ellipse, Path } from \"react-native-svg\";\n\nexport const IconGoblin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.5294 14.8075C12.7233 15.3142 11.2767 15.3142 9.47057 14.8075C9.0707 14.6953 8.72189 15.0667 8.97559 15.3955C10.3691 17.2015 13.6309 17.2015 15.0244 15.3955C15.2781 15.0667 14.9293 14.6953 14.5294 14.8075Z\"\n fill=\"currentColor\"\n />\n <Ellipse cx=\"9.5\" cy=\"11\" rx=\"1.25\" ry=\"1\" fill=\"currentColor\" />\n <Ellipse cx=\"14.5\" cy=\"11\" rx=\"1.25\" ry=\"1\" fill=\"currentColor\" />\n <Path\n d=\"M4.5 14.5V10.5C4.5 8.29086 2.70914 6.5 0.5 6.5V10.5C0.5 12.7091 2.29086 14.5 4.5 14.5Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 14.5V10.5C19.5 8.29086 21.2909 6.5 23.5 6.5V10.5C23.5 12.7091 21.7091 14.5 19.5 14.5Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 13.5V11C19.5 6.85786 16.1421 3.5 12 3.5C7.85786 3.5 4.5 6.85786 4.5 11V13.5C4.5 17.366 7.63401 20.5 11.5 20.5H12.5C16.366 20.5 19.5 17.366 19.5 13.5Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoblin2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,WAAAG,EAAS,QAAAC,MAAY,mBAEvB,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mNACF,KAAK,eACP,EACAG,EAAA,cAACJ,EAAA,CAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,GAAG,IAAI,KAAK,eAAe,EAC/DI,EAAA,cAACJ,EAAA,CAAQ,GAAG,OAAO,GAAG,KAAK,GAAG,OAAO,GAAG,IAAI,KAAK,eAAe,EAChEI,EAAA,cAACH,EAAA,CACC,EAAE,yFACF,OAAO,eACP,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8FACF,OAAO,eACP,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8JACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Ellipse","Path","IconGoblin2","props","React","CentralIconBase","IconGoblin2_default"]}
package/README.md CHANGED
@@ -175,6 +175,8 @@ Below is a complete list of available icons:
175
175
  - IconFileSparkle
176
176
  - IconFolderSparkle
177
177
  - IconFortuneTellerBall
178
+ - IconGoblin
179
+ - IconGoblin2
178
180
  - IconHatBunny
179
181
  - IconHatSparkle
180
182
  - IconImageAvatarSparkle
@@ -13006,6 +13006,34 @@
13006
13006
  "packageName": "round-outlined-radius-1-stroke-1",
13007
13007
  "componentName": "IconGoatHead"
13008
13008
  },
13009
+ {
13010
+ "category": "AI & Magic",
13011
+ "svg": "<rect x=\"4.5\" y=\"2.5\" width=\"15\" height=\"19\" rx=\"7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 16C11.25 16.6667 12.75 16.6667 15 16\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 7.5H22.5C23.0523 7.5 23.5 7.94772 23.5 8.5V9.5C23.5 11.7091 21.7091 13.5 19.5 13.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"9.4501\" cy=\"11.35\" r=\"1.35\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"14.5502\" cy=\"11.35\" r=\"1.35\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 4L11.5144 6.2302C11.8164 6.39799 12.1836 6.39799 12.4856 6.2302L16.5 4\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 7.5H1.5C0.947715 7.5 0.5 7.94772 0.5 8.5V9.5C0.5 11.7091 2.29086 13.5 4.5 13.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
13012
+ "iconName": "goblin, troll, agent, helper",
13013
+ "variant": {
13014
+ "join": "round",
13015
+ "filled": "off",
13016
+ "radius": "1",
13017
+ "stroke": "1"
13018
+ },
13019
+ "createdAt": "2026-04-30T09:02:09.896316+00:00",
13020
+ "packageName": "round-outlined-radius-1-stroke-1",
13021
+ "componentName": "IconGoblin"
13022
+ },
13023
+ {
13024
+ "category": "AI & Magic",
13025
+ "svg": "<path d=\"M14.5294 14.8075C12.7233 15.3142 11.2767 15.3142 9.47057 14.8075C9.0707 14.6953 8.72189 15.0667 8.97559 15.3955C10.3691 17.2015 13.6309 17.2015 15.0244 15.3955C15.2781 15.0667 14.9293 14.6953 14.5294 14.8075Z\" fill=\"currentColor\"/><ellipse cx=\"9.5\" cy=\"11\" rx=\"1.25\" ry=\"1\" fill=\"currentColor\"/><ellipse cx=\"14.5\" cy=\"11\" rx=\"1.25\" ry=\"1\" fill=\"currentColor\"/><path d=\"M4.5 14.5V10.5C4.5 8.29086 2.70914 6.5 0.5 6.5V10.5C0.5 12.7091 2.29086 14.5 4.5 14.5Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M19.5 14.5V10.5C19.5 8.29086 21.2909 6.5 23.5 6.5V10.5C23.5 12.7091 21.7091 14.5 19.5 14.5Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M19.5 13.5V11C19.5 6.85786 16.1421 3.5 12 3.5C7.85786 3.5 4.5 6.85786 4.5 11V13.5C4.5 17.366 7.63401 20.5 11.5 20.5H12.5C16.366 20.5 19.5 17.366 19.5 13.5Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
13026
+ "iconName": "goblin-2, troll, agent, helper",
13027
+ "variant": {
13028
+ "join": "round",
13029
+ "filled": "off",
13030
+ "radius": "1",
13031
+ "stroke": "1"
13032
+ },
13033
+ "createdAt": "2026-04-30T12:02:30.964532+00:00",
13034
+ "packageName": "round-outlined-radius-1-stroke-1",
13035
+ "componentName": "IconGoblin2"
13036
+ },
13009
13037
  {
13010
13038
  "category": "Things",
13011
13039
  "svg": "<path d=\"M7.43874 10.1838L8.77208 6.18377C8.90819 5.77543 9.29033 5.5 9.72076 5.5H14.2792C14.7097 5.5 15.0918 5.77543 15.2279 6.18377L16.5613 10.1838C16.7771 10.8313 16.2951 11.5 15.6126 11.5H8.38743C7.70487 11.5 7.2229 10.8313 7.43874 10.1838Z\" stroke=\"currentColor\"/><path d=\"M2.43874 16.1838L3.77208 12.1838C3.90819 11.7754 4.29033 11.5 4.72076 11.5H9.27924C9.70967 11.5 10.0918 11.7754 10.2279 12.1838L11.5613 16.1838C11.7771 16.8313 11.2951 17.5 10.6126 17.5H3.38743C2.70487 17.5 2.2229 16.8313 2.43874 16.1838Z\" stroke=\"currentColor\"/><path d=\"M12.4387 16.1838L13.7721 12.1838C13.9082 11.7754 14.2903 11.5 14.7208 11.5H19.2792C19.7097 11.5 20.0918 11.7754 20.2279 12.1838L21.5613 16.1838C21.7771 16.8313 21.2951 17.5 20.6126 17.5H13.3874C12.7049 17.5 12.2229 16.8313 12.4387 16.1838Z\" stroke=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -928,6 +928,8 @@ export type CentralIconName =
928
928
  | "IconGlobe"
929
929
  | "IconGlobe2"
930
930
  | "IconGoatHead"
931
+ | "IconGoblin"
932
+ | "IconGoblin2"
931
933
  | "IconGold"
932
934
  | "IconGoldenGateBridge"
933
935
  | "IconGoldMedal"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-1-stroke-1",
3
- "version": "1.1.218",
3
+ "version": "1.1.220",
4
4
  "style": "round-outlined-radius-1-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-stroke-1/IconHome';",
@@ -11,10 +11,10 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1977,
14
+ "totalIcons": 1979,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 85,
17
+ "count": 87,
18
18
  "icons": [
19
19
  "IconAiSlop",
20
20
  "IconAiTokens",
@@ -44,6 +44,8 @@
44
44
  "IconFileSparkle",
45
45
  "IconFolderSparkle",
46
46
  "IconFortuneTellerBall",
47
+ "IconGoblin",
48
+ "IconGoblin2",
47
49
  "IconHatBunny",
48
50
  "IconHatSparkle",
49
51
  "IconImageAvatarSparkle",
@@ -3107,6 +3109,8 @@
3107
3109
  "IconGlobe": "globe, network, translate",
3108
3110
  "IconGlobe2": "globe-2, network, translate",
3109
3111
  "IconGoatHead": "goat-head, goated",
3112
+ "IconGoblin": "goblin, troll, agent, helper",
3113
+ "IconGoblin2": "goblin-2, troll, agent, helper",
3110
3114
  "IconGold": "gold, goldbars",
3111
3115
  "IconGoldenGateBridge": "golden-gate-bridge, silicon-valley, sf",
3112
3116
  "IconGoldMedal": "gold-medal, first-place, win",
package/index.d.ts CHANGED
@@ -927,6 +927,8 @@ export { IconGlassWater, default as IconGlassWaterDefault, } from "./IconGlassWa
927
927
  export { IconGlobe, default as IconGlobeDefault } from "./IconGlobe";
928
928
  export { IconGlobe2, default as IconGlobe2Default } from "./IconGlobe2";
929
929
  export { IconGoatHead, default as IconGoatHeadDefault } from "./IconGoatHead";
930
+ export { IconGoblin, default as IconGoblinDefault } from "./IconGoblin";
931
+ export { IconGoblin2, default as IconGoblin2Default } from "./IconGoblin2";
930
932
  export { IconGold, default as IconGoldDefault } from "./IconGold";
931
933
  export { IconGoldMedal, default as IconGoldMedalDefault, } from "./IconGoldMedal";
932
934
  export { IconGoldenGateBridge, default as IconGoldenGateBridgeDefault, } from "./IconGoldenGateBridge";