@central-icons-react-native/round-filled-radius-2-stroke-1 0.0.59 → 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.25 11.8562C11.4047 11.7669 11.5 11.6019 11.5 11.4232V2.32783C11.5 1.94295 11.0834 1.70239 10.75 1.8948L3.87325 5.86427C3.09963 6.31082 2.62305 7.13621 2.62305 8.02945V15.9718C2.62305 16.3567 3.03975 16.5973 3.37308 16.4048L11.25 11.8562Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M21.377 8.02945C21.377 7.13621 20.9004 6.31082 20.1268 5.86427L13.25 1.8948C12.9166 1.70239 12.5 1.94295 12.5 2.32783V11.4232C12.5 11.6019 12.5953 11.7669 12.75 11.8562L20.6269 16.4048C20.9603 16.5973 21.377 16.3567 21.377 15.9718V8.02945Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M20.125 18.1361C20.4584 17.9437 20.4584 17.4625 20.1251 17.2701L12.249 12.7225C12.0943 12.6331 11.9037 12.6331 11.749 12.7225L3.87308 17.27C3.53974 17.4625 3.53977 17.9437 3.87313 18.1361L10.7501 22.1056C11.5235 22.5521 12.4764 22.5521 13.2499 22.1055L20.125 18.1361Z",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.25 11.8562C11.4047 11.7669 11.5 11.6019 11.5 11.4232V2.32783C11.5 1.94295 11.0834 1.70239 10.75 1.8948L3.87325 5.86427C3.09963 6.31082 2.62305 7.13621 2.62305 8.02945V15.9718C2.62305 16.3567 3.03975 16.5973 3.37308 16.4048L11.25 11.8562Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.377 8.02945C21.377 7.13621 20.9004 6.31082 20.1268 5.86427L13.25 1.8948C12.9166 1.70239 12.5 1.94295 12.5 2.32783V11.4232C12.5 11.6019 12.5953 11.7669 12.75 11.8562L20.6269 16.4048C20.9603 16.5973 21.377 16.3567 21.377 15.9718V8.02945Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.125 18.1361C20.4584 17.9437 20.4584 17.4625 20.1251 17.2701L12.249 12.7225C12.0943 12.6331 11.9037 12.6331 11.749 12.7225L3.87308 17.27C3.53974 17.4625 3.53977 17.9437 3.87313 18.1361L10.7501 22.1056C11.5235 22.5521 12.4764 22.5521 13.2499 22.1055L20.125 18.1361Z\"\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,oPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8QACF,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.25 11.8562C11.4047 11.7669 11.5 11.6019 11.5 11.4232V2.32783C11.5 1.94295 11.0834 1.70239 10.75 1.8948L3.87325 5.86427C3.09963 6.31082 2.62305 7.13621 2.62305 8.02945V15.9718C2.62305 16.3567 3.03975 16.5973 3.37308 16.4048L11.25 11.8562Z",fill:"currentColor"}),o.createElement(n,{d:"M21.377 8.02945C21.377 7.13621 20.9004 6.31082 20.1268 5.86427L13.25 1.8948C12.9166 1.70239 12.5 1.94295 12.5 2.32783V11.4232C12.5 11.6019 12.5953 11.7669 12.75 11.8562L20.6269 16.4048C20.9603 16.5973 21.377 16.3567 21.377 15.9718V8.02945Z",fill:"currentColor"}),o.createElement(n,{d:"M20.125 18.1361C20.4584 17.9437 20.4584 17.4625 20.1251 17.2701L12.249 12.7225C12.0943 12.6331 11.9037 12.6331 11.749 12.7225L3.87308 17.27C3.53974 17.4625 3.53977 17.9437 3.87313 18.1361L10.7501 22.1056C11.5235 22.5521 12.4764 22.5521 13.2499 22.1055L20.125 18.1361Z",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.25 11.8562C11.4047 11.7669 11.5 11.6019 11.5 11.4232V2.32783C11.5 1.94295 11.0834 1.70239 10.75 1.8948L3.87325 5.86427C3.09963 6.31082 2.62305 7.13621 2.62305 8.02945V15.9718C2.62305 16.3567 3.03975 16.5973 3.37308 16.4048L11.25 11.8562Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.377 8.02945C21.377 7.13621 20.9004 6.31082 20.1268 5.86427L13.25 1.8948C12.9166 1.70239 12.5 1.94295 12.5 2.32783V11.4232C12.5 11.6019 12.5953 11.7669 12.75 11.8562L20.6269 16.4048C20.9603 16.5973 21.377 16.3567 21.377 15.9718V8.02945Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.125 18.1361C20.4584 17.9437 20.4584 17.4625 20.1251 17.2701L12.249 12.7225C12.0943 12.6331 11.9037 12.6331 11.749 12.7225L3.87308 17.27C3.53974 17.4625 3.53977 17.9437 3.87313 18.1361L10.7501 22.1056C11.5235 22.5521 12.4764 22.5521 13.2499 22.1055L20.125 18.1361Z\"\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,oPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8QACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","Icon3dBoxBottom","props","React","CentralIconBase","Icon3dBoxBottom_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const Icon3dBoxTop: FC<CentralIconBaseProps>;
4
+ export default Icon3dBoxTop;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var C=Object.defineProperty;var B=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})},a=(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=B(o,n))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>a(C({},"__esModule",{value:!0}),r);var v={};P(v,{Icon3dBoxTop:()=>i,default:()=>g});module.exports=d(v);var e=m(require("react"));var f=m(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"),i=r=>e.default.createElement(c,{...r},e.default.createElement(p.Path,{d:"M11.25 12.1437C11.4047 12.233 11.5 12.3981 11.5 12.5767V21.6721C11.5 22.057 11.0834 22.2976 10.75 22.1052L3.87325 18.1357C3.09963 17.6891 2.62305 16.8638 2.62305 15.9705V8.02819C2.62305 7.64327 3.03975 7.40271 3.37308 7.59519L11.25 12.1437Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M21.377 15.9705C21.377 16.8638 20.9004 17.6891 20.1268 18.1357L13.25 22.1052C12.9166 22.2976 12.5 22.057 12.5 21.6721V12.5767C12.5 12.3981 12.5953 12.233 12.75 12.1437L20.6269 7.59519C20.9603 7.40271 21.377 7.64327 21.377 8.02819V15.9705Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M20.125 5.86386C20.4584 6.05631 20.4584 6.53742 20.1251 6.72988L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72992C3.53974 6.53745 3.53977 6.05631 3.87313 5.86388L10.7501 1.89433C11.5235 1.44786 12.4764 1.4479 13.2499 1.89445L20.125 5.86386Z",fill:"currentColor"})),g=i;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=\"M11.25 12.1437C11.4047 12.233 11.5 12.3981 11.5 12.5767V21.6721C11.5 22.057 11.0834 22.2976 10.75 22.1052L3.87325 18.1357C3.09963 17.6891 2.62305 16.8638 2.62305 15.9705V8.02819C2.62305 7.64327 3.03975 7.40271 3.37308 7.59519L11.25 12.1437Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.377 15.9705C21.377 16.8638 20.9004 17.6891 20.1268 18.1357L13.25 22.1052C12.9166 22.2976 12.5 22.057 12.5 21.6721V12.5767C12.5 12.3981 12.5953 12.233 12.75 12.1437L20.6269 7.59519C20.9603 7.40271 21.377 7.64327 21.377 8.02819V15.9705Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.125 5.86386C20.4584 6.05631 20.4584 6.53742 20.1251 6.72988L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72992C3.53974 6.53745 3.53977 6.05631 3.87313 5.86388L10.7501 1.89433C11.5235 1.44786 12.4764 1.4479 13.2499 1.89445L20.125 5.86386Z\"\n fill=\"currentColor\"\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,mPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+QACF,KAAK,eACP,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 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 a=t=>o.createElement(e,{...t},o.createElement(n,{d:"M11.25 12.1437C11.4047 12.233 11.5 12.3981 11.5 12.5767V21.6721C11.5 22.057 11.0834 22.2976 10.75 22.1052L3.87325 18.1357C3.09963 17.6891 2.62305 16.8638 2.62305 15.9705V8.02819C2.62305 7.64327 3.03975 7.40271 3.37308 7.59519L11.25 12.1437Z",fill:"currentColor"}),o.createElement(n,{d:"M21.377 15.9705C21.377 16.8638 20.9004 17.6891 20.1268 18.1357L13.25 22.1052C12.9166 22.2976 12.5 22.057 12.5 21.6721V12.5767C12.5 12.3981 12.5953 12.233 12.75 12.1437L20.6269 7.59519C20.9603 7.40271 21.377 7.64327 21.377 8.02819V15.9705Z",fill:"currentColor"}),o.createElement(n,{d:"M20.125 5.86386C20.4584 6.05631 20.4584 6.53742 20.1251 6.72988L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72992C3.53974 6.53745 3.53977 6.05631 3.87313 5.86388L10.7501 1.89433C11.5235 1.44786 12.4764 1.4479 13.2499 1.89445L20.125 5.86386Z",fill:"currentColor"})),L=a;export{a as Icon3dBoxTop,L 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=\"M11.25 12.1437C11.4047 12.233 11.5 12.3981 11.5 12.5767V21.6721C11.5 22.057 11.0834 22.2976 10.75 22.1052L3.87325 18.1357C3.09963 17.6891 2.62305 16.8638 2.62305 15.9705V8.02819C2.62305 7.64327 3.03975 7.40271 3.37308 7.59519L11.25 12.1437Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.377 15.9705C21.377 16.8638 20.9004 17.6891 20.1268 18.1357L13.25 22.1052C12.9166 22.2976 12.5 22.057 12.5 21.6721V12.5767C12.5 12.3981 12.5953 12.233 12.75 12.1437L20.6269 7.59519C20.9603 7.40271 21.377 7.64327 21.377 8.02819V15.9705Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.125 5.86386C20.4584 6.05631 20.4584 6.53742 20.1251 6.72988L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72992C3.53974 6.53745 3.53977 6.05631 3.87313 5.86388L10.7501 1.89433C11.5235 1.44786 12.4764 1.4479 13.2499 1.89445L20.125 5.86386Z\"\n fill=\"currentColor\"\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,mPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+QACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","Icon3dBoxTop","props","React","CentralIconBase","Icon3dBoxTop_default"]}
package/README.md CHANGED
@@ -300,6 +300,8 @@ Below is a complete list of available icons:
300
300
 
