@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.59 → 1.1.60
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.
- package/{IconGlobus → IconGlobe}/index.d.ts +2 -2
- package/IconGlobe/index.js +2 -0
- package/IconGlobe/index.js.map +1 -0
- package/IconGlobe/index.mjs +2 -0
- package/IconGlobe/index.mjs.map +1 -0
- package/IconGlobe2/index.d.ts +4 -0
- package/IconGlobe2/index.js +2 -0
- package/IconGlobe2/index.js.map +1 -0
- package/IconGlobe2/index.mjs +2 -0
- package/IconGlobe2/index.mjs.map +1 -0
- package/README.md +2 -1
- package/filtered-icons.json +17 -3
- package/icons/index.d.ts +2 -1
- package/icons-index.json +7 -5
- package/index.d.ts +2 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +11 -4
- package/IconGlobus/index.js +0 -2
- package/IconGlobus/index.js.map +0 -1
- package/IconGlobus/index.mjs +0 -2
- package/IconGlobus/index.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconGlobe: FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconGlobe;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of d(o))!I.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(C=k(o,t))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(B(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconGlobe:()=>u,default:()=>P});module.exports=x(g);var n=l(require("react"));var c=l(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...e})=>c.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),u=r=>n.default.createElement(i,{...r},n.default.createElement(s.Path,{d:"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M12 21C10.067 21 8.5 16.9706 8.5 12C8.5 7.02944 10.067 3 12 3C13.933 3 15.5 7.02944 15.5 12C15.5 16.9706 13.933 21 12 21Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M21 12H3",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),P=u;0&&(module.exports={IconGlobe});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGlobe/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGlobe: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 21C10.067 21 8.5 16.9706 8.5 12C8.5 7.02944 10.067 3 12 3C13.933 3 15.5 7.02944 15.5 12C15.5 16.9706 13.933 21 12 21Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M21 12H3\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGlobe;\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,eAAAE,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,EAAqB,4BAERC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oHACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconGlobe_exports","__export","IconGlobe","IconGlobe_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGlobe","props","React","CentralIconBase","IconGlobe_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M12 21C10.067 21 8.5 16.9706 8.5 12C8.5 7.02944 10.067 3 12 3C13.933 3 15.5 7.02944 15.5 12C15.5 16.9706 13.933 21 12 21Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M21 12H3",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),I=a;export{a as IconGlobe,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGlobe/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGlobe: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 21C10.067 21 8.5 16.9706 8.5 12C8.5 7.02944 10.067 3 12 3C13.933 3 15.5 7.02944 15.5 12C15.5 16.9706 13.933 21 12 21Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M21 12H3\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGlobe;\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,QAAAG,MAAY,mBAEd,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oHACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4HACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGlobe","props","React","CentralIconBase","IconGlobe_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var x=Object.create;var s=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of d(o))!k.call(r,p)&&p!==t&&s(r,p,{get:()=>o[p],enumerable:!(l=f(o,p))||l.enumerable});return r};var c=(r,o,t)=>(t=r!=null?x(h(r)):{},C(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>C(s({},"__esModule",{value:!0}),r);var P={};B(P,{IconGlobe2:()=>u,default:()=>y});module.exports=I(P);var n=c(require("react"));var m=c(require("react")),a=require("react-native-svg"),i=({children:r,size:o=24,...t})=>m.default.createElement(a.Svg,{...t,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"),u=r=>n.default.createElement(i,{...r},n.default.createElement(e.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(e.Ellipse,{cx:"12",cy:"12",rx:"3.5",ry:"9",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(e.Path,{d:"M4 9.5H20",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(e.Path,{d:"M4 14.5H20",stroke:"currentColor",strokeWidth:"2"})),y=u;0&&(module.exports={IconGlobe2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGlobe2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Ellipse, Path } from \"react-native-svg\";\n\nexport const IconGlobe2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Ellipse\n cx=\"12\"\n cy=\"12\"\n rx=\"3.5\"\n ry=\"9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M4 9.5H20\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M4 14.5H20\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconGlobe2;\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,EAAsC,4BAEzBC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,WACC,GAAG,KACH,GAAG,KACH,GAAG,MACH,GAAG,IACH,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,EAC1D,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,CAC7D,EAIGE,EAAQJ","names":["IconGlobe2_exports","__export","IconGlobe2","IconGlobe2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGlobe2","props","React","CentralIconBase","IconGlobe2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...p})=>s.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as C,Ellipse as c,Path as n}from"react-native-svg";var m=t=>o.createElement(e,{...t},o.createElement(C,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),o.createElement(c,{cx:"12",cy:"12",rx:"3.5",ry:"9",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{d:"M4 9.5H20",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{d:"M4 14.5H20",stroke:"currentColor",strokeWidth:"2"})),I=m;export{m as IconGlobe2,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGlobe2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Ellipse, Path } from \"react-native-svg\";\n\nexport const IconGlobe2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Ellipse\n cx=\"12\"\n cy=\"12\"\n rx=\"3.5\"\n ry=\"9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M4 9.5H20\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M4 14.5H20\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconGlobe2;\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,WAAAC,EAAS,QAAAC,MAAY,mBAE/B,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEK,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,KACH,GAAG,MACH,GAAG,IACH,OAAO,eACP,YAAY,IACd,EACAI,EAAA,cAACH,EAAA,CAAK,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,EAC1DG,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,CAC7D,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Ellipse","Path","IconGlobe2","props","React","CentralIconBase","IconGlobe2_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -10950,8 +10950,8 @@
|
|
|
10950
10950
|
},
|
|
10951
10951
|
{
|
|
10952
10952
|
"category": "Location",
|
|
10953
|
-
"svg": "<path d=\"M21 12C21 16.9706 16.9706 21 12
|
|
10954
|
-
"iconName": "
|
|
10953
|
+
"svg": "<path d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M12 21C10.067 21 8.5 16.9706 8.5 12C8.5 7.02944 10.067 3 12 3C13.933 3 15.5 7.02944 15.5 12C15.5 16.9706 13.933 21 12 21Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M21 12H3\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
10954
|
+
"iconName": "globe, network, translate",
|
|
10955
10955
|
"variant": {
|
|
10956
10956
|
"join": "square",
|
|
10957
10957
|
"filled": "off",
|
|
@@ -10960,7 +10960,21 @@
|
|
|
10960
10960
|
},
|
|
10961
10961
|
"createdAt": "2025-02-15T21:11:33.882223+00:00",
|
|
10962
10962
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
10963
|
-
"componentName": "
|
|
10963
|
+
"componentName": "IconGlobe"
|
|
10964
|
+
},
|
|
10965
|
+
{
|
|
10966
|
+
"category": "Location",
|
|
10967
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/><ellipse cx=\"12\" cy=\"12\" rx=\"3.5\" ry=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M4 9.5H20\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M4 14.5H20\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
10968
|
+
"iconName": "globe-2, network, translate",
|
|
10969
|
+
"variant": {
|
|
10970
|
+
"join": "square",
|
|
10971
|
+
"filled": "off",
|
|
10972
|
+
"radius": "0",
|
|
10973
|
+
"stroke": "2"
|
|
10974
|
+
},
|
|
10975
|
+
"createdAt": "2025-12-08T08:01:52.980988+00:00",
|
|
10976
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
10977
|
+
"componentName": "IconGlobe2"
|
|
10964
10978
|
},
|
|
10965
10979
|
{
|
|
10966
10980
|
"category": "Things",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.60",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1628,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 63,
|
|
@@ -1028,12 +1028,13 @@
|
|
|
1028
1028
|
]
|
|
1029
1029
|
},
|
|
1030
1030
|
"Location": {
|
|
1031
|
-
"count":
|
|
1031
|
+
"count": 16,
|
|
1032
1032
|
"icons": [
|
|
1033
1033
|
"IconDirection1",
|
|
1034
1034
|
"IconDirection2",
|
|
1035
1035
|
"IconEarth",
|
|
1036
|
-
"
|
|
1036
|
+
"IconGlobe",
|
|
1037
|
+
"IconGlobe2",
|
|
1037
1038
|
"IconInitiatives",
|
|
1038
1039
|
"IconLocation",
|
|
1039
1040
|
"IconMap",
|
|
@@ -2599,7 +2600,8 @@
|
|
|
2599
2600
|
"IconGit": "git",
|
|
2600
2601
|
"IconGithub": "github",
|
|
2601
2602
|
"IconGlass": "glass, material, shader, liquid-glass",
|
|
2602
|
-
"
|
|
2603
|
+
"IconGlobe": "globe, network, translate",
|
|
2604
|
+
"IconGlobe2": "globe-2, network, translate",
|
|
2603
2605
|
"IconGoldMedal": "gold-medal, first-place, win",
|
|
2604
2606
|
"IconGolfBall": "golf-ball",
|
|
2605
2607
|
"IconGooey": "gooey, morph, liquid-glass",
|
package/index.d.ts
CHANGED
|
@@ -780,7 +780,8 @@ export { IconGiroCards, default as IconGiroCardsDefault, } from "./IconGiroCards
|
|
|
780
780
|
export { IconGit, default as IconGitDefault } from "./IconGit";
|
|
781
781
|
export { IconGithub, default as IconGithubDefault } from "./IconGithub";
|
|
782
782
|
export { IconGlass, default as IconGlassDefault } from "./IconGlass";
|
|
783
|
-
export {
|
|
783
|
+
export { IconGlobe, default as IconGlobeDefault } from "./IconGlobe";
|
|
784
|
+
export { IconGlobe2, default as IconGlobe2Default } from "./IconGlobe2";
|
|
784
785
|
export { IconGoldMedal, default as IconGoldMedalDefault, } from "./IconGoldMedal";
|
|
785
786
|
export { IconGolfBall, default as IconGolfBallDefault } from "./IconGolfBall";
|
|
786
787
|
export { IconGooey, default as IconGooeyDefault } from "./IconGooey";
|