@central-icons-react-native/round-filled-radius-0-stroke-1.5 0.0.60 → 0.0.61

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 Icon3dBoxBottom: FC<CentralIconBaseProps>;
4
+ export default Icon3dBoxBottom;
@@ -0,0 +1,2 @@
1
+ "use strict";var i=Object.create;var C=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},m=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of x(o))!L.call(r,n)&&n!==t&&C(r,n,{get:()=>o[n],enumerable:!(l=u(o,n))||l.enumerable});return r};var a=(r,o,t)=>(t=r!=null?i(I(r)):{},m(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>m(C({},"__esModule",{value:!0}),r);var v={};P(v,{Icon3dBoxBottom:()=>B,default:()=>g});module.exports=d(v);var e=a(require("react"));var f=a(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>f.default.createElement(s.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 p=require("react-native-svg"),B=r=>e.default.createElement(c,{...r},e.default.createElement(p.Path,{d:"M11 11.7116C11.1547 11.6222 11.25 11.4572 11.25 11.2785V2.18324C11.25 1.79834 10.8333 1.55778 10.5 1.75023L2.74805 6.22572C2.516 6.35969 2.37305 6.60729 2.37305 6.87524V15.8262C2.37305 16.2111 2.78971 16.4517 3.12304 16.2592L11 11.7116Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M21.627 6.87524C21.627 6.60729 21.484 6.35969 21.2519 6.22572L13.5 1.75023C13.1667 1.55778 12.75 1.79834 12.75 2.18324V11.2785C12.75 11.4572 12.8453 11.6222 13 11.7116L20.877 16.2592C21.2103 16.4517 21.627 16.2111 21.627 15.8262V6.87524Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M20.1261 18.4241C20.4594 18.2316 20.4594 17.7505 20.1261 17.5581L12.25 13.0104C12.0953 12.9211 11.9047 12.9211 11.75 13.0104L3.87307 17.558C3.53973 17.7505 3.53973 18.2316 3.87307 18.4241L11.625 22.8995C11.857 23.0335 12.143 23.0335 12.375 22.8995L20.1261 18.4241Z",fill:"currentColor"})),g=B;0&&(module.exports={Icon3dBoxBottom});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/Icon3dBoxBottom/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 Icon3dBoxBottom: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11 11.7116C11.1547 11.6222 11.25 11.4572 11.25 11.2785V2.18324C11.25 1.79834 10.8333 1.55778 10.5 1.75023L2.74805 6.22572C2.516 6.35969 2.37305 6.60729 2.37305 6.87524V15.8262C2.37305 16.2111 2.78971 16.4517 3.12304 16.2592L11 11.7116Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.627 6.87524C21.627 6.60729 21.484 6.35969 21.2519 6.22572L13.5 1.75023C13.1667 1.55778 12.75 1.79834 12.75 2.18324V11.2785C12.75 11.4572 12.8453 11.6222 13 11.7116L20.877 16.2592C21.2103 16.4517 21.627 16.2111 21.627 15.8262V6.87524Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1261 18.4241C20.4594 18.2316 20.4594 17.7505 20.1261 17.5581L12.25 13.0104C12.0953 12.9211 11.9047 12.9211 11.75 13.0104L3.87307 17.558C3.53973 17.7505 3.53973 18.2316 3.87307 18.4241L11.625 22.8995C11.857 23.0335 12.143 23.0335 12.375 22.8995L20.1261 18.4241Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxBottom;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2QACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["Icon3dBoxBottom_exports","__export","Icon3dBoxBottom","Icon3dBoxBottom_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","Icon3dBoxBottom","props","React","CentralIconBase","Icon3dBoxBottom_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var m=t=>o.createElement(e,{...t},o.createElement(n,{d:"M11 11.7116C11.1547 11.6222 11.25 11.4572 11.25 11.2785V2.18324C11.25 1.79834 10.8333 1.55778 10.5 1.75023L2.74805 6.22572C2.516 6.35969 2.37305 6.60729 2.37305 6.87524V15.8262C2.37305 16.2111 2.78971 16.4517 3.12304 16.2592L11 11.7116Z",fill:"currentColor"}),o.createElement(n,{d:"M21.627 6.87524C21.627 6.60729 21.484 6.35969 21.2519 6.22572L13.5 1.75023C13.1667 1.55778 12.75 1.79834 12.75 2.18324V11.2785C12.75 11.4572 12.8453 11.6222 13 11.7116L20.877 16.2592C21.2103 16.4517 21.627 16.2111 21.627 15.8262V6.87524Z",fill:"currentColor"}),o.createElement(n,{d:"M20.1261 18.4241C20.4594 18.2316 20.4594 17.7505 20.1261 17.5581L12.25 13.0104C12.0953 12.9211 11.9047 12.9211 11.75 13.0104L3.87307 17.558C3.53973 17.7505 3.53973 18.2316 3.87307 18.4241L11.625 22.8995C11.857 23.0335 12.143 23.0335 12.375 22.8995L20.1261 18.4241Z",fill:"currentColor"})),L=m;export{m as Icon3dBoxBottom,L as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/Icon3dBoxBottom/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 Icon3dBoxBottom: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11 11.7116C11.1547 11.6222 11.25 11.4572 11.25 11.2785V2.18324C11.25 1.79834 10.8333 1.55778 10.5 1.75023L2.74805 6.22572C2.516 6.35969 2.37305 6.60729 2.37305 6.87524V15.8262C2.37305 16.2111 2.78971 16.4517 3.12304 16.2592L11 11.7116Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.627 6.87524C21.627 6.60729 21.484 6.35969 21.2519 6.22572L13.5 1.75023C13.1667 1.55778 12.75 1.79834 12.75 2.18324V11.2785C12.75 11.4572 12.8453 11.6222 13 11.7116L20.877 16.2592C21.2103 16.4517 21.627 16.2111 21.627 15.8262V6.87524Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1261 18.4241C20.4594 18.2316 20.4594 17.7505 20.1261 17.5581L12.25 13.0104C12.0953 12.9211 11.9047 12.9211 11.75 13.0104L3.87307 17.558C3.53973 17.7505 3.53973 18.2316 3.87307 18.4241L11.625 22.8995C11.857 23.0335 12.143 23.0335 12.375 22.8995L20.1261 18.4241Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxBottom;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2QACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","Icon3dBoxBottom","props","React","CentralIconBase","Icon3dBoxBottom_default"]}
package/README.md CHANGED
@@ -300,6 +300,7 @@ Below is a complete list of available icons:
300
300
 
301
301
  ### Augmented Reality
302
302
 
303
+ - Icon3dBoxBottom
303
304
  - Icon3dBoxTop
304
305
  - Icon3dSphere
305
306
  - IconAr
@@ -1,5 +1,19 @@
1
1
  {
2
2
  "data": [
3
+ {
4
+ "category": "Augmented Reality",
5
+ "svg": "<path d=\"M11 11.7116C11.1547 11.6222 11.25 11.4572 11.25 11.2785V2.18324C11.25 1.79834 10.8333 1.55778 10.5 1.75023L2.74805 6.22572C2.516 6.35969 2.37305 6.60729 2.37305 6.87524V15.8262C2.37305 16.2111 2.78971 16.4517 3.12304 16.2592L11 11.7116Z\" fill=\"currentColor\"/><path d=\"M21.627 6.87524C21.627 6.60729 21.484 6.35969 21.2519 6.22572L13.5 1.75023C13.1667 1.55778 12.75 1.79834 12.75 2.18324V11.2785C12.75 11.4572 12.8453 11.6222 13 11.7116L20.877 16.2592C21.2103 16.4517 21.627 16.2111 21.627 15.8262V6.87524Z\" fill=\"currentColor\"/><path d=\"M20.1261 18.4241C20.4594 18.2316 20.4594 17.7505 20.1261 17.5581L12.25 13.0104C12.0953 12.9211 11.9047 12.9211 11.75 13.0104L3.87307 17.558C3.53973 17.7505 3.53973 18.2316 3.87307 18.4241L11.625 22.8995C11.857 23.0335 12.143 23.0335 12.375 22.8995L20.1261 18.4241Z\" fill=\"currentColor\"/>",
6
+ "iconName": "3d-box-bottom, shaders, model, room",
7
+ "variant": {
8
+ "join": "round",
9
+ "filled": "on",
10
+ "radius": "0",
11
+ "stroke": "1.5"
12
+ },
13
+ "createdAt": "2025-08-29T06:00:20.162384+00:00",
14
+ "packageName": "round-filled-radius-0-stroke-1.5",
15
+ "componentName": "Icon3dBoxBottom"
16
+ },
3
17
  {
4
18
  "category": "Augmented Reality",
5
19
  "svg": "<path d=\"M11 12.2883C11.1547 12.3776 11.25 12.5427 11.25 12.7213V21.8166C11.25 22.2015 10.8333 22.4421 10.5 22.2496L2.74805 17.7741C2.516 17.6401 2.37305 17.3925 2.37305 17.1246V8.17363C2.37305 7.78873 2.78971 7.54817 3.12304 7.74061L11 12.2883Z\" fill=\"currentColor\"/><path d=\"M21.627 17.1246C21.627 17.3925 21.484 17.6401 21.2519 17.7741L13.5 22.2496C13.1667 22.4421 12.75 22.2015 12.75 21.8166V12.7213C12.75 12.5427 12.8453 12.3776 13 12.2883L20.877 7.74061C21.2103 7.54817 21.627 7.78873 21.627 8.17363V17.1246Z\" fill=\"currentColor\"/><path d=\"M20.1261 5.57578C20.4594 5.76824 20.4594 6.24933 20.1261 6.44179L12.25 10.9894C12.0953 11.0788 11.9047 11.0788 11.75 10.9894L3.87307 6.4418C3.53973 6.24935 3.53973 5.76822 3.87307 5.57577L11.625 1.10029C11.857 0.966318 12.143 0.966325 12.375 1.10031L20.1261 5.57578Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export type CentralIconName =
2
+ | "Icon3dBoxBottom"
2
3
  | "Icon3dBoxTop"
3
4
  | "Icon3dSphere"
4
5
  | "Icon4k"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-0-stroke-1.5",
3
- "version": "0.0.60",
3
+ "version": "0.0.61",
4
4
  "style": "round-filled-radius-0-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-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": 1513,
14
+ "totalIcons": 1514,
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": 16,
181
+ "count": 17,
182
182
  "icons": [
183
+ "Icon3dBoxBottom",
183
184
  "Icon3dBoxTop",
184
185
  "Icon3dSphere",
185
186
  "IconAr",
@@ -1703,6 +1704,7 @@
1703
1704
  }
1704
1705
  },
1705
1706
  "iconAliases": {
1707
+ "Icon3dBoxBottom": "3d-box-bottom, shaders, model, room",
1706
1708
  "Icon3dBoxTop": "3d-box-top, shaders, model, cube, ar",
1707
1709
  "Icon3dSphere": "3d-sphere",
1708
1710
  "Icon4k": "4k",
package/license-check.js CHANGED
@@ -18,7 +18,7 @@ const licenseCheck = async () => {
18
18
  },
19
19
  body: JSON.stringify({
20
20
  package: "central-icons-react-native/round-filled-radius-0-stroke-1.5",
21
- version: "0.0.60",
21
+ version: "0.0.61",
22
22
  }),
23
23
  signal: controller.signal,
24
24
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-icons-react-native/round-filled-radius-0-stroke-1.5",
3
- "version": "0.0.60",
3
+ "version": "0.0.61",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "homepage": "https://iconists.co/central",
6
6
  "bugs": {
package/tsx-icons.json CHANGED
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "data": [
3
+ {
4
+ "svg": "<Path d=\"M11 11.7116C11.1547 11.6222 11.25 11.4572 11.25 11.2785V2.18324C11.25 1.79834 10.8333 1.55778 10.5 1.75023L2.74805 6.22572C2.516 6.35969 2.37305 6.60729 2.37305 6.87524V15.8262C2.37305 16.2111 2.78971 16.4517 3.12304 16.2592L11 11.7116Z\" fill=\"currentColor\"/><Path d=\"M21.627 6.87524C21.627 6.60729 21.484 6.35969 21.2519 6.22572L13.5 1.75023C13.1667 1.55778 12.75 1.79834 12.75 2.18324V11.2785C12.75 11.4572 12.8453 11.6222 13 11.7116L20.877 16.2592C21.2103 16.4517 21.627 16.2111 21.627 15.8262V6.87524Z\" fill=\"currentColor\"/><Path d=\"M20.1261 18.4241C20.4594 18.2316 20.4594 17.7505 20.1261 17.5581L12.25 13.0104C12.0953 12.9211 11.9047 12.9211 11.75 13.0104L3.87307 17.558C3.53973 17.7505 3.53973 18.2316 3.87307 18.4241L11.625 22.8995C11.857 23.0335 12.143 23.0335 12.375 22.8995L20.1261 18.4241Z\" fill=\"currentColor\"/>",
5
+ "tags": "Path",
6
+ "componentName": "Icon3dBoxBottom",
7
+ "iconName": "3d-box-bottom, shaders, model, room",
8
+ "pathname": "src/Icon3dBoxBottom"
9
+ },
3
10
  {
4
11
  "svg": "<Path d=\"M11 12.2883C11.1547 12.3776 11.25 12.5427 11.25 12.7213V21.8166C11.25 22.2015 10.8333 22.4421 10.5 22.2496L2.74805 17.7741C2.516 17.6401 2.37305 17.3925 2.37305 17.1246V8.17363C2.37305 7.78873 2.78971 7.54817 3.12304 7.74061L11 12.2883Z\" fill=\"currentColor\"/><Path d=\"M21.627 17.1246C21.627 17.3925 21.484 17.6401 21.2519 17.7741L13.5 22.2496C13.1667 22.4421 12.75 22.2015 12.75 21.8166V12.7213C12.75 12.5427 12.8453 12.3776 13 12.2883L20.877 7.74061C21.2103 7.54817 21.627 7.78873 21.627 8.17363V17.1246Z\" fill=\"currentColor\"/><Path d=\"M20.1261 5.57578C20.4594 5.76824 20.4594 6.24933 20.1261 6.44179L12.25 10.9894C12.0953 11.0788 11.9047 11.0788 11.75 10.9894L3.87307 6.4418C3.53973 6.24935 3.53973 5.76822 3.87307 5.57577L11.625 1.10029C11.857 0.966318 12.143 0.966325 12.375 1.10031L20.1261 5.57578Z\" fill=\"currentColor\"/>",
5
12
  "tags": "Path",