301
301
  ### Augmented Reality
302
302
 
303
+ - Icon3dBoxBottom
304
+ - Icon3dBoxTop
303
305
  - Icon3dSphere
304
306
  - IconAr
305
307
  - IconArCube1
@@ -1,5 +1,33 @@
1
1
  {
2
2
  "data": [
3
+ {
4
+ "category": "Augmented Reality",
5
+ "svg": "<path d=\"M11.25 11.8562C11.4047 11.7669 11.5 11.6019 11.5 11.4232V2.32783C11.5 1.94295 11.0834 1.70239 10.75 1.8948L3.87325 5.86427C3.09963 6.31082 2.62305 7.13621 2.62305 8.02945V15.9718C2.62305 16.3567 3.03975 16.5973 3.37308 16.4048L11.25 11.8562Z\" fill=\"currentColor\"/><path d=\"M21.377 8.02945C21.377 7.13621 20.9004 6.31082 20.1268 5.86427L13.25 1.8948C12.9166 1.70239 12.5 1.94295 12.5 2.32783V11.4232C12.5 11.6019 12.5953 11.7669 12.75 11.8562L20.6269 16.4048C20.9603 16.5973 21.377 16.3567 21.377 15.9718V8.02945Z\" fill=\"currentColor\"/><path d=\"M20.125 18.1361C20.4584 17.9437 20.4584 17.4625 20.1251 17.2701L12.249 12.7225C12.0943 12.6331 11.9037 12.6331 11.749 12.7225L3.87308 17.27C3.53974 17.4625 3.53977 17.9437 3.87313 18.1361L10.7501 22.1056C11.5235 22.5521 12.4764 22.5521 13.2499 22.1055L20.125 18.1361Z\" fill=\"currentColor\"/>",
6
+ "iconName": "3d-box-bottom, shaders, model, room",
7
+ "variant": {
8
+ "join": "round",
9
+ "filled": "on",
10
+ "radius": "2",
11
+ "stroke": "1"
12
+ },
13
+ "createdAt": "2025-08-29T06:00:20.162384+00:00",
14
+ "packageName": "round-filled-radius-2-stroke-1",
15
+ "componentName": "Icon3dBoxBottom"
16
+ },
17
+ {
18
+ "category": "Augmented Reality",
19
+ "svg": "<path d=\"M11.25 12.1437C11.4047 12.233 11.5 12.3981 11.5 12.5767V21.6721C11.5 22.057 11.0834 22.2976 10.75 22.1052L3.87325 18.1357C3.09963 17.6891 2.62305 16.8638 2.62305 15.9705V8.02819C2.62305 7.64327 3.03975 7.40271 3.37308 7.59519L11.25 12.1437Z\" fill=\"currentColor\"/><path d=\"M21.377 15.9705C21.377 16.8638 20.9004 17.6891 20.1268 18.1357L13.25 22.1052C12.9166 22.2976 12.5 22.057 12.5 21.6721V12.5767C12.5 12.3981 12.5953 12.233 12.75 12.1437L20.6269 7.59519C20.9603 7.40271 21.377 7.64327 21.377 8.02819V15.9705Z\" fill=\"currentColor\"/><path d=\"M20.125 5.86386C20.4584 6.05631 20.4584 6.53742 20.1251 6.72988L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72992C3.53974 6.53745 3.53977 6.05631 3.87313 5.86388L10.7501 1.89433C11.5235 1.44786 12.4764 1.4479 13.2499 1.89445L20.125 5.86386Z\" fill=\"currentColor\"/>",
20
+ "iconName": "3d-box-top, shaders, model, cube, ar",
21
+ "variant": {
22
+ "join": "round",
23
+ "filled": "on",
24
+ "radius": "2",
25
+ "stroke": "1"
26
+ },
27
+ "createdAt": "2025-08-28T10:30:32.636072+00:00",
28
+ "packageName": "round-filled-radius-2-stroke-1",
29
+ "componentName": "Icon3dBoxTop"
30
+ },
3
31
  {
4
32
  "category": "Augmented Reality",
5
33
  "svg": "<path d=\"M9.50005 12.0001C9.50005 8.99379 9.83293 6.29012 10.3611 4.35344C10.6262 3.38151 10.9329 2.63112 11.2525 2.13544C11.2784 2.09535 11.3038 2.05765 11.3288 2.02223C11.5506 2.00753 11.7744 2.00006 12 2.00006C17.5228 2.00006 22 6.47721 22 12.0001C22 12.2256 21.9925 12.4495 21.9778 12.6713C21.9424 12.6963 21.9047 12.7217 21.8647 12.7476C21.369 13.0672 20.6186 13.3739 19.6467 13.639C17.71 14.1672 15.0063 14.5001 12.0001 14.5001C11.1648 14.5001 10.3528 14.4744 9.5742 14.4259C9.52575 13.6473 9.50005 12.8354 9.50005 12.0001Z\" fill=\"currentColor\"/><path d=\"M21.8166 13.9165C21.2818 14.1762 20.636 14.4057 19.9098 14.6038C17.8652 15.1614 15.0689 15.5001 12.0001 15.5001C11.1954 15.5001 10.4095 15.4768 9.65101 15.4324C9.79758 17.0464 10.0442 18.4846 10.3611 19.6467C10.6262 20.6186 10.9329 21.369 11.2525 21.8647C11.2784 21.9048 11.3038 21.9425 11.3288 21.9779C11.5507 21.9926 11.7745 22.0001 12 22.0001C16.8674 22.0001 20.9226 18.5225 21.8166 13.9165Z\" fill=\"currentColor\"/><path d=\"M10.0837 21.8166C9.82394 21.2819 9.59442 20.636 9.39635 19.9098C9.05099 18.6435 8.7896 17.0887 8.64065 15.3594C6.91139 15.2105 5.35665 14.9491 4.09032 14.6038C3.36406 14.4057 2.71818 14.1762 2.18343 13.9164C2.957 17.9023 6.0978 21.0431 10.0837 21.8166Z\" fill=\"currentColor\"/><path d=\"M2.02217 12.6712C2.00747 12.4494 2 12.2256 2 12.0001C2 7.13263 5.47757 3.07742 10.0837 2.18348C9.82393 2.71823 9.59441 3.36408 9.39635 4.09032C8.83875 6.13485 8.50005 8.93118 8.50005 12.0001C8.50005 12.8047 8.52334 13.5906 8.56774 14.3491C6.95371 14.2025 5.5155 13.9559 4.35344 13.639C3.38151 13.3739 2.63112 13.0672 2.13544 12.7476C2.09533 12.7217 2.05761 12.6963 2.02217 12.6712Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export type CentralIconName =
2
+ | "Icon3dBoxBottom"
3
+ | "Icon3dBoxTop"
2
4
  | "Icon3dSphere"
3
5
  | "Icon4k"
4
6
  | "IconAddKeyframe"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-2-stroke-1",
3
- "version": "0.0.59",
3
+ "version": "0.0.61",
4
4
  "style": "round-filled-radius-2-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-stroke-1/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": 1512,
14
+ "totalIcons": 1514,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 32,
@@ -178,8 +178,10 @@
178
178
  ]
179
179
  },
180
180
  "Augmented Reality": {
181
- "count": 15,
181
+ "count": 17,
182
182
  "icons": [
183
+ "Icon3dBoxBottom",
184
+ "Icon3dBoxTop",
183
185
  "Icon3dSphere",
184
186
  "IconAr",
185
187
  "IconArCube1",
@@ -1702,6 +1704,8 @@
1702
1704
  }
1703
1705
  },
1704
1706
  "iconAliases": {
1707
+ "Icon3dBoxBottom": "3d-box-bottom, shaders, model, room",
1708
+ "Icon3dBoxTop": "3d-box-top, shaders, model, cube, ar",
1705
1709
  "Icon3dSphere": "3d-sphere",
1706
1710
  "Icon4k": "4k",
1707
1711
  "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-filled-radius-2-stroke-1",
21
+ version: "0.0.61",
22
+ }),
19
23
  signal: controller.signal,
