@central-icons-react-native/round-filled-radius-2-stroke-1.5 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 11.7114C11.1547 11.6221 11.25 11.457 11.25 11.2784V2.18306C11.25 1.79816 10.8333 1.5576 10.5 1.75004L3.74807 5.64819C2.89721 6.13943 2.37305 7.04728 2.37305 8.02977V15.826C2.37305 16.2109 2.78971 16.4515 3.12304 16.259L11 11.7114Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M21.627 8.02977C21.627 7.04728 21.1028 6.13943 20.2519 5.64819L13.5 1.75004C13.1667 1.5576 12.75 1.79816 12.75 2.18306V11.2784C12.75 11.457 12.8453 11.6221 13 11.7114L20.877 16.259C21.2103 16.4515 21.627 16.2109 21.627 15.826V8.02977Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M20.1261 18.4239C20.4594 18.2314 20.4594 17.7503 20.1261 17.5579L12.25 13.0102C12.0953 12.9209 11.9047 12.9209 11.75 13.0102L3.87307 17.5579C3.53973 17.7503 3.53973 18.2314 3.87307 18.4239L10.6249 22.322C11.4758 22.8132 12.5242 22.8132 13.375 22.3219L20.1261 18.4239Z",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.7114C11.1547 11.6221 11.25 11.457 11.25 11.2784V2.18306C11.25 1.79816 10.8333 1.5576 10.5 1.75004L3.74807 5.64819C2.89721 6.13943 2.37305 7.04728 2.37305 8.02977V15.826C2.37305 16.2109 2.78971 16.4515 3.12304 16.259L11 11.7114Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.627 8.02977C21.627 7.04728 21.1028 6.13943 20.2519 5.64819L13.5 1.75004C13.1667 1.5576 12.75 1.79816 12.75 2.18306V11.2784C12.75 11.457 12.8453 11.6221 13 11.7114L20.877 16.259C21.2103 16.4515 21.627 16.2109 21.627 15.826V8.02977Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1261 18.4239C20.4594 18.2314 20.4594 17.7503 20.1261 17.5579L12.25 13.0102C12.0953 12.9209 11.9047 12.9209 11.75 13.0102L3.87307 17.5579C3.53973 17.7503 3.53973 18.2314 3.87307 18.4239L10.6249 22.322C11.4758 22.8132 12.5242 22.8132 13.375 22.3219L20.1261 18.4239Z\"\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,6OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6OACF,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 11.7114C11.1547 11.6221 11.25 11.457 11.25 11.2784V2.18306C11.25 1.79816 10.8333 1.5576 10.5 1.75004L3.74807 5.64819C2.89721 6.13943 2.37305 7.04728 2.37305 8.02977V15.826C2.37305 16.2109 2.78971 16.4515 3.12304 16.259L11 11.7114Z",fill:"currentColor"}),o.createElement(n,{d:"M21.627 8.02977C21.627 7.04728 21.1028 6.13943 20.2519 5.64819L13.5 1.75004C13.1667 1.5576 12.75 1.79816 12.75 2.18306V11.2784C12.75 11.457 12.8453 11.6221 13 11.7114L20.877 16.259C21.2103 16.4515 21.627 16.2109 21.627 15.826V8.02977Z",fill:"currentColor"}),o.createElement(n,{d:"M20.1261 18.4239C20.4594 18.2314 20.4594 17.7503 20.1261 17.5579L12.25 13.0102C12.0953 12.9209 11.9047 12.9209 11.75 13.0102L3.87307 17.5579C3.53973 17.7503 3.53973 18.2314 3.87307 18.4239L10.6249 22.322C11.4758 22.8132 12.5242 22.8132 13.375 22.3219L20.1261 18.4239Z",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.7114C11.1547 11.6221 11.25 11.457 11.25 11.2784V2.18306C11.25 1.79816 10.8333 1.5576 10.5 1.75004L3.74807 5.64819C2.89721 6.13943 2.37305 7.04728 2.37305 8.02977V15.826C2.37305 16.2109 2.78971 16.4515 3.12304 16.259L11 11.7114Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.627 8.02977C21.627 7.04728 21.1028 6.13943 20.2519 5.64819L13.5 1.75004C13.1667 1.5576 12.75 1.79816 12.75 2.18306V11.2784C12.75 11.457 12.8453 11.6221 13 11.7114L20.877 16.259C21.2103 16.4515 21.627 16.2109 21.627 15.826V8.02977Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1261 18.4239C20.4594 18.2314 20.4594 17.7503 20.1261 17.5579L12.25 13.0102C12.0953 12.9209 11.9047 12.9209 11.75 13.0102L3.87307 17.5579C3.53973 17.7503 3.53973 18.2314 3.87307 18.4239L10.6249 22.322C11.4758 22.8132 12.5242 22.8132 13.375 22.3219L20.1261 18.4239Z\"\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,6OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6OACF,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 12.2883C11.1547 12.3776 11.25 12.5427 11.25 12.7213V21.8166C11.25 22.2015 10.8333 22.4421 10.5 22.2496L3.74807 18.3515C2.89721 17.8603 2.37305 16.9524 2.37305 15.9699V8.17366C2.37305 7.78876 2.78971 7.54819 3.12304 7.74064L11 12.2883Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M21.627 15.9699C21.627 16.9524 21.1028 17.8603 20.2519 18.3515L13.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.74064C21.2103 7.5482 21.627 7.78876 21.627 8.17366V15.9699Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M20.1261 5.57581C20.4594 5.76826 20.4594 6.24936 20.1261 6.44181L12.25 10.9895C12.0953 11.0788 11.9047 11.0788 11.75 10.9895L3.87307 6.44183C3.53973 6.24938 3.53973 5.76825 3.87307 5.5758L10.6249 1.67768C11.4758 1.18644 12.5242 1.18646 13.375 1.67775L20.1261 5.57581Z",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 12.2883C11.1547 12.3776 11.25 12.5427 11.25 12.7213V21.8166C11.25 22.2015 10.8333 22.4421 10.5 22.2496L3.74807 18.3515C2.89721 17.8603 2.37305 16.9524 2.37305 15.9699V8.17366C2.37305 7.78876 2.78971 7.54819 3.12304 7.74064L11 12.2883Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.627 15.9699C21.627 16.9524 21.1028 17.8603 20.2519 18.3515L13.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.74064C21.2103 7.5482 21.627 7.78876 21.627 8.17366V15.9699Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1261 5.57581C20.4594 5.76826 20.4594 6.24936 20.1261 6.44181L12.25 10.9895C12.0953 11.0788 11.9047 11.0788 11.75 10.9895L3.87307 6.44183C3.53973 6.24938 3.53973 5.76825 3.87307 5.5758L10.6249 1.67768C11.4758 1.18644 12.5242 1.18646 13.375 1.67775L20.1261 5.57581Z\"\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,iPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8QACF,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 12.2883C11.1547 12.3776 11.25 12.5427 11.25 12.7213V21.8166C11.25 22.2015 10.8333 22.4421 10.5 22.2496L3.74807 18.3515C2.89721 17.8603 2.37305 16.9524 2.37305 15.9699V8.17366C2.37305 7.78876 2.78971 7.54819 3.12304 7.74064L11 12.2883Z",fill:"currentColor"}),o.createElement(n,{d:"M21.627 15.9699C21.627 16.9524 21.1028 17.8603 20.2519 18.3515L13.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.74064C21.2103 7.5482 21.627 7.78876 21.627 8.17366V15.9699Z",fill:"currentColor"}),o.createElement(n,{d:"M20.1261 5.57581C20.4594 5.76826 20.4594 6.24936 20.1261 6.44181L12.25 10.9895C12.0953 11.0788 11.9047 11.0788 11.75 10.9895L3.87307 6.44183C3.53973 6.24938 3.53973 5.76825 3.87307 5.5758L10.6249 1.67768C11.4758 1.18644 12.5242 1.18646 13.375 1.67775L20.1261 5.57581Z",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 12.2883C11.1547 12.3776 11.25 12.5427 11.25 12.7213V21.8166C11.25 22.2015 10.8333 22.4421 10.5 22.2496L3.74807 18.3515C2.89721 17.8603 2.37305 16.9524 2.37305 15.9699V8.17366C2.37305 7.78876 2.78971 7.54819 3.12304 7.74064L11 12.2883Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.627 15.9699C21.627 16.9524 21.1028 17.8603 20.2519 18.3515L13.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.74064C21.2103 7.5482 21.627 7.78876 21.627 8.17366V15.9699Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.1261 5.57581C20.4594 5.76826 20.4594 6.24936 20.1261 6.44181L12.25 10.9895C12.0953 11.0788 11.9047 11.0788 11.75 10.9895L3.87307 6.44183C3.53973 6.24938 3.53973 5.76825 3.87307 5.5758L10.6249 1.67768C11.4758 1.18644 12.5242 1.18646 13.375 1.67775L20.1261 5.57581Z\"\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,iPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8QACF,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 11.7114C11.1547 11.6221 11.25 11.457 11.25 11.2784V2.18306C11.25 1.79816 10.8333 1.5576 10.5 1.75004L3.74807 5.64819C2.89721 6.13943 2.37305 7.04728 2.37305 8.02977V15.826C2.37305 16.2109 2.78971 16.4515 3.12304 16.259L11 11.7114Z\" fill=\"currentColor\"/><path d=\"M21.627 8.02977C21.627 7.04728 21.1028 6.13943 20.2519 5.64819L13.5 1.75004C13.1667 1.5576 12.75 1.79816 12.75 2.18306V11.2784C12.75 11.457 12.8453 11.6221 13 11.7114L20.877 16.259C21.2103 16.4515 21.627 16.2109 21.627 15.826V8.02977Z\" fill=\"currentColor\"/><path d=\"M20.1261 18.4239C20.4594 18.2314 20.4594 17.7503 20.1261 17.5579L12.25 13.0102C12.0953 12.9209 11.9047 12.9209 11.75 13.0102L3.87307 17.5579C3.53973 17.7503 3.53973 18.2314 3.87307 18.4239L10.6249 22.322C11.4758 22.8132 12.5242 22.8132 13.375 22.3219L20.1261 18.4239Z\" fill=\"currentColor\"/>",
6
+ "iconName": "3d-box-bottom, shaders, model, room",
7
+ "variant": {
8
+ "join": "round",
9
+ "filled": "on",
10
+ "radius": "2",
11
+ "stroke": "1.5"
12
+ },
13
+ "createdAt": "2025-08-29T06:00:20.162384+00:00",
14
+ "packageName": "round-filled-radius-2-stroke-1.5",
15
+ "componentName": "Icon3dBoxBottom"
16
+ },
17
+ {
18
+ "category": "Augmented Reality",
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.2496L3.74807 18.3515C2.89721 17.8603 2.37305 16.9524 2.37305 15.9699V8.17366C2.37305 7.78876 2.78971 7.54819 3.12304 7.74064L11 12.2883Z\" fill=\"currentColor\"/><path d=\"M21.627 15.9699C21.627 16.9524 21.1028 17.8603 20.2519 18.3515L13.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.74064C21.2103 7.5482 21.627 7.78876 21.627 8.17366V15.9699Z\" fill=\"currentColor\"/><path d=\"M20.1261 5.57581C20.4594 5.76826 20.4594 6.24936 20.1261 6.44181L12.25 10.9895C12.0953 11.0788 11.9047 11.0788 11.75 10.9895L3.87307 6.44183C3.53973 6.24938 3.53973 5.76825 3.87307 5.5758L10.6249 1.67768C11.4758 1.18644 12.5242 1.18646 13.375 1.67775L20.1261 5.57581Z\" 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.5"
26
+ },
27
+ "createdAt": "2025-08-28T10:30:32.636072+00:00",
28
+ "packageName": "round-filled-radius-2-stroke-1.5",
29
+ "componentName": "Icon3dBoxTop"
30
+ },
3
31
  {
4
32
  "category": "Augmented Reality",
5
33
  "svg": "<path d=\"M9.75005 12.0001C9.75005 9.00945 10.0815 6.32893 10.6023 4.41922C10.8642 3.45898 11.1627 2.73613 11.4626 2.27092C11.5335 2.16105 11.5984 2.07431 11.6567 2.00584C11.7706 2.002 11.8851 2.00006 12 2.00006C17.5228 2.00006 22 6.47721 22 12.0001C22 12.115 21.9981 12.2295 21.9942 12.3435C21.9258 12.4018 21.839 12.4666 21.7292 12.5375C21.264 12.8374 20.5411 13.1359 19.5809 13.3978C17.6712 13.9186 14.9907 14.2501 12.0001 14.2501C11.2482 14.2501 10.516 14.2291 9.81064 14.1895C9.771 13.4841 9.75005 12.7519 9.75005 12.0001Z\" fill=\"currentColor\"/><path d=\"M21.752 14.223C21.2351 14.4582 20.6344 14.6653 19.9756 14.8449C17.9041 15.4099 15.0846 15.7501 12.0001 15.7501C11.2933 15.7501 10.6005 15.7322 9.9274 15.6979C10.0752 17.1822 10.3086 18.5041 10.6023 19.5809C10.8642 20.5411 11.1627 21.264 11.4626 21.7292C11.5335 21.8391 11.5984 21.9258 11.6567 21.9943C11.7706 21.9981 11.8851 22.0001 12 22.0001C16.7588 22.0001 20.7413 18.6759 21.752 14.223Z\" fill=\"currentColor\"/><path d=\"M9.77716 21.7521C9.54193 21.2352 9.33486 20.6345 9.15516 19.9756C8.81932 18.7442 8.56293 17.2485 8.4102 15.5899C6.75163 15.4372 5.25593 15.1808 4.02454 14.8449C3.36563 14.6652 2.76491 14.4582 2.24795 14.2229C3.09643 17.961 6.03905 20.9036 9.77716 21.7521Z\" fill=\"currentColor\"/><path d=\"M2.00578 12.3434C2.00194 12.2294 2 12.115 2 12.0001C2 7.2412 5.32416 3.25874 9.77715 2.248C9.54193 2.76495 9.33486 3.36565 9.15516 4.02454C8.5902 6.09604 8.25005 8.91552 8.25005 12.0001C8.25005 12.7068 8.26791 13.3996 8.30224 14.0727C6.81789 13.9249 5.49602 13.6915 4.41922 13.3978C3.45898 13.1359 2.73613 12.8374 2.27092 12.5375C2.16102 12.4666 2.07426 12.4017 2.00578 12.3434Z\" 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.5",
3
- "version": "0.0.59",
3
+ "version": "0.0.61",
4
4
  "style": "round-filled-radius-2-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-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": 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.5",
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.5",
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 11.7114C11.1547 11.6221 11.25 11.457 11.25 11.2784V2.18306C11.25 1.79816 10.8333 1.5576 10.5 1.75004L3.74807 5.64819C2.89721 6.13943 2.37305 7.04728 2.37305 8.02977V15.826C2.37305 16.2109 2.78971 16.4515 3.12304 16.259L11 11.7114Z\" fill=\"currentColor\"/><Path d=\"M21.627 8.02977C21.627 7.04728 21.1028 6.13943 20.2519 5.64819L13.5 1.75004C13.1667 1.5576 12.75 1.79816 12.75 2.18306V11.2784C12.75 11.457 12.8453 11.6221 13 11.7114L20.877 16.259C21.2103 16.4515 21.627 16.2109 21.627 15.826V8.02977Z\" fill=\"currentColor\"/><Path d=\"M20.1261 18.4239C20.4594 18.2314 20.4594 17.7503 20.1261 17.5579L12.25 13.0102C12.0953 12.9209 11.9047 12.9209 11.75 13.0102L3.87307 17.5579C3.53973 17.7503 3.53973 18.2314 3.87307 18.4239L10.6249 22.322C11.4758 22.8132 12.5242 22.8132 13.375 22.3219L20.1261 18.4239Z\" 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 12.2883C11.1547 12.3776 11.25 12.5427 11.25 12.7213V21.8166C11.25 22.2015 10.8333 22.4421 10.5 22.2496L3.74807 18.3515C2.89721 17.8603 2.37305 16.9524 2.37305 15.9699V8.17366C2.37305 7.78876 2.78971 7.54819 3.12304 7.74064L11 12.2883Z\" fill=\"currentColor\"/><Path d=\"M21.627 15.9699C21.627 16.9524 21.1028 17.8603 20.2519 18.3515L13.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.74064C21.2103 7.5482 21.627 7.78876 21.627 8.17366V15.9699Z\" fill=\"currentColor\"/><Path d=\"M20.1261 5.57581C20.4594 5.76826 20.4594 6.24936 20.1261 6.44181L12.25 10.9895C12.0953 11.0788 11.9047 11.0788 11.75 10.9895L3.87307 6.44183C3.53973 6.24938 3.53973 5.76825 3.87307 5.5758L10.6249 1.67768C11.4758 1.18644 12.5242 1.18646 13.375 1.67775L20.1261 5.57581Z\" 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.75005 12.0001C9.75005 9.00945 10.0815 6.32893 10.6023 4.41922C10.8642 3.45898 11.1627 2.73613 11.4626 2.27092C11.5335 2.16105 11.5984 2.07431 11.6567 2.00584C11.7706 2.002 11.8851 2.00006 12 2.00006C17.5228 2.00006 22 6.47721 22 12.0001C22 12.115 21.9981 12.2295 21.9942 12.3435C21.9258 12.4018 21.839 12.4666 21.7292 12.5375C21.264 12.8374 20.5411 13.1359 19.5809 13.3978C17.6712 13.9186 14.9907 14.2501 12.0001 14.2501C11.2482 14.2501 10.516 14.2291 9.81064 14.1895C9.771 13.4841 9.75005 12.7519 9.75005 12.0001Z\" fill=\"currentColor\"/><Path d=\"M21.752 14.223C21.2351 14.4582 20.6344 14.6653 19.9756 14.8449C17.9041 15.4099 15.0846 15.7501 12.0001 15.7501C11.2933 15.7501 10.6005 15.7322 9.9274 15.6979C10.0752 17.1822 10.3086 18.5041 10.6023 19.5809C10.8642 20.5411 11.1627 21.264 11.4626 21.7292C11.5335 21.8391 11.5984 21.9258 11.6567 21.9943C11.7706 21.9981 11.8851 22.0001 12 22.0001C16.7588 22.0001 20.7413 18.6759 21.752 14.223Z\" fill=\"currentColor\"/><Path d=\"M9.77716 21.7521C9.54193 21.2352 9.33486 20.6345 9.15516 19.9756C8.81932 18.7442 8.56293 17.2485 8.4102 15.5899C6.75163 15.4372 5.25593 15.1808 4.02454 14.8449C3.36563 14.6652 2.76491 14.4582 2.24795 14.2229C3.09643 17.961 6.03905 20.9036 9.77716 21.7521Z\" fill=\"currentColor\"/><Path d=\"M2.00578 12.3434C2.00194 12.2294 2 12.115 2 12.0001C2 7.2412 5.32416 3.25874 9.77715 2.248C9.54193 2.76495 9.33486 3.36565 9.15516 4.02454C8.5902 6.09604 8.25005 8.91552 8.25005 12.0001C8.25005 12.7068 8.26791 13.3996 8.30224 14.0727C6.81789 13.9249 5.49602 13.6915 4.41922 13.3978C3.45898 13.1359 2.73613 12.8374 2.27092 12.5375C2.16102 12.4666 2.07426 12.4017 2.00578 12.3434Z\" fill=\"currentColor\"/>",
5
19
  "tags": "Path",