@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.219 → 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 IconGoblin2: FC<CentralIconBaseProps>;
4
+ export default IconGoblin2;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var l=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,y=Object.prototype.hasOwnProperty;var B=(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 a(o))!y.call(r,C)&&C!==n&&l(r,C,{get:()=>o[C],enumerable:!(p=x(o,C))||p.enumerable});return r};var i=(r,o,n)=>(n=r!=null?f(k(r)):{},s(o||!r||!r.__esModule?l(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>s(l({},"__esModule",{value:!0}),r);var P={};B(P,{IconGoblin2:()=>d,default:()=>h});module.exports=I(P);var t=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 e=require("react-native-svg"),d=r=>t.default.createElement(m,{...r},t.default.createElement(e.Path,{d:"M5 14V11C5 8.79086 3.20914 7 1 7V10C1 12.2091 2.79086 14 5 14Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),t.default.createElement(e.Path,{d:"M19 14V11C19 8.79086 20.7909 7 23 7V10C23 12.2091 21.2091 14 19 14Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),t.default.createElement(e.Path,{d:"M19 14V11C19 7.13401 15.866 4 12 4C8.13401 4 5 7.13401 5 11V14C5 17.3137 7.68629 20 11 20H13C16.3137 20 19 17.3137 19 14Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),t.default.createElement(e.Path,{d:"M14.6286 14.7793C12.7427 15.3236 11.2573 15.3236 9.37145 14.7793C8.99162 14.6696 8.63368 15.0062 8.81389 15.3581C10.1058 17.8806 13.8942 17.8806 15.1861 15.3581C15.3663 15.0062 15.0084 14.6696 14.6286 14.7793Z",fill:"currentColor"}),t.default.createElement(e.Ellipse,{cx:"9.5",cy:"11.25",rx:"1.5",ry:"1.25",fill:"currentColor"}),t.default.createElement(e.Ellipse,{cx:"14.5",cy:"11.25",rx:"1.5",ry:"1.25",fill:"currentColor"})),h=d;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=\"M5 14V11C5 8.79086 3.20914 7 1 7V10C1 12.2091 2.79086 14 5 14Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 14V11C19 8.79086 20.7909 7 23 7V10C23 12.2091 21.2091 14 19 14Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 14V11C19 7.13401 15.866 4 12 4C8.13401 4 5 7.13401 5 11V14C5 17.3137 7.68629 20 11 20H13C16.3137 20 19 17.3137 19 14Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.6286 14.7793C12.7427 15.3236 11.2573 15.3236 9.37145 14.7793C8.99162 14.6696 8.63368 15.0062 8.81389 15.3581C10.1058 17.8806 13.8942 17.8806 15.1861 15.3581C15.3663 15.0062 15.0084 14.6696 14.6286 14.7793Z\"\n fill=\"currentColor\"\n />\n <Ellipse cx=\"9.5\" cy=\"11.25\" rx=\"1.5\" ry=\"1.25\" fill=\"currentColor\" />\n <Ellipse cx=\"14.5\" cy=\"11.25\" rx=\"1.5\" ry=\"1.25\" fill=\"currentColor\" />\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,iEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,WAAQ,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,KAAK,eAAe,EACpE,EAAAA,QAAA,cAAC,WAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,KAAK,eAAe,CACvE,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 e=({children:t,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"},t);import{Ellipse as C,Path as n}from"react-native-svg";var i=t=>r.createElement(e,{...t},r.createElement(n,{d:"M5 14V11C5 8.79086 3.20914 7 1 7V10C1 12.2091 2.79086 14 5 14Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),r.createElement(n,{d:"M19 14V11C19 8.79086 20.7909 7 23 7V10C23 12.2091 21.2091 14 19 14Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),r.createElement(n,{d:"M19 14V11C19 7.13401 15.866 4 12 4C8.13401 4 5 7.13401 5 11V14C5 17.3137 7.68629 20 11 20H13C16.3137 20 19 17.3137 19 14Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),r.createElement(n,{d:"M14.6286 14.7793C12.7427 15.3236 11.2573 15.3236 9.37145 14.7793C8.99162 14.6696 8.63368 15.0062 8.81389 15.3581C10.1058 17.8806 13.8942 17.8806 15.1861 15.3581C15.3663 15.0062 15.0084 14.6696 14.6286 14.7793Z",fill:"currentColor"}),r.createElement(C,{cx:"9.5",cy:"11.25",rx:"1.5",ry:"1.25",fill:"currentColor"}),r.createElement(C,{cx:"14.5",cy:"11.25",rx:"1.5",ry:"1.25",fill:"currentColor"})),B=i;export{i as IconGoblin2,B 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=\"M5 14V11C5 8.79086 3.20914 7 1 7V10C1 12.2091 2.79086 14 5 14Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 14V11C19 8.79086 20.7909 7 23 7V10C23 12.2091 21.2091 14 19 14Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 14V11C19 7.13401 15.866 4 12 4C8.13401 4 5 7.13401 5 11V14C5 17.3137 7.68629 20 11 20H13C16.3137 20 19 17.3137 19 14Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.6286 14.7793C12.7427 15.3236 11.2573 15.3236 9.37145 14.7793C8.99162 14.6696 8.63368 15.0062 8.81389 15.3581C10.1058 17.8806 13.8942 17.8806 15.1861 15.3581C15.3663 15.0062 15.0084 14.6696 14.6286 14.7793Z\"\n fill=\"currentColor\"\n />\n <Ellipse cx=\"9.5\" cy=\"11.25\" rx=\"1.5\" ry=\"1.25\" fill=\"currentColor\" />\n <Ellipse cx=\"14.5\" cy=\"11.25\" rx=\"1.5\" ry=\"1.25\" fill=\"currentColor\" />\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,iEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oNACF,KAAK,eACP,EACAG,EAAA,cAACJ,EAAA,CAAQ,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,KAAK,eAAe,EACpEI,EAAA,cAACJ,EAAA,CAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,KAAK,eAAe,CACvE,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Ellipse","Path","IconGoblin2","props","React","CentralIconBase","IconGoblin2_default"]}
package/README.md CHANGED
@@ -176,6 +176,7 @@ Below is a complete list of available icons:
176
176
  - IconFolderSparkle
177
177
  - IconFortuneTellerBall
178
178
  - IconGoblin
179
+ - IconGoblin2
179
180
  - IconHatBunny
180
181
  - IconHatSparkle
181
182
  - IconImageAvatarSparkle
@@ -13020,6 +13020,20 @@
13020
13020
  "packageName": "round-outlined-radius-2-stroke-2",
13021
13021
  "componentName": "IconGoblin"
13022
13022
  },
13023
+ {
13024
+ "category": "AI & Magic",
13025
+ "svg": "<path d=\"M5 14V11C5 8.79086 3.20914 7 1 7V10C1 12.2091 2.79086 14 5 14Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M19 14V11C19 8.79086 20.7909 7 23 7V10C23 12.2091 21.2091 14 19 14Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M19 14V11C19 7.13401 15.866 4 12 4C8.13401 4 5 7.13401 5 11V14C5 17.3137 7.68629 20 11 20H13C16.3137 20 19 17.3137 19 14Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M14.6286 14.7793C12.7427 15.3236 11.2573 15.3236 9.37145 14.7793C8.99162 14.6696 8.63368 15.0062 8.81389 15.3581C10.1058 17.8806 13.8942 17.8806 15.1861 15.3581C15.3663 15.0062 15.0084 14.6696 14.6286 14.7793Z\" fill=\"currentColor\"/><ellipse cx=\"9.5\" cy=\"11.25\" rx=\"1.5\" ry=\"1.25\" fill=\"currentColor\"/><ellipse cx=\"14.5\" cy=\"11.25\" rx=\"1.5\" ry=\"1.25\" fill=\"currentColor\"/>",
13026
+ "iconName": "goblin-2, troll, agent, helper",
13027
+ "variant": {
13028
+ "join": "round",
13029
+ "filled": "off",
13030
+ "radius": "2",
13031
+ "stroke": "2"
13032
+ },
13033
+ "createdAt": "2026-04-30T12:02:30.964532+00:00",
13034
+ "packageName": "round-outlined-radius-2-stroke-2",
13035
+ "componentName": "IconGoblin2"
13036
+ },
13023
13037
  {
13024
13038
  "category": "Things",
13025
13039
  "svg": "<path d=\"M2.39818 16.7059L3.7828 12.2059C3.9119 11.7863 4.29957 11.5 4.73857 11.5H9.26143C9.70043 11.5 10.0881 11.7863 10.2172 12.2059L11.6018 16.7059C11.7997 17.349 11.3188 18 10.646 18H3.35396C2.68115 18 2.20032 17.349 2.39818 16.7059Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M7.39818 10.2059L8.7828 5.70591C8.9119 5.28632 9.29957 5 9.73857 5H14.2614C14.7004 5 15.0881 5.28632 15.2172 5.70591L16.6018 10.2059C16.7997 10.849 16.3188 11.5 15.646 11.5H8.35396C7.68115 11.5 7.20032 10.849 7.39818 10.2059Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M12.3982 16.7059L13.7828 12.2059C13.9119 11.7863 14.2996 11.5 14.7386 11.5H19.2614C19.7004 11.5 20.0881 11.7863 20.2172 12.2059L21.6018 16.7059C21.7997 17.349 21.3188 18 20.646 18H13.354C12.6812 18 12.2003 17.349 12.3982 16.7059Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
package/icons/index.d.ts CHANGED
@@ -929,6 +929,7 @@ export type CentralIconName =
929
929
  | "IconGlobe2"
930
930
  | "IconGoatHead"
931
931
  | "IconGoblin"
932
+ | "IconGoblin2"
932
933
  | "IconGold"
933
934
  | "IconGoldenGateBridge"
934
935
  | "IconGoldMedal"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
3
- "version": "1.1.219",
3
+ "version": "1.1.220",
4
4
  "style": "round-outlined-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/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": 1978,
14
+ "totalIcons": 1979,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 86,
17
+ "count": 87,
18
18
  "icons": [
19
19
  "IconAiSlop",
20
20
  "IconAiTokens",
@@ -45,6 +45,7 @@
45
45
  "IconFolderSparkle",
46
46
  "IconFortuneTellerBall",
47
47
  "IconGoblin",
48
+ "IconGoblin2",
48
49
  "IconHatBunny",
49
50
  "IconHatSparkle",
50
51
  "IconImageAvatarSparkle",
@@ -3109,6 +3110,7 @@
3109
3110
  "IconGlobe2": "globe-2, network, translate",
3110
3111
  "IconGoatHead": "goat-head, goated",
3111
3112
  "IconGoblin": "goblin, troll, agent, helper",
3113
+ "IconGoblin2": "goblin-2, troll, agent, helper",
3112
3114
  "IconGold": "gold, goldbars",
3113
3115
  "IconGoldenGateBridge": "golden-gate-bridge, silicon-valley, sf",
3114
3116
  "IconGoldMedal": "gold-medal, first-place, win",
package/index.d.ts CHANGED
@@ -928,6 +928,7 @@ 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
930
  export { IconGoblin, default as IconGoblinDefault } from "./IconGoblin";
931
+ export { IconGoblin2, default as IconGoblin2Default } from "./IconGoblin2";
931
932
  export { IconGold, default as IconGoldDefault } from "./IconGold";
932
933
  export { IconGoldMedal, default as IconGoldMedalDefault, } from "./IconGoldMedal";
933
934
  export { IconGoldenGateBridge, default as IconGoldenGateBridgeDefault, } from "./IconGoldenGateBridge";