@central-icons-react-native/square-outlined-radius-0-stroke-1.5 1.1.58 → 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/IconGoose/index.d.ts +4 -0
- package/IconGoose/index.js +2 -0
- package/IconGoose/index.js.map +1 -0
- package/IconGoose/index.mjs +2 -0
- package/IconGoose/index.mjs.map +1 -0
- package/README.md +3 -1
- package/filtered-icons.json +31 -3
- package/icons/index.d.ts +3 -1
- package/icons-index.json +10 -6
- package/index.d.ts +3 -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 +18 -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.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M12 21C9.79086 21 8 16.9706 8 12C8 7.02944 9.79086 3 12 3C14.2091 3 16 7.02944 16 12C16 16.9706 14.2091 21 12 21Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M21 12H3",stroke:"currentColor",strokeWidth:"1.5",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.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 21C9.79086 21 8 16.9706 8 12C8 7.02944 9.79086 3 12 3C14.2091 3 16 7.02944 16 12C16 16.9706 14.2091 21 12 21Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M21 12H3\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,2JACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,MACZ,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.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),o.createElement(t,{d:"M12 21C9.79086 21 8 16.9706 8 12C8 7.02944 9.79086 3 12 3C14.2091 3 16 7.02944 16 12C16 16.9706 14.2091 21 12 21Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),o.createElement(t,{d:"M21 12H3",stroke:"currentColor",strokeWidth:"1.5",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.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 21C9.79086 21 8 16.9706 8 12C8 7.02944 9.79086 3 12 3C14.2091 3 16 7.02944 16 12C16 16.9706 14.2091 21 12 21Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M21 12H3\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,2JACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,MACZ,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.25",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement(e.Ellipse,{cx:"12",cy:"12",rx:"3.5",ry:"9.25",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement(e.Path,{d:"M3.5 9.25H20.5",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement(e.Path,{d:"M3.5 14.75H20.5",stroke:"currentColor",strokeWidth:"1.5"})),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\n cx=\"12\"\n cy=\"12\"\n r=\"9.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Ellipse\n cx=\"12\"\n cy=\"12\"\n rx=\"3.5\"\n ry=\"9.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path d=\"M3.5 9.25H20.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <Path d=\"M3.5 14.75H20.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\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,UACC,GAAG,KACH,GAAG,KACH,EAAE,OACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,WACC,GAAG,KACH,GAAG,KACH,GAAG,MACH,GAAG,OACH,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,YAAY,MAAM,EACjE,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,YAAY,MAAM,CACpE,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.25",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(c,{cx:"12",cy:"12",rx:"3.5",ry:"9.25",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(n,{d:"M3.5 9.25H20.5",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(n,{d:"M3.5 14.75H20.5",stroke:"currentColor",strokeWidth:"1.5"})),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\n cx=\"12\"\n cy=\"12\"\n r=\"9.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Ellipse\n cx=\"12\"\n cy=\"12\"\n rx=\"3.5\"\n ry=\"9.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path d=\"M3.5 9.25H20.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <Path d=\"M3.5 14.75H20.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\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,CACC,GAAG,KACH,GAAG,KACH,EAAE,OACF,OAAO,eACP,YAAY,MACd,EACAK,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,KACH,GAAG,MACH,GAAG,OACH,OAAO,eACP,YAAY,MACd,EACAI,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,YAAY,MAAM,EACjEG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,YAAY,MAAM,CACpE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Ellipse","Path","IconGlobe2","props","React","CentralIconBase","IconGlobe2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var t=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var v=(C,o)=>{for(var r in o)t(C,r,{get:o[r],enumerable:!0})},l=(C,o,r,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!d.call(C,e)&&e!==r&&t(C,e,{get:()=>o[e],enumerable:!(p=u(o,e))||p.enumerable});return C};var a=(C,o,r)=>(r=C!=null?i(I(C)):{},l(o||!C||!C.__esModule?t(r,"default",{value:C,enumerable:!0}):r,C)),x=C=>l(t({},"__esModule",{value:!0}),C);var g={};v(g,{IconGoose:()=>L,default:()=>P});module.exports=x(g);var n=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:C,size:o=24,...r})=>m.default.createElement(s.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var f=require("react-native-svg"),L=C=>n.default.createElement(c,{...C},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5953 21.1906C20.5192 20.9895 21.4992 20.4432 21.4992 20.4432L19.7837 19.031C18.936 18.3329 18.2144 17.4945 17.6503 16.5524C16.8707 15.2505 15.7937 14.1521 14.5075 13.347L13.8789 12.9813C13.771 12.9088 13.6804 12.8134 13.6136 12.7019C13.5468 12.5904 13.5055 12.4654 13.4926 12.3361C13.4766 12.1746 13.5199 12.0128 13.6145 11.8809C13.9414 11.4202 15.6316 9.41495 15.9419 9.15767C16.3401 8.82835 16.785 8.55444 17.1975 8.24016C17.256 8.19583 17.3146 8.1515 17.3724 8.10558C17.3748 8.104 17.3779 8.10242 17.3795 8.10004C17.5117 7.99634 17.6368 7.88472 17.7358 7.7533C18.0944 7.33849 18.1815 6.97117 18.2028 6.80888C18.1545 6.65293 18.0097 6.30303 17.6067 5.90008C17.8593 5.91591 18.1648 6.11541 18.4427 6.35052C18.6287 6.05287 18.8235 5.73859 19.0182 5.42352C19.1488 5.21294 18.9549 5.0554 18.9501 5.05065H18.9493V5.04907C18.9438 5.04353 18.7863 4.85116 18.5765 4.98099C18.1276 5.25806 17.6788 5.53672 17.279 5.78925C17.279 5.78925 16.8064 5.77975 16.2459 6.26344C16.1156 6.36691 15.9991 6.48663 15.8992 6.61968L15.8936 6.6268C15.8477 6.6838 15.8034 6.74318 15.759 6.80176C15.4448 7.2142 15.1709 7.6591 14.8407 8.05808C14.585 8.36761 12.579 10.0578 12.1175 10.3855C11.9858 10.4797 11.8243 10.5228 11.6631 10.5066C11.5338 10.4937 11.4089 10.4524 11.2973 10.3856C11.1858 10.3188 11.0904 10.2282 11.0179 10.1203L10.6522 9.49174C9.84723 8.20547 8.74873 7.12841 7.44686 6.34894C6.50505 5.78463 5.66697 5.06302 4.96903 4.21548L3.55438 2.5C3.55438 2.5 3.00894 3.48005 2.80865 4.40389C3.08731 4.74271 3.81403 5.58343 4.66109 6.22624C3.7507 5.79875 3.07781 5.46864 2.54741 5.19157C2.46588 5.79717 2.49754 6.71151 2.58145 7.42082C3.15618 7.67177 4.13386 8.05888 5.12973 8.2647C4.33335 8.45153 3.45938 8.48478 2.7857 8.47211C2.90444 8.91068 3.0691 9.35795 3.29234 9.80839C3.38655 10.0166 3.49025 10.22 3.60108 10.418C3.9589 10.5169 5.3601 10.7212 6.10582 10.5533L4.11881 11.2634C4.74103 12.0271 5.41385 12.748 6.13274 13.4214C7.74055 12.557 8.10708 12.439 9.31354 11.6497C7.36057 13.2393 6.85313 13.8885 6.30532 14.555L5.92296 15.0918C5.72505 15.3696 5.55168 15.6657 5.40839 15.976C4.92549 17.0131 4.24468 19.2218 4.24468 19.2218C4.12277 19.6065 4.40459 19.8883 4.77825 19.7553C4.77825 19.7553 6.98692 19.0737 8.02396 18.5916C8.33428 18.4475 8.63035 18.275 8.90901 18.077L9.44495 17.6947C9.62465 17.5466 9.80356 17.4018 9.99989 17.2308C9.99989 17.2308 11.3496 18.8299 12.7374 19.882L13.4467 17.8942C13.2796 18.6399 13.4831 20.0411 13.5813 20.3981C13.7807 20.5105 13.9842 20.6134 14.1924 20.7084C14.6428 20.9301 15.0901 21.0963 15.5287 21.2151C15.516 20.5398 15.5493 19.6667 15.7353 18.8703C15.9411 19.8661 16.329 20.8438 16.58 21.4185C17.2885 21.5025 18.2036 21.5341 18.8092 21.4526C18.4499 20.755 18.1047 20.0503 17.7738 19.3389C18.4158 20.186 19.2573 20.9127 19.5961 21.1913L19.5953 21.1906Z",fill:"currentColor"})),P=L;0&&(module.exports={IconGoose});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoose/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 IconGoose: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.5953 21.1906C20.5192 20.9895 21.4992 20.4432 21.4992 20.4432L19.7837 19.031C18.936 18.3329 18.2144 17.4945 17.6503 16.5524C16.8707 15.2505 15.7937 14.1521 14.5075 13.347L13.8789 12.9813C13.771 12.9088 13.6804 12.8134 13.6136 12.7019C13.5468 12.5904 13.5055 12.4654 13.4926 12.3361C13.4766 12.1746 13.5199 12.0128 13.6145 11.8809C13.9414 11.4202 15.6316 9.41495 15.9419 9.15767C16.3401 8.82835 16.785 8.55444 17.1975 8.24016C17.256 8.19583 17.3146 8.1515 17.3724 8.10558C17.3748 8.104 17.3779 8.10242 17.3795 8.10004C17.5117 7.99634 17.6368 7.88472 17.7358 7.7533C18.0944 7.33849 18.1815 6.97117 18.2028 6.80888C18.1545 6.65293 18.0097 6.30303 17.6067 5.90008C17.8593 5.91591 18.1648 6.11541 18.4427 6.35052C18.6287 6.05287 18.8235 5.73859 19.0182 5.42352C19.1488 5.21294 18.9549 5.0554 18.9501 5.05065H18.9493V5.04907C18.9438 5.04353 18.7863 4.85116 18.5765 4.98099C18.1276 5.25806 17.6788 5.53672 17.279 5.78925C17.279 5.78925 16.8064 5.77975 16.2459 6.26344C16.1156 6.36691 15.9991 6.48663 15.8992 6.61968L15.8936 6.6268C15.8477 6.6838 15.8034 6.74318 15.759 6.80176C15.4448 7.2142 15.1709 7.6591 14.8407 8.05808C14.585 8.36761 12.579 10.0578 12.1175 10.3855C11.9858 10.4797 11.8243 10.5228 11.6631 10.5066C11.5338 10.4937 11.4089 10.4524 11.2973 10.3856C11.1858 10.3188 11.0904 10.2282 11.0179 10.1203L10.6522 9.49174C9.84723 8.20547 8.74873 7.12841 7.44686 6.34894C6.50505 5.78463 5.66697 5.06302 4.96903 4.21548L3.55438 2.5C3.55438 2.5 3.00894 3.48005 2.80865 4.40389C3.08731 4.74271 3.81403 5.58343 4.66109 6.22624C3.7507 5.79875 3.07781 5.46864 2.54741 5.19157C2.46588 5.79717 2.49754 6.71151 2.58145 7.42082C3.15618 7.67177 4.13386 8.05888 5.12973 8.2647C4.33335 8.45153 3.45938 8.48478 2.7857 8.47211C2.90444 8.91068 3.0691 9.35795 3.29234 9.80839C3.38655 10.0166 3.49025 10.22 3.60108 10.418C3.9589 10.5169 5.3601 10.7212 6.10582 10.5533L4.11881 11.2634C4.74103 12.0271 5.41385 12.748 6.13274 13.4214C7.74055 12.557 8.10708 12.439 9.31354 11.6497C7.36057 13.2393 6.85313 13.8885 6.30532 14.555L5.92296 15.0918C5.72505 15.3696 5.55168 15.6657 5.40839 15.976C4.92549 17.0131 4.24468 19.2218 4.24468 19.2218C4.12277 19.6065 4.40459 19.8883 4.77825 19.7553C4.77825 19.7553 6.98692 19.0737 8.02396 18.5916C8.33428 18.4475 8.63035 18.275 8.90901 18.077L9.44495 17.6947C9.62465 17.5466 9.80356 17.4018 9.99989 17.2308C9.99989 17.2308 11.3496 18.8299 12.7374 19.882L13.4467 17.8942C13.2796 18.6399 13.4831 20.0411 13.5813 20.3981C13.7807 20.5105 13.9842 20.6134 14.1924 20.7084C14.6428 20.9301 15.0901 21.0963 15.5287 21.2151C15.516 20.5398 15.5493 19.6667 15.7353 18.8703C15.9411 19.8661 16.329 20.8438 16.58 21.4185C17.2885 21.5025 18.2036 21.5341 18.8092 21.4526C18.4499 20.755 18.1047 20.0503 17.7738 19.3389C18.4158 20.186 19.2573 20.9127 19.5961 21.1913L19.5953 21.1906Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoose;\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,SAAS,UACT,SAAS,UACT,EAAE,iuFACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGoose_exports","__export","IconGoose","IconGoose_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoose","props","React","CentralIconBase","IconGoose_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import n from"react";import{Svg as p}from"react-native-svg";var r=({children:o,size:C=24,...t})=>n.createElement(p,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>e.createElement(r,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5953 21.1906C20.5192 20.9895 21.4992 20.4432 21.4992 20.4432L19.7837 19.031C18.936 18.3329 18.2144 17.4945 17.6503 16.5524C16.8707 15.2505 15.7937 14.1521 14.5075 13.347L13.8789 12.9813C13.771 12.9088 13.6804 12.8134 13.6136 12.7019C13.5468 12.5904 13.5055 12.4654 13.4926 12.3361C13.4766 12.1746 13.5199 12.0128 13.6145 11.8809C13.9414 11.4202 15.6316 9.41495 15.9419 9.15767C16.3401 8.82835 16.785 8.55444 17.1975 8.24016C17.256 8.19583 17.3146 8.1515 17.3724 8.10558C17.3748 8.104 17.3779 8.10242 17.3795 8.10004C17.5117 7.99634 17.6368 7.88472 17.7358 7.7533C18.0944 7.33849 18.1815 6.97117 18.2028 6.80888C18.1545 6.65293 18.0097 6.30303 17.6067 5.90008C17.8593 5.91591 18.1648 6.11541 18.4427 6.35052C18.6287 6.05287 18.8235 5.73859 19.0182 5.42352C19.1488 5.21294 18.9549 5.0554 18.9501 5.05065H18.9493V5.04907C18.9438 5.04353 18.7863 4.85116 18.5765 4.98099C18.1276 5.25806 17.6788 5.53672 17.279 5.78925C17.279 5.78925 16.8064 5.77975 16.2459 6.26344C16.1156 6.36691 15.9991 6.48663 15.8992 6.61968L15.8936 6.6268C15.8477 6.6838 15.8034 6.74318 15.759 6.80176C15.4448 7.2142 15.1709 7.6591 14.8407 8.05808C14.585 8.36761 12.579 10.0578 12.1175 10.3855C11.9858 10.4797 11.8243 10.5228 11.6631 10.5066C11.5338 10.4937 11.4089 10.4524 11.2973 10.3856C11.1858 10.3188 11.0904 10.2282 11.0179 10.1203L10.6522 9.49174C9.84723 8.20547 8.74873 7.12841 7.44686 6.34894C6.50505 5.78463 5.66697 5.06302 4.96903 4.21548L3.55438 2.5C3.55438 2.5 3.00894 3.48005 2.80865 4.40389C3.08731 4.74271 3.81403 5.58343 4.66109 6.22624C3.7507 5.79875 3.07781 5.46864 2.54741 5.19157C2.46588 5.79717 2.49754 6.71151 2.58145 7.42082C3.15618 7.67177 4.13386 8.05888 5.12973 8.2647C4.33335 8.45153 3.45938 8.48478 2.7857 8.47211C2.90444 8.91068 3.0691 9.35795 3.29234 9.80839C3.38655 10.0166 3.49025 10.22 3.60108 10.418C3.9589 10.5169 5.3601 10.7212 6.10582 10.5533L4.11881 11.2634C4.74103 12.0271 5.41385 12.748 6.13274 13.4214C7.74055 12.557 8.10708 12.439 9.31354 11.6497C7.36057 13.2393 6.85313 13.8885 6.30532 14.555L5.92296 15.0918C5.72505 15.3696 5.55168 15.6657 5.40839 15.976C4.92549 17.0131 4.24468 19.2218 4.24468 19.2218C4.12277 19.6065 4.40459 19.8883 4.77825 19.7553C4.77825 19.7553 6.98692 19.0737 8.02396 18.5916C8.33428 18.4475 8.63035 18.275 8.90901 18.077L9.44495 17.6947C9.62465 17.5466 9.80356 17.4018 9.99989 17.2308C9.99989 17.2308 11.3496 18.8299 12.7374 19.882L13.4467 17.8942C13.2796 18.6399 13.4831 20.0411 13.5813 20.3981C13.7807 20.5105 13.9842 20.6134 14.1924 20.7084C14.6428 20.9301 15.0901 21.0963 15.5287 21.2151C15.516 20.5398 15.5493 19.6667 15.7353 18.8703C15.9411 19.8661 16.329 20.8438 16.58 21.4185C17.2885 21.5025 18.2036 21.5341 18.8092 21.4526C18.4499 20.755 18.1047 20.0503 17.7738 19.3389C18.4158 20.186 19.2573 20.9127 19.5961 21.1913L19.5953 21.1906Z",fill:"currentColor"})),d=a;export{a as IconGoose,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoose/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 IconGoose: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.5953 21.1906C20.5192 20.9895 21.4992 20.4432 21.4992 20.4432L19.7837 19.031C18.936 18.3329 18.2144 17.4945 17.6503 16.5524C16.8707 15.2505 15.7937 14.1521 14.5075 13.347L13.8789 12.9813C13.771 12.9088 13.6804 12.8134 13.6136 12.7019C13.5468 12.5904 13.5055 12.4654 13.4926 12.3361C13.4766 12.1746 13.5199 12.0128 13.6145 11.8809C13.9414 11.4202 15.6316 9.41495 15.9419 9.15767C16.3401 8.82835 16.785 8.55444 17.1975 8.24016C17.256 8.19583 17.3146 8.1515 17.3724 8.10558C17.3748 8.104 17.3779 8.10242 17.3795 8.10004C17.5117 7.99634 17.6368 7.88472 17.7358 7.7533C18.0944 7.33849 18.1815 6.97117 18.2028 6.80888C18.1545 6.65293 18.0097 6.30303 17.6067 5.90008C17.8593 5.91591 18.1648 6.11541 18.4427 6.35052C18.6287 6.05287 18.8235 5.73859 19.0182 5.42352C19.1488 5.21294 18.9549 5.0554 18.9501 5.05065H18.9493V5.04907C18.9438 5.04353 18.7863 4.85116 18.5765 4.98099C18.1276 5.25806 17.6788 5.53672 17.279 5.78925C17.279 5.78925 16.8064 5.77975 16.2459 6.26344C16.1156 6.36691 15.9991 6.48663 15.8992 6.61968L15.8936 6.6268C15.8477 6.6838 15.8034 6.74318 15.759 6.80176C15.4448 7.2142 15.1709 7.6591 14.8407 8.05808C14.585 8.36761 12.579 10.0578 12.1175 10.3855C11.9858 10.4797 11.8243 10.5228 11.6631 10.5066C11.5338 10.4937 11.4089 10.4524 11.2973 10.3856C11.1858 10.3188 11.0904 10.2282 11.0179 10.1203L10.6522 9.49174C9.84723 8.20547 8.74873 7.12841 7.44686 6.34894C6.50505 5.78463 5.66697 5.06302 4.96903 4.21548L3.55438 2.5C3.55438 2.5 3.00894 3.48005 2.80865 4.40389C3.08731 4.74271 3.81403 5.58343 4.66109 6.22624C3.7507 5.79875 3.07781 5.46864 2.54741 5.19157C2.46588 5.79717 2.49754 6.71151 2.58145 7.42082C3.15618 7.67177 4.13386 8.05888 5.12973 8.2647C4.33335 8.45153 3.45938 8.48478 2.7857 8.47211C2.90444 8.91068 3.0691 9.35795 3.29234 9.80839C3.38655 10.0166 3.49025 10.22 3.60108 10.418C3.9589 10.5169 5.3601 10.7212 6.10582 10.5533L4.11881 11.2634C4.74103 12.0271 5.41385 12.748 6.13274 13.4214C7.74055 12.557 8.10708 12.439 9.31354 11.6497C7.36057 13.2393 6.85313 13.8885 6.30532 14.555L5.92296 15.0918C5.72505 15.3696 5.55168 15.6657 5.40839 15.976C4.92549 17.0131 4.24468 19.2218 4.24468 19.2218C4.12277 19.6065 4.40459 19.8883 4.77825 19.7553C4.77825 19.7553 6.98692 19.0737 8.02396 18.5916C8.33428 18.4475 8.63035 18.275 8.90901 18.077L9.44495 17.6947C9.62465 17.5466 9.80356 17.4018 9.99989 17.2308C9.99989 17.2308 11.3496 18.8299 12.7374 19.882L13.4467 17.8942C13.2796 18.6399 13.4831 20.0411 13.5813 20.3981C13.7807 20.5105 13.9842 20.6134 14.1924 20.7084C14.6428 20.9301 15.0901 21.0963 15.5287 21.2151C15.516 20.5398 15.5493 19.6667 15.7353 18.8703C15.9411 19.8661 16.329 20.8438 16.58 21.4185C17.2885 21.5025 18.2036 21.5341 18.8092 21.4526C18.4499 20.755 18.1047 20.0503 17.7738 19.3389C18.4158 20.186 19.2573 20.9127 19.5961 21.1913L19.5953 21.1906Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoose;\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,SAAS,UACT,SAAS,UACT,EAAE,iuFACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGoose","props","React","CentralIconBase","IconGoose_default"]}
|
package/README.md
CHANGED
|
@@ -1123,7 +1123,8 @@ Below is a complete list of available icons:
|
|
|
1123
1123
|
- IconDirection1
|
|
1124
1124
|
- IconDirection2
|
|
1125
1125
|
- IconEarth
|
|
1126
|
-
-
|
|
1126
|
+
- IconGlobe
|
|
1127
|
+
- IconGlobe2
|
|
1127
1128
|
- IconInitiatives
|
|
1128
1129
|
- IconLocation
|
|
1129
1130
|
- IconMap
|
|
@@ -1420,6 +1421,7 @@ Below is a complete list of available icons:
|
|
|
1420
1421
|
- IconGoogleAistudio
|
|
1421
1422
|
- IconGoogleDeepmind
|
|
1422
1423
|
- IconGooglePlayStore
|
|
1424
|
+
- IconGoose
|
|
1423
1425
|
- IconGrok
|
|
1424
1426
|
- IconGumroad
|
|
1425
1427
|
- IconImessage
|
package/filtered-icons.json
CHANGED
|
@@ -10950,8 +10950,8 @@
|
|
|
10950
10950
|
},
|
|
10951
10951
|
{
|
|
10952
10952
|
"category": "Location",
|
|
10953
|
-
"svg": "<path d=\"
|
|
10954
|
-
"iconName": "
|
|
10953
|
+
"svg": "<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M12 21C9.79086 21 8 16.9706 8 12C8 7.02944 9.79086 3 12 3C14.2091 3 16 7.02944 16 12C16 16.9706 14.2091 21 12 21Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M21 12H3\" stroke=\"currentColor\" stroke-width=\"1.5\" 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-1.5",
|
|
10963
|
-
"componentName": "
|
|
10963
|
+
"componentName": "IconGlobe"
|
|
10964
|
+
},
|
|
10965
|
+
{
|
|
10966
|
+
"category": "Location",
|
|
10967
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><ellipse cx=\"12\" cy=\"12\" rx=\"3.5\" ry=\"9.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M3.5 9.25H20.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M3.5 14.75H20.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/>",
|
|
10968
|
+
"iconName": "globe-2, network, translate",
|
|
10969
|
+
"variant": {
|
|
10970
|
+
"join": "square",
|
|
10971
|
+
"filled": "off",
|
|
10972
|
+
"radius": "0",
|
|
10973
|
+
"stroke": "1.5"
|
|
10974
|
+
},
|
|
10975
|
+
"createdAt": "2025-12-08T08:01:52.980988+00:00",
|
|
10976
|
+
"packageName": "square-outlined-radius-0-stroke-1.5",
|
|
10977
|
+
"componentName": "IconGlobe2"
|
|
10964
10978
|
},
|
|
10965
10979
|
{
|
|
10966
10980
|
"category": "Things",
|
|
@@ -11060,6 +11074,20 @@
|
|
|
11060
11074
|
"packageName": "square-outlined-radius-0-stroke-1.5",
|
|
11061
11075
|
"componentName": "IconGooglePlayStore"
|
|
11062
11076
|
},
|
|
11077
|
+
{
|
|
11078
|
+
"category": "Social Media & Brands",
|
|
11079
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.5953 21.1906C20.5192 20.9895 21.4992 20.4432 21.4992 20.4432L19.7837 19.031C18.936 18.3329 18.2144 17.4945 17.6503 16.5524C16.8707 15.2505 15.7937 14.1521 14.5075 13.347L13.8789 12.9813C13.771 12.9088 13.6804 12.8134 13.6136 12.7019C13.5468 12.5904 13.5055 12.4654 13.4926 12.3361C13.4766 12.1746 13.5199 12.0128 13.6145 11.8809C13.9414 11.4202 15.6316 9.41495 15.9419 9.15767C16.3401 8.82835 16.785 8.55444 17.1975 8.24016C17.256 8.19583 17.3146 8.1515 17.3724 8.10558C17.3748 8.104 17.3779 8.10242 17.3795 8.10004C17.5117 7.99634 17.6368 7.88472 17.7358 7.7533C18.0944 7.33849 18.1815 6.97117 18.2028 6.80888C18.1545 6.65293 18.0097 6.30303 17.6067 5.90008C17.8593 5.91591 18.1648 6.11541 18.4427 6.35052C18.6287 6.05287 18.8235 5.73859 19.0182 5.42352C19.1488 5.21294 18.9549 5.0554 18.9501 5.05065H18.9493V5.04907C18.9438 5.04353 18.7863 4.85116 18.5765 4.98099C18.1276 5.25806 17.6788 5.53672 17.279 5.78925C17.279 5.78925 16.8064 5.77975 16.2459 6.26344C16.1156 6.36691 15.9991 6.48663 15.8992 6.61968L15.8936 6.6268C15.8477 6.6838 15.8034 6.74318 15.759 6.80176C15.4448 7.2142 15.1709 7.6591 14.8407 8.05808C14.585 8.36761 12.579 10.0578 12.1175 10.3855C11.9858 10.4797 11.8243 10.5228 11.6631 10.5066C11.5338 10.4937 11.4089 10.4524 11.2973 10.3856C11.1858 10.3188 11.0904 10.2282 11.0179 10.1203L10.6522 9.49174C9.84723 8.20547 8.74873 7.12841 7.44686 6.34894C6.50505 5.78463 5.66697 5.06302 4.96903 4.21548L3.55438 2.5C3.55438 2.5 3.00894 3.48005 2.80865 4.40389C3.08731 4.74271 3.81403 5.58343 4.66109 6.22624C3.7507 5.79875 3.07781 5.46864 2.54741 5.19157C2.46588 5.79717 2.49754 6.71151 2.58145 7.42082C3.15618 7.67177 4.13386 8.05888 5.12973 8.2647C4.33335 8.45153 3.45938 8.48478 2.7857 8.47211C2.90444 8.91068 3.0691 9.35795 3.29234 9.80839C3.38655 10.0166 3.49025 10.22 3.60108 10.418C3.9589 10.5169 5.3601 10.7212 6.10582 10.5533L4.11881 11.2634C4.74103 12.0271 5.41385 12.748 6.13274 13.4214C7.74055 12.557 8.10708 12.439 9.31354 11.6497C7.36057 13.2393 6.85313 13.8885 6.30532 14.555L5.92296 15.0918C5.72505 15.3696 5.55168 15.6657 5.40839 15.976C4.92549 17.0131 4.24468 19.2218 4.24468 19.2218C4.12277 19.6065 4.40459 19.8883 4.77825 19.7553C4.77825 19.7553 6.98692 19.0737 8.02396 18.5916C8.33428 18.4475 8.63035 18.275 8.90901 18.077L9.44495 17.6947C9.62465 17.5466 9.80356 17.4018 9.99989 17.2308C9.99989 17.2308 11.3496 18.8299 12.7374 19.882L13.4467 17.8942C13.2796 18.6399 13.4831 20.0411 13.5813 20.3981C13.7807 20.5105 13.9842 20.6134 14.1924 20.7084C14.6428 20.9301 15.0901 21.0963 15.5287 21.2151C15.516 20.5398 15.5493 19.6667 15.7353 18.8703C15.9411 19.8661 16.329 20.8438 16.58 21.4185C17.2885 21.5025 18.2036 21.5341 18.8092 21.4526C18.4499 20.755 18.1047 20.0503 17.7738 19.3389C18.4158 20.186 19.2573 20.9127 19.5961 21.1913L19.5953 21.1906Z\" fill=\"currentColor\"/>",
|
|
11080
|
+
"iconName": "goose",
|
|
11081
|
+
"variant": {
|
|
11082
|
+
"join": "square",
|
|
11083
|
+
"filled": "off",
|
|
11084
|
+
"radius": "0",
|
|
11085
|
+
"stroke": "1.5"
|
|
11086
|
+
},
|
|
11087
|
+
"createdAt": "2025-12-05T08:01:37.646677+00:00",
|
|
11088
|
+
"packageName": "square-outlined-radius-0-stroke-1.5",
|
|
11089
|
+
"componentName": "IconGoose"
|
|
11090
|
+
},
|
|
11063
11091
|
{
|
|
11064
11092
|
"category": "Building",
|
|
11065
11093
|
"svg": "<path d=\"M14.75 12V20\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M9.25 12V20\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M3.75 19.5V13C3.75 8.44365 7.44365 4.75 12 4.75V4.75C16.5563 4.75 20.25 8.44365 20.25 13V19.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12 4.5V0.75H14.25V2.25H12.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M2 20.25H22\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M2 11.75H22\" stroke=\"currentColor\" stroke-width=\"1.5\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -781,7 +781,8 @@ export type CentralIconName =
|
|
|
781
781
|
| "IconGit"
|
|
782
782
|
| "IconGithub"
|
|
783
783
|
| "IconGlass"
|
|
784
|
-
| "
|
|
784
|
+
| "IconGlobe"
|
|
785
|
+
| "IconGlobe2"
|
|
785
786
|
| "IconGoldMedal"
|
|
786
787
|
| "IconGolfBall"
|
|
787
788
|
| "IconGooey"
|
|
@@ -789,6 +790,7 @@ export type CentralIconName =
|
|
|
789
790
|
| "IconGoogleAistudio"
|
|
790
791
|
| "IconGoogleDeepmind"
|
|
791
792
|
| "IconGooglePlayStore"
|
|
793
|
+
| "IconGoose"
|
|
792
794
|
| "IconGovernment"
|
|
793
795
|
| "IconGraduateCap"
|
|
794
796
|
| "IconGreenPower"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.60",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-1.5/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",
|
|
@@ -1298,7 +1299,7 @@
|
|
|
1298
1299
|
]
|
|
1299
1300
|
},
|
|
1300
1301
|
"Social Media & Brands": {
|
|
1301
|
-
"count":
|
|
1302
|
+
"count": 116,
|
|
1302
1303
|
"icons": [
|
|
1303
1304
|
"IconAnthropic",
|
|
1304
1305
|
"IconAntigravity",
|
|
@@ -1342,6 +1343,7 @@
|
|
|
1342
1343
|
"IconGoogleAistudio",
|
|
1343
1344
|
"IconGoogleDeepmind",
|
|
1344
1345
|
"IconGooglePlayStore",
|
|
1346
|
+
"IconGoose",
|
|
1345
1347
|
"IconGrok",
|
|
1346
1348
|
"IconGumroad",
|
|
1347
1349
|
"IconImessage",
|
|
@@ -2598,7 +2600,8 @@
|
|
|
2598
2600
|
"IconGit": "git",
|
|
2599
2601
|
"IconGithub": "github",
|
|
2600
2602
|
"IconGlass": "glass, material, shader, liquid-glass",
|
|
2601
|
-
"
|
|
2603
|
+
"IconGlobe": "globe, network, translate",
|
|
2604
|
+
"IconGlobe2": "globe-2, network, translate",
|
|
2602
2605
|
"IconGoldMedal": "gold-medal, first-place, win",
|
|
2603
2606
|
"IconGolfBall": "golf-ball",
|
|
2604
2607
|
"IconGooey": "gooey, morph, liquid-glass",
|
|
@@ -2606,6 +2609,7 @@
|
|
|
2606
2609
|
"IconGoogleAistudio": "google-aistudio",
|
|
2607
2610
|
"IconGoogleDeepmind": "google-deepmind",
|
|
2608
2611
|
"IconGooglePlayStore": "google-play-store",
|
|
2612
|
+
"IconGoose": "goose",
|
|
2609
2613
|
"IconGovernment": "government, bank, building",
|
|
2610
2614
|
"IconGraduateCap": "graduate-cap, study, education, academic, student",
|
|
2611
2615
|
"IconGreenPower": "green-power, green-energy",
|
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";
|
|
@@ -788,6 +789,7 @@ export { IconGoogle, default as IconGoogleDefault } from "./IconGoogle";
|
|
|
788
789
|
export { IconGoogleAistudio, default as IconGoogleAistudioDefault, } from "./IconGoogleAistudio";
|
|
789
790
|
export { IconGoogleDeepmind, default as IconGoogleDeepmindDefault, } from "./IconGoogleDeepmind";
|
|
790
791
|
export { IconGooglePlayStore, default as IconGooglePlayStoreDefault, } from "./IconGooglePlayStore";
|
|
792
|
+
export { IconGoose, default as IconGooseDefault } from "./IconGoose";
|
|
791
793
|
export { IconGovernment, default as IconGovernmentDefault, } from "./IconGovernment";
|
|
792
794
|
export { IconGraduateCap, default as IconGraduateCapDefault, } from "./IconGraduateCap";
|
|
793
795
|
export { IconGreenPower, default as IconGreenPowerDefault, } from "./IconGreenPower";
|