20
24
  });
21
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-icons-react-native/round-filled-radius-2-stroke-1",
3
- "version": "0.0.59",
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,19 @@
1
1
  {
2
2
  "data": [
3
+ {
4
+ "svg": "<Path d=\"M11.25 11.8562C11.4047 11.7669 11.5 11.6019 11.5 11.4232V2.32783C11.5 1.94295 11.0834 1.70239 10.75 1.8948L3.87325 5.86427C3.09963 6.31082 2.62305 7.13621 2.62305 8.02945V15.9718C2.62305 16.3567 3.03975 16.5973 3.37308 16.4048L11.25 11.8562Z\" fill=\"currentColor\"/><Path d=\"M21.377 8.02945C21.377 7.13621 20.9004 6.31082 20.1268 5.86427L13.25 1.8948C12.9166 1.70239 12.5 1.94295 12.5 2.32783V11.4232C12.5 11.6019 12.5953 11.7669 12.75 11.8562L20.6269 16.4048C20.9603 16.5973 21.377 16.3567 21.377 15.9718V8.02945Z\" fill=\"currentColor\"/><Path d=\"M20.125 18.1361C20.4584 17.9437 20.4584 17.4625 20.1251 17.2701L12.249 12.7225C12.0943 12.6331 11.9037 12.6331 11.749 12.7225L3.87308 17.27C3.53974 17.4625 3.53977 17.9437 3.87313 18.1361L10.7501 22.1056C11.5235 22.5521 12.4764 22.5521 13.2499 22.1055L20.125 18.1361Z\" fill=\"currentColor\"/>",
5
+ "tags": "Path",
6
+ "componentName": "Icon3dBoxBottom",
7
+ "iconName": "3d-box-bottom, shaders, model, room",
8
+ "pathname": "src/Icon3dBoxBottom"
9
+ },
10
+ {
11
+ "svg": "<Path d=\"M11.25 12.1437C11.4047 12.233 11.5 12.3981 11.5 12.5767V21.6721C11.5 22.057 11.0834 22.2976 10.75 22.1052L3.87325 18.1357C3.09963 17.6891 2.62305 16.8638 2.62305 15.9705V8.02819C2.62305 7.64327 3.03975 7.40271 3.37308 7.59519L11.25 12.1437Z\" fill=\"currentColor\"/><Path d=\"M21.377 15.9705C21.377 16.8638 20.9004 17.6891 20.1268 18.1357L13.25 22.1052C12.9166 22.2976 12.5 22.057 12.5 21.6721V12.5767C12.5 12.3981 12.5953 12.233 12.75 12.1437L20.6269 7.59519C20.9603 7.40271 21.377 7.64327 21.377 8.02819V15.9705Z\" fill=\"currentColor\"/><Path d=\"M20.125 5.86386C20.4584 6.05631 20.4584 6.53742 20.1251 6.72988L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72992C3.53974 6.53745 3.53977 6.05631 3.87313 5.86388L10.7501 1.89433C11.5235 1.44786 12.4764 1.4479 13.2499 1.89445L20.125 5.86386Z\" fill=\"currentColor\"/>",
12
+ "tags": "Path",
13
+ "componentName": "Icon3dBoxTop",
14
+ "iconName": "3d-box-top, shaders, model, cube, ar",
15
+ "pathname": "src/Icon3dBoxTop"
16
+ },
3
17
  {
4
18
  "svg": "<Path d=\"M9.50005 12.0001C9.50005 8.99379 9.83293 6.29012 10.3611 4.35344C10.6262 3.38151 10.9329 2.63112 11.2525 2.13544C11.2784 2.09535 11.3038 2.05765 11.3288 2.02223C11.5506 2.00753 11.7744 2.00006 12 2.00006C17.5228 2.00006 22 6.47721 22 12.0001C22 12.2256 21.9925 12.4495 21.9778 12.6713C21.9424 12.6963 21.9047 12.7217 21.8647 12.7476C21.369 13.0672 20.6186 13.3739 19.6467 13.639C17.71 14.1672 15.0063 14.5001 12.0001 14.5001C11.1648 14.5001 10.3528 14.4744 9.5742 14.4259C9.52575 13.6473 9.50005 12.8354 9.50005 12.0001Z\" fill=\"currentColor\"/><Path d=\"M21.8166 13.9165C21.2818 14.1762 20.636 14.4057 19.9098 14.6038C17.8652 15.1614 15.0689 15.5001 12.0001 15.5001C11.1954 15.5001 10.4095 15.4768 9.65101 15.4324C9.79758 17.0464 10.0442 18.4846 10.3611 19.6467C10.6262 20.6186 10.9329 21.369 11.2525 21.8647C11.2784 21.9048 11.3038 21.9425 11.3288 21.9779C11.5507 21.9926 11.7745 22.0001 12 22.0001C16.8674 22.0001 20.9226 18.5225 21.8166 13.9165Z\" fill=\"currentColor\"/><Path d=\"M10.0837 21.8166C9.82394 21.2819 9.59442 20.636 9.39635 19.9098C9.05099 18.6435 8.7896 17.0887 8.64065 15.3594C6.91139 15.2105 5.35665 14.9491 4.09032 14.6038C3.36406 14.4057 2.71818 14.1762 2.18343 13.9164C2.957 17.9023 6.0978 21.0431 10.0837 21.8166Z\" fill=\"currentColor\"/><Path d=\"M2.02217 12.6712C2.00747 12.4494 2 12.2256 2 12.0001C2 7.13263 5.47757 3.07742 10.0837 2.18348C9.82393 2.71823 9.59441 3.36408 9.39635 4.09032C8.83875 6.13485 8.50005 8.93118 8.50005 12.0001C8.50005 12.8047 8.52334 13.5906 8.56774 14.3491C6.95371 14.2025 5.5155 13.9559 4.35344 13.639C3.38151 13.3739 2.63112 13.0672 2.13544 12.7476C2.09533 12.7217 2.05761 12.6963 2.02217 12.6712Z\" fill=\"currentColor\"/>",
5
19
  "tags": "Path",