@central-icons-react-native/round-outlined-radius-0-stroke-2 0.0.59 → 0.0.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/Icon3dBoxTop/index.d.ts +4 -0
- package/Icon3dBoxTop/index.js +2 -0
- package/Icon3dBoxTop/index.js.map +1 -0
- package/Icon3dBoxTop/index.mjs +2 -0
- package/Icon3dBoxTop/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/license-check.js +4 -0
- package/package.json +1 -1
- package/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},m=(o,r,t,a)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of B(r))!I.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(a=f(r,e))||a.enumerable});return o};var C=(o,r,t)=>(t=o!=null?d(x(o)):{},m(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),P=o=>m(n({},"__esModule",{value:!0}),o);var h={};L(h,{Icon3dBoxTop:()=>u,default:()=>g});module.exports=P(h);var p=C(require("react"));var i=C(require("react")),l=require("react-native-svg"),c=({children:o,size:r=24,...t})=>i.default.createElement(l.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var s=require("react-native-svg"),u=o=>p.default.createElement(c,{...o},p.default.createElement(s.Path,{d:"M12.0001 2L20.6604 7V17L12.0001 22L3.33984 17V7L12.0001 2Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M20.6604 7L12.0001 12M12.0001 22V12M3.33984 7L12.0001 12",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),g=u;0&&(module.exports={Icon3dBoxTop});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/Icon3dBoxTop/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 Icon3dBoxTop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.0001 2L20.6604 7V17L12.0001 22L3.33984 17V7L12.0001 2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.6604 7L12.0001 12M12.0001 22V12M3.33984 7L12.0001 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxTop;\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,6DACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2DACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["Icon3dBoxTop_exports","__export","Icon3dBoxTop","Icon3dBoxTop_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","Icon3dBoxTop","props","React","CentralIconBase","Icon3dBoxTop_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import s from"react";import{Svg as a}from"react-native-svg";var e=({children:r,size:o=24,...p})=>s.createElement(a,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as n}from"react-native-svg";var m=r=>t.createElement(e,{...r},t.createElement(n,{d:"M12.0001 2L20.6604 7V17L12.0001 22L3.33984 17V7L12.0001 2Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),t.createElement(n,{d:"M20.6604 7L12.0001 12M12.0001 22V12M3.33984 7L12.0001 12",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),I=m;export{m as Icon3dBoxTop,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/Icon3dBoxTop/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 Icon3dBoxTop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.0001 2L20.6604 7V17L12.0001 22L3.33984 17V7L12.0001 2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.6604 7L12.0001 12M12.0001 22V12M3.33984 7L12.0001 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxTop;\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,6DACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2DACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","Icon3dBoxTop","props","React","CentralIconBase","Icon3dBoxTop_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"data": [
|
|
3
|
+
{
|
|
4
|
+
"category": "Augmented Reality",
|
|
5
|
+
"svg": "<path d=\"M12.0001 2L20.6604 7V17L12.0001 22L3.33984 17V7L12.0001 2Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M20.6604 7L12.0001 12M12.0001 22V12M3.33984 7L12.0001 12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
6
|
+
"iconName": "3d-box-top, shaders, model, cube, ar",
|
|
7
|
+
"variant": {
|
|
8
|
+
"join": "round",
|
|
9
|
+
"filled": "off",
|
|
10
|
+
"radius": "0",
|
|
11
|
+
"stroke": "2"
|
|
12
|
+
},
|
|
13
|
+
"createdAt": "2025-08-28T10:30:32.636072+00:00",
|
|
14
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
15
|
+
"componentName": "Icon3dBoxTop"
|
|
16
|
+
},
|
|
3
17
|
{
|
|
4
18
|
"category": "Augmented Reality",
|
|
5
19
|
"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=\"round\"/><path d=\"M3.04492 12.301C3.49788 13.8165 7.33441 15 12.0002 15C16.64 15 20.4598 13.8297 20.9476 12.3263\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M11.4065 20.8239C10.0339 19.9975 9 16.361 9 12C9 7.40754 10.1466 3.61846 11.6278 3.0686\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.60",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-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": 1513,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 32,
|
|
@@ -178,8 +178,9 @@
|
|
|
178
178
|
]
|
|
179
179
|
},
|
|
180
180
|
"Augmented Reality": {
|
|
181
|
-
"count":
|
|
181
|
+
"count": 16,
|
|
182
182
|
"icons": [
|
|
183
|
+
"Icon3dBoxTop",
|
|
183
184
|
"Icon3dSphere",
|
|
184
185
|
"IconAr",
|
|
185
186
|
"IconArCube1",
|
|
@@ -1702,6 +1703,7 @@
|
|
|
1702
1703
|
}
|
|
1703
1704
|
},
|
|
1704
1705
|
"iconAliases": {
|
|
1706
|
+
"Icon3dBoxTop": "3d-box-top, shaders, model, cube, ar",
|
|
1705
1707
|
"Icon3dSphere": "3d-sphere",
|
|
1706
1708
|
"Icon4k": "4k",
|
|
1707
1709
|
"IconAddKeyframe": "add-keyframe, rhombus",
|
package/license-check.js
CHANGED
|
@@ -16,6 +16,10 @@ const licenseCheck = async () => {
|
|
|
16
16
|
headers: {
|
|
17
17
|
Authorization: `Bearer ${licenseKey}`,
|
|
18
18
|
},
|
|
19
|
+
body: JSON.stringify({
|
|
20
|
+
package: "central-icons-react-native/round-outlined-radius-0-stroke-2",
|
|
21
|
+
version: "0.0.60",
|
|
22
|
+
}),
|
|
19
23
|
signal: controller.signal,
|
|
20
24
|
});
|
|
21
25
|
|
package/package.json
CHANGED
package/tsx-icons.json
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"data": [
|
|
3
|
+
{
|
|
4
|
+
"svg": "<Path d=\"M12.0001 2L20.6604 7V17L12.0001 22L3.33984 17V7L12.0001 2Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M20.6604 7L12.0001 12M12.0001 22V12M3.33984 7L12.0001 12\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/>",
|
|
5
|
+
"tags": "Path",
|
|
6
|
+
"componentName": "Icon3dBoxTop",
|
|
7
|
+
"iconName": "3d-box-top, shaders, model, cube, ar",
|
|
8
|
+
"pathname": "src/Icon3dBoxTop"
|
|
9
|
+
},
|
|
3
10
|
{
|
|
4
11
|
"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\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M3.04492 12.301C3.49788 13.8165 7.33441 15 12.0002 15C16.64 15 20.4598 13.8297 20.9476 12.3263\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M11.4065 20.8239C10.0339 19.9975 9 16.361 9 12C9 7.40754 10.1466 3.61846 11.6278 3.0686\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/>",
|
|
5
12
|
"tags": "Path",
|