@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.137 → 1.1.138
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/IconGoatHead/index.d.ts +4 -0
- package/IconGoatHead/index.js +2 -0
- package/IconGoatHead/index.js.map +1 -0
- package/IconGoatHead/index.mjs +2 -0
- package/IconGoatHead/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -0
- 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 +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=i(o,e))||p.enumerable});return r};var s=(r,o,t)=>(t=r!=null?I(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>a(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconGoatHead:()=>B,default:()=>h});module.exports=d(v);var C=s(require("react"));var m=s(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(l.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 f=require("react-native-svg"),B=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M8.38522 16.848L8.39712 16.851C8.74938 18.2195 10.233 20.9999 12.002 21C13.7709 20.9999 15.2546 18.2195 15.6068 16.8511L15.6187 16.8481C16.6903 16.5775 16.7786 14.4515 16.89 13.5552C17.7245 13.5087 20.5356 12.8269 21.2618 10.6474C22.3512 7.37818 17.369 10.6753 17.812 7.71418C18.2485 4.79704 20.7171 3.23487 20.7171 3.23487C16.9042 2.48019 15.0885 3.5697 13.7159 6.13605C12.8719 7.71418 11.1061 7.71418 10.2734 6.13904C8.9151 3.5697 7.0997 2.4803 3.28682 3.23479C3.28682 3.23479 5.75533 4.79704 6.19183 7.71418C6.63482 10.6753 1.65273 7.3781 2.74212 10.6474C3.46839 12.8269 6.27941 13.5086 7.11395 13.5551C7.22535 14.4515 7.31364 16.5775 8.38522 16.848Z",stroke:"currentColor",strokeWidth:"1.9"})),h=B;0&&(module.exports={IconGoatHead});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoatHead/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 IconGoatHead: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.38522 16.848L8.39712 16.851C8.74938 18.2195 10.233 20.9999 12.002 21C13.7709 20.9999 15.2546 18.2195 15.6068 16.8511L15.6187 16.8481C16.6903 16.5775 16.7786 14.4515 16.89 13.5552C17.7245 13.5087 20.5356 12.8269 21.2618 10.6474C22.3512 7.37818 17.369 10.6753 17.812 7.71418C18.2485 4.79704 20.7171 3.23487 20.7171 3.23487C16.9042 2.48019 15.0885 3.5697 13.7159 6.13605C12.8719 7.71418 11.1061 7.71418 10.2734 6.13904C8.9151 3.5697 7.0997 2.4803 3.28682 3.23479C3.28682 3.23479 5.75533 4.79704 6.19183 7.71418C6.63482 10.6753 1.65273 7.3781 2.74212 10.6474C3.46839 12.8269 6.27941 13.5086 7.11395 13.5551C7.22535 14.4515 7.31364 16.5775 8.38522 16.848Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.9\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoatHead;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gpBACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconGoatHead_exports","__export","IconGoatHead","IconGoatHead_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoatHead","props","React","CentralIconBase","IconGoatHead_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var s=o=>e.createElement(t,{...o},e.createElement(a,{d:"M8.38522 16.848L8.39712 16.851C8.74938 18.2195 10.233 20.9999 12.002 21C13.7709 20.9999 15.2546 18.2195 15.6068 16.8511L15.6187 16.8481C16.6903 16.5775 16.7786 14.4515 16.89 13.5552C17.7245 13.5087 20.5356 12.8269 21.2618 10.6474C22.3512 7.37818 17.369 10.6753 17.812 7.71418C18.2485 4.79704 20.7171 3.23487 20.7171 3.23487C16.9042 2.48019 15.0885 3.5697 13.7159 6.13605C12.8719 7.71418 11.1061 7.71418 10.2734 6.13904C8.9151 3.5697 7.0997 2.4803 3.28682 3.23479C3.28682 3.23479 5.75533 4.79704 6.19183 7.71418C6.63482 10.6753 1.65273 7.3781 2.74212 10.6474C3.46839 12.8269 6.27941 13.5086 7.11395 13.5551C7.22535 14.4515 7.31364 16.5775 8.38522 16.848Z",stroke:"currentColor",strokeWidth:"1.9"})),P=s;export{s as IconGoatHead,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoatHead/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 IconGoatHead: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.38522 16.848L8.39712 16.851C8.74938 18.2195 10.233 20.9999 12.002 21C13.7709 20.9999 15.2546 18.2195 15.6068 16.8511L15.6187 16.8481C16.6903 16.5775 16.7786 14.4515 16.89 13.5552C17.7245 13.5087 20.5356 12.8269 21.2618 10.6474C22.3512 7.37818 17.369 10.6753 17.812 7.71418C18.2485 4.79704 20.7171 3.23487 20.7171 3.23487C16.9042 2.48019 15.0885 3.5697 13.7159 6.13605C12.8719 7.71418 11.1061 7.71418 10.2734 6.13904C8.9151 3.5697 7.0997 2.4803 3.28682 3.23479C3.28682 3.23479 5.75533 4.79704 6.19183 7.71418C6.63482 10.6753 1.65273 7.3781 2.74212 10.6474C3.46839 12.8269 6.27941 13.5086 7.11395 13.5551C7.22535 14.4515 7.31364 16.5775 8.38522 16.848Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.9\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoatHead;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gpBACF,OAAO,eACP,YAAY,MACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGoatHead","props","React","CentralIconBase","IconGoatHead_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -12096,6 +12096,20 @@
|
|
|
12096
12096
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
12097
12097
|
"componentName": "IconGlobe2"
|
|
12098
12098
|
},
|
|
12099
|
+
{
|
|
12100
|
+
"category": "Things",
|
|
12101
|
+
"svg": "<path d=\"M8.38522 16.848L8.39712 16.851C8.74938 18.2195 10.233 20.9999 12.002 21C13.7709 20.9999 15.2546 18.2195 15.6068 16.8511L15.6187 16.8481C16.6903 16.5775 16.7786 14.4515 16.89 13.5552C17.7245 13.5087 20.5356 12.8269 21.2618 10.6474C22.3512 7.37818 17.369 10.6753 17.812 7.71418C18.2485 4.79704 20.7171 3.23487 20.7171 3.23487C16.9042 2.48019 15.0885 3.5697 13.7159 6.13605C12.8719 7.71418 11.1061 7.71418 10.2734 6.13904C8.9151 3.5697 7.0997 2.4803 3.28682 3.23479C3.28682 3.23479 5.75533 4.79704 6.19183 7.71418C6.63482 10.6753 1.65273 7.3781 2.74212 10.6474C3.46839 12.8269 6.27941 13.5086 7.11395 13.5551C7.22535 14.4515 7.31364 16.5775 8.38522 16.848Z\" stroke=\"currentColor\" stroke-width=\"1.9\"/>",
|
|
12102
|
+
"iconName": "goat-head, goated",
|
|
12103
|
+
"variant": {
|
|
12104
|
+
"join": "square",
|
|
12105
|
+
"filled": "off",
|
|
12106
|
+
"radius": "0",
|
|
12107
|
+
"stroke": "2"
|
|
12108
|
+
},
|
|
12109
|
+
"createdAt": "2026-02-19T10:00:47.350823+00:00",
|
|
12110
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
12111
|
+
"componentName": "IconGoatHead"
|
|
12112
|
+
},
|
|
12099
12113
|
{
|
|
12100
12114
|
"category": "Things",
|
|
12101
12115
|
"svg": "<circle cx=\"12\" cy=\"10\" r=\"7.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M8 16.5V22L12 21L16 22V16.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M13.0391 6V14H11.1094V7.80469H11.0625L9.27344 8.89844V7.22656L11.2461 6H13.0391Z\" fill=\"currentColor\"/>",
|
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.138",
|
|
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": 1819,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 68,
|
|
@@ -1693,7 +1693,7 @@
|
|
|
1693
1693
|
]
|
|
1694
1694
|
},
|
|
1695
1695
|
"Things": {
|
|
1696
|
-
"count":
|
|
1696
|
+
"count": 125,
|
|
1697
1697
|
"icons": [
|
|
1698
1698
|
"IconAnvil",
|
|
1699
1699
|
"IconBackpack",
|
|
@@ -1743,6 +1743,7 @@
|
|
|
1743
1743
|
"IconFormPyramide",
|
|
1744
1744
|
"IconForYou",
|
|
1745
1745
|
"IconGalaxy",
|
|
1746
|
+
"IconGoatHead",
|
|
1746
1747
|
"IconGoldMedal",
|
|
1747
1748
|
"IconGraduateCap",
|
|
1748
1749
|
"IconInfinity",
|
|
@@ -2884,6 +2885,7 @@
|
|
|
2884
2885
|
"IconGlass": "glass, material, shader, liquid-glass",
|
|
2885
2886
|
"IconGlobe": "globe, network, translate",
|
|
2886
2887
|
"IconGlobe2": "globe-2, network, translate",
|
|
2888
|
+
"IconGoatHead": "goat-head, goated",
|
|
2887
2889
|
"IconGoldMedal": "gold-medal, first-place, win",
|
|
2888
2890
|
"IconGolfBall": "golf-ball",
|
|
2889
2891
|
"IconGooey": "gooey, morph, liquid-glass",
|
package/index.d.ts
CHANGED
|
@@ -862,6 +862,7 @@ export { IconGithub, default as IconGithubDefault } from "./IconGithub";
|
|
|
862
862
|
export { IconGlass, default as IconGlassDefault } from "./IconGlass";
|
|
863
863
|
export { IconGlobe, default as IconGlobeDefault } from "./IconGlobe";
|
|
864
864
|
export { IconGlobe2, default as IconGlobe2Default } from "./IconGlobe2";
|
|
865
|
+
export { IconGoatHead, default as IconGoatHeadDefault } from "./IconGoatHead";
|
|
865
866
|
export { IconGoldMedal, default as IconGoldMedalDefault, } from "./IconGoldMedal";
|
|
866
867
|
export { IconGolfBall, default as IconGolfBallDefault } from "./IconGolfBall";
|
|
867
868
|
export { IconGooey, default as IconGooeyDefault } from "./IconGooey";
|