@central-icons-react-native/round-filled-radius-2-stroke-2 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:"M10.75 11.5673C10.9047 11.478 11 11.3129 11 11.1343V2.28987C11 1.90499 10.5834 1.66442 10.25 1.85684L3.84005 5.55696C2.91173 6.09283 2.33984 7.08328 2.33984 8.15516V15.5569C2.33984 15.9418 2.75651 16.1824 3.08985 15.9899L10.75 11.5673Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M21.6602 8.15516C21.6602 7.08328 21.0883 6.09283 20.1599 5.55696L13.75 1.85684C13.4166 1.66442 13 1.90499 13 2.28987V11.1343C13 11.3129 13.0953 11.478 13.25 11.5673L20.9102 15.9899C21.2435 16.1824 21.6602 15.9418 21.6602 15.5569V8.15516Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M19.9092 18.5883C20.2425 18.3959 20.2425 17.9148 19.9092 17.7223L12.25 13.2997C12.0953 13.2104 11.9047 13.2104 11.75 13.2997L4.08991 17.7223C3.75656 17.9148 3.75658 18.3959 4.08994 18.5884L10.5001 22.2886C11.4283 22.8244 12.5717 22.8243 13.4998 22.2885L19.9092 18.5883Z",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=\"M10.75 11.5673C10.9047 11.478 11 11.3129 11 11.1343V2.28987C11 1.90499 10.5834 1.66442 10.25 1.85684L3.84005 5.55696C2.91173 6.09283 2.33984 7.08328 2.33984 8.15516V15.5569C2.33984 15.9418 2.75651 16.1824 3.08985 15.9899L10.75 11.5673Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6602 8.15516C21.6602 7.08328 21.0883 6.09283 20.1599 5.55696L13.75 1.85684C13.4166 1.66442 13 1.90499 13 2.28987V11.1343C13 11.3129 13.0953 11.478 13.25 11.5673L20.9102 15.9899C21.2435 16.1824 21.6602 15.9418 21.6602 15.5569V8.15516Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.9092 18.5883C20.2425 18.3959 20.2425 17.9148 19.9092 17.7223L12.25 13.2997C12.0953 13.2104 11.9047 13.2104 11.75 13.2997L4.08991 17.7223C3.75656 17.9148 3.75658 18.3959 4.08994 18.5884L10.5001 22.2886C11.4283 22.8244 12.5717 22.8243 13.4998 22.2885L19.9092 18.5883Z\"\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,8OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gRACF,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:"M10.75 11.5673C10.9047 11.478 11 11.3129 11 11.1343V2.28987C11 1.90499 10.5834 1.66442 10.25 1.85684L3.84005 5.55696C2.91173 6.09283 2.33984 7.08328 2.33984 8.15516V15.5569C2.33984 15.9418 2.75651 16.1824 3.08985 15.9899L10.75 11.5673Z",fill:"currentColor"}),o.createElement(n,{d:"M21.6602 8.15516C21.6602 7.08328 21.0883 6.09283 20.1599 5.55696L13.75 1.85684C13.4166 1.66442 13 1.90499 13 2.28987V11.1343C13 11.3129 13.0953 11.478 13.25 11.5673L20.9102 15.9899C21.2435 16.1824 21.6602 15.9418 21.6602 15.5569V8.15516Z",fill:"currentColor"}),o.createElement(n,{d:"M19.9092 18.5883C20.2425 18.3959 20.2425 17.9148 19.9092 17.7223L12.25 13.2997C12.0953 13.2104 11.9047 13.2104 11.75 13.2997L4.08991 17.7223C3.75656 17.9148 3.75658 18.3959 4.08994 18.5884L10.5001 22.2886C11.4283 22.8244 12.5717 22.8243 13.4998 22.2885L19.9092 18.5883Z",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=\"M10.75 11.5673C10.9047 11.478 11 11.3129 11 11.1343V2.28987C11 1.90499 10.5834 1.66442 10.25 1.85684L3.84005 5.55696C2.91173 6.09283 2.33984 7.08328 2.33984 8.15516V15.5569C2.33984 15.9418 2.75651 16.1824 3.08985 15.9899L10.75 11.5673Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6602 8.15516C21.6602 7.08328 21.0883 6.09283 20.1599 5.55696L13.75 1.85684C13.4166 1.66442 13 1.90499 13 2.28987V11.1343C13 11.3129 13.0953 11.478 13.25 11.5673L20.9102 15.9899C21.2435 16.1824 21.6602 15.9418 21.6602 15.5569V8.15516Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.9092 18.5883C20.2425 18.3959 20.2425 17.9148 19.9092 17.7223L12.25 13.2997C12.0953 13.2104 11.9047 13.2104 11.75 13.2997L4.08991 17.7223C3.75656 17.9148 3.75658 18.3959 4.08994 18.5884L10.5001 22.2886C11.4283 22.8244 12.5717 22.8243 13.4998 22.2885L19.9092 18.5883Z\"\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,8OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gRACF,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:"M10.75 12.4328C10.9047 12.5221 11 12.6872 11 12.8658V21.7102C11 22.0951 10.5834 22.3357 10.25 22.1433L3.84005 18.4431C2.91173 17.9073 2.33984 16.9168 2.33984 15.8449V8.44318C2.33984 8.05828 2.75651 7.81771 3.08985 8.01017L10.75 12.4328Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M21.6602 15.8449C21.6602 16.9168 21.0883 17.9073 20.1599 18.4431L13.75 22.1433C13.4166 22.3357 13 22.0951 13 21.7102V12.8658C13 12.6872 13.0953 12.5221 13.25 12.4328L20.9102 8.01017C21.2435 7.81771 21.6602 8.05828 21.6602 8.44318V15.8449Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M19.9092 5.41175C20.2425 5.60418 20.2425 6.0853 19.9092 6.27777L12.25 10.7004C12.0953 10.7897 11.9047 10.7897 11.75 10.7004L4.08991 6.27778C3.75656 6.08532 3.75658 5.60417 4.08994 5.41173L10.5001 1.7115C11.4283 1.17573 12.5717 1.17576 13.4998 1.71157L19.9092 5.41175Z",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=\"M10.75 12.4328C10.9047 12.5221 11 12.6872 11 12.8658V21.7102C11 22.0951 10.5834 22.3357 10.25 22.1433L3.84005 18.4431C2.91173 17.9073 2.33984 16.9168 2.33984 15.8449V8.44318C2.33984 8.05828 2.75651 7.81771 3.08985 8.01017L10.75 12.4328Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6602 15.8449C21.6602 16.9168 21.0883 17.9073 20.1599 18.4431L13.75 22.1433C13.4166 22.3357 13 22.0951 13 21.7102V12.8658C13 12.6872 13.0953 12.5221 13.25 12.4328L20.9102 8.01017C21.2435 7.81771 21.6602 8.05828 21.6602 8.44318V15.8449Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.9092 5.41175C20.2425 5.60418 20.2425 6.0853 19.9092 6.27777L12.25 10.7004C12.0953 10.7897 11.9047 10.7897 11.75 10.7004L4.08991 6.27778C3.75656 6.08532 3.75658 5.60417 4.08994 5.41173L10.5001 1.7115C11.4283 1.17573 12.5717 1.17576 13.4998 1.71157L19.9092 5.41175Z\"\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,+OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iPACF,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:"M10.75 12.4328C10.9047 12.5221 11 12.6872 11 12.8658V21.7102C11 22.0951 10.5834 22.3357 10.25 22.1433L3.84005 18.4431C2.91173 17.9073 2.33984 16.9168 2.33984 15.8449V8.44318C2.33984 8.05828 2.75651 7.81771 3.08985 8.01017L10.75 12.4328Z",fill:"currentColor"}),o.createElement(n,{d:"M21.6602 15.8449C21.6602 16.9168 21.0883 17.9073 20.1599 18.4431L13.75 22.1433C13.4166 22.3357 13 22.0951 13 21.7102V12.8658C13 12.6872 13.0953 12.5221 13.25 12.4328L20.9102 8.01017C21.2435 7.81771 21.6602 8.05828 21.6602 8.44318V15.8449Z",fill:"currentColor"}),o.createElement(n,{d:"M19.9092 5.41175C20.2425 5.60418 20.2425 6.0853 19.9092 6.27777L12.25 10.7004C12.0953 10.7897 11.9047 10.7897 11.75 10.7004L4.08991 6.27778C3.75656 6.08532 3.75658 5.60417 4.08994 5.41173L10.5001 1.7115C11.4283 1.17573 12.5717 1.17576 13.4998 1.71157L19.9092 5.41175Z",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=\"M10.75 12.4328C10.9047 12.5221 11 12.6872 11 12.8658V21.7102C11 22.0951 10.5834 22.3357 10.25 22.1433L3.84005 18.4431C2.91173 17.9073 2.33984 16.9168 2.33984 15.8449V8.44318C2.33984 8.05828 2.75651 7.81771 3.08985 8.01017L10.75 12.4328Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.6602 15.8449C21.6602 16.9168 21.0883 17.9073 20.1599 18.4431L13.75 22.1433C13.4166 22.3357 13 22.0951 13 21.7102V12.8658C13 12.6872 13.0953 12.5221 13.25 12.4328L20.9102 8.01017C21.2435 7.81771 21.6602 8.05828 21.6602 8.44318V15.8449Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.9092 5.41175C20.2425 5.60418 20.2425 6.0853 19.9092 6.27777L12.25 10.7004C12.0953 10.7897 11.9047 10.7897 11.75 10.7004L4.08991 6.27778C3.75656 6.08532 3.75658 5.60417 4.08994 5.41173L10.5001 1.7115C11.4283 1.17573 12.5717 1.17576 13.4998 1.71157L19.9092 5.41175Z\"\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,+OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iPACF,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=\"M10.75 11.5673C10.9047 11.478 11 11.3129 11 11.1343V2.28987C11 1.90499 10.5834 1.66442 10.25 1.85684L3.84005 5.55696C2.91173 6.09283 2.33984 7.08328 2.33984 8.15516V15.5569C2.33984 15.9418 2.75651 16.1824 3.08985 15.9899L10.75 11.5673Z\" fill=\"currentColor\"/><path d=\"M21.6602 8.15516C21.6602 7.08328 21.0883 6.09283 20.1599 5.55696L13.75 1.85684C13.4166 1.66442 13 1.90499 13 2.28987V11.1343C13 11.3129 13.0953 11.478 13.25 11.5673L20.9102 15.9899C21.2435 16.1824 21.6602 15.9418 21.6602 15.5569V8.15516Z\" fill=\"currentColor\"/><path d=\"M19.9092 18.5883C20.2425 18.3959 20.2425 17.9148 19.9092 17.7223L12.25 13.2997C12.0953 13.2104 11.9047 13.2104 11.75 13.2997L4.08991 17.7223C3.75656 17.9148 3.75658 18.3959 4.08994 18.5884L10.5001 22.2886C11.4283 22.8244 12.5717 22.8243 13.4998 22.2885L19.9092 18.5883Z\" fill=\"currentColor\"/>",
6
+ "iconName": "3d-box-bottom, shaders, model, room",
7
+ "variant": {
8
+ "join": "round",
9
+ "filled": "on",
10
+ "radius": "2",
11
+ "stroke": "2"
12
+ },
13
+ "createdAt": "2025-08-29T06:00:20.162384+00:00",
14
+ "packageName": "round-filled-radius-2-stroke-2",
15
+ "componentName": "Icon3dBoxBottom"
16
+ },
17
+ {
18
+ "category": "Augmented Reality",
19
+ "svg": "<path d=\"M10.75 12.4328C10.9047 12.5221 11 12.6872 11 12.8658V21.7102C11 22.0951 10.5834 22.3357 10.25 22.1433L3.84005 18.4431C2.91173 17.9073 2.33984 16.9168 2.33984 15.8449V8.44318C2.33984 8.05828 2.75651 7.81771 3.08985 8.01017L10.75 12.4328Z\" fill=\"currentColor\"/><path d=\"M21.6602 15.8449C21.6602 16.9168 21.0883 17.9073 20.1599 18.4431L13.75 22.1433C13.4166 22.3357 13 22.0951 13 21.7102V12.8658C13 12.6872 13.0953 12.5221 13.25 12.4328L20.9102 8.01017C21.2435 7.81771 21.6602 8.05828 21.6602 8.44318V15.8449Z\" fill=\"currentColor\"/><path d=\"M19.9092 5.41175C20.2425 5.60418 20.2425 6.0853 19.9092 6.27777L12.25 10.7004C12.0953 10.7897 11.9047 10.7897 11.75 10.7004L4.08991 6.27778C3.75656 6.08532 3.75658 5.60417 4.08994 5.41173L10.5001 1.7115C11.4283 1.17573 12.5717 1.17576 13.4998 1.71157L19.9092 5.41175Z\" fill=\"currentColor\"/>",
20
+ "iconName": "3d-box-top, shaders, model, cube, ar",
21
+ "variant": {
22
+ "join": "round",
23
+ "filled": "on",
24
+ "radius": "2",
25
+ "stroke": "2"
26
+ },
27
+ "createdAt": "2025-08-28T10:30:32.636072+00:00",
28
+ "packageName": "round-filled-radius-2-stroke-2",
29
+ "componentName": "Icon3dBoxTop"
30
+ },
3
31
  {
4
32
  "category": "Augmented Reality",
5
33
  "svg": "<path d=\"M9.99995 12C9.99995 9.02506 10.3299 6.36771 10.8434 4.48495C11.1021 3.53641 11.3923 2.84109 11.6726 2.40636C11.8732 2.09533 11.9998 2.01683 12.0326 2.00006C17.5295 2.01761 21.9823 6.47041 21.9999 11.9674C21.9831 12.0001 21.9046 12.1268 21.5936 12.3273C21.1589 12.6076 20.4635 12.8979 19.515 13.1566C17.6323 13.67 14.9749 14 11.9999 14C11.3316 14 10.6793 13.9834 10.0482 13.9517C10.0166 13.3206 9.99995 12.6683 9.99995 12Z\" fill=\"currentColor\"/><path d=\"M8.03867 13.7939C6.68364 13.6467 5.47677 13.4271 4.48489 13.1566C3.53635 12.8979 2.84103 12.6076 2.40629 12.3273C2.09527 12.1268 2.01677 12.0001 2 11.9674C2.0148 7.33262 5.18262 3.44015 9.47087 2.32258C9.26073 2.81339 9.07563 3.36556 8.91386 3.95872C8.34156 6.05718 7.99995 8.89983 7.99995 12C7.99995 12.6091 8.01314 13.2083 8.03867 13.7939Z\" fill=\"currentColor\"/><path d=\"M8.18077 15.8192C8.33654 17.4082 8.58775 18.8456 8.91386 20.0413C9.07563 20.6345 9.26073 21.1866 9.47087 21.6774C5.98036 20.7678 3.23219 18.0196 2.32252 14.5291C2.81333 14.7392 3.3655 14.9243 3.95866 15.0861C5.1544 15.4122 6.59179 15.6634 8.18077 15.8192Z\" fill=\"currentColor\"/><path d=\"M12.0326 22C16.6673 21.9852 20.5598 18.8173 21.6774 14.5291C21.1866 14.7392 20.6344 14.9243 20.0412 15.0861C17.9428 15.6584 15.1001 16 11.9999 16C11.3908 16 10.7916 15.9868 10.2061 15.9613C10.3533 17.3163 10.5729 18.5232 10.8434 19.5151C11.1021 20.4636 11.3923 21.1589 11.6726 21.5937C11.8732 21.9047 11.9998 21.9832 12.0326 22Z\" 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-2",
3
- "version": "0.0.59",
3
+ "version": "0.0.61",
4
4
  "style": "round-filled-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-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": 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-2",
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-2",
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=\"M10.75 11.5673C10.9047 11.478 11 11.3129 11 11.1343V2.28987C11 1.90499 10.5834 1.66442 10.25 1.85684L3.84005 5.55696C2.91173 6.09283 2.33984 7.08328 2.33984 8.15516V15.5569C2.33984 15.9418 2.75651 16.1824 3.08985 15.9899L10.75 11.5673Z\" fill=\"currentColor\"/><Path d=\"M21.6602 8.15516C21.6602 7.08328 21.0883 6.09283 20.1599 5.55696L13.75 1.85684C13.4166 1.66442 13 1.90499 13 2.28987V11.1343C13 11.3129 13.0953 11.478 13.25 11.5673L20.9102 15.9899C21.2435 16.1824 21.6602 15.9418 21.6602 15.5569V8.15516Z\" fill=\"currentColor\"/><Path d=\"M19.9092 18.5883C20.2425 18.3959 20.2425 17.9148 19.9092 17.7223L12.25 13.2997C12.0953 13.2104 11.9047 13.2104 11.75 13.2997L4.08991 17.7223C3.75656 17.9148 3.75658 18.3959 4.08994 18.5884L10.5001 22.2886C11.4283 22.8244 12.5717 22.8243 13.4998 22.2885L19.9092 18.5883Z\" 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=\"M10.75 12.4328C10.9047 12.5221 11 12.6872 11 12.8658V21.7102C11 22.0951 10.5834 22.3357 10.25 22.1433L3.84005 18.4431C2.91173 17.9073 2.33984 16.9168 2.33984 15.8449V8.44318C2.33984 8.05828 2.75651 7.81771 3.08985 8.01017L10.75 12.4328Z\" fill=\"currentColor\"/><Path d=\"M21.6602 15.8449C21.6602 16.9168 21.0883 17.9073 20.1599 18.4431L13.75 22.1433C13.4166 22.3357 13 22.0951 13 21.7102V12.8658C13 12.6872 13.0953 12.5221 13.25 12.4328L20.9102 8.01017C21.2435 7.81771 21.6602 8.05828 21.6602 8.44318V15.8449Z\" fill=\"currentColor\"/><Path d=\"M19.9092 5.41175C20.2425 5.60418 20.2425 6.0853 19.9092 6.27777L12.25 10.7004C12.0953 10.7897 11.9047 10.7897 11.75 10.7004L4.08991 6.27778C3.75656 6.08532 3.75658 5.60417 4.08994 5.41173L10.5001 1.7115C11.4283 1.17573 12.5717 1.17576 13.4998 1.71157L19.9092 5.41175Z\" 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.99995 12C9.99995 9.02506 10.3299 6.36771 10.8434 4.48495C11.1021 3.53641 11.3923 2.84109 11.6726 2.40636C11.8732 2.09533 11.9998 2.01683 12.0326 2.00006C17.5295 2.01761 21.9823 6.47041 21.9999 11.9674C21.9831 12.0001 21.9046 12.1268 21.5936 12.3273C21.1589 12.6076 20.4635 12.8979 19.515 13.1566C17.6323 13.67 14.9749 14 11.9999 14C11.3316 14 10.6793 13.9834 10.0482 13.9517C10.0166 13.3206 9.99995 12.6683 9.99995 12Z\" fill=\"currentColor\"/><Path d=\"M8.03867 13.7939C6.68364 13.6467 5.47677 13.4271 4.48489 13.1566C3.53635 12.8979 2.84103 12.6076 2.40629 12.3273C2.09527 12.1268 2.01677 12.0001 2 11.9674C2.0148 7.33262 5.18262 3.44015 9.47087 2.32258C9.26073 2.81339 9.07563 3.36556 8.91386 3.95872C8.34156 6.05718 7.99995 8.89983 7.99995 12C7.99995 12.6091 8.01314 13.2083 8.03867 13.7939Z\" fill=\"currentColor\"/><Path d=\"M8.18077 15.8192C8.33654 17.4082 8.58775 18.8456 8.91386 20.0413C9.07563 20.6345 9.26073 21.1866 9.47087 21.6774C5.98036 20.7678 3.23219 18.0196 2.32252 14.5291C2.81333 14.7392 3.3655 14.9243 3.95866 15.0861C5.1544 15.4122 6.59179 15.6634 8.18077 15.8192Z\" fill=\"currentColor\"/><Path d=\"M12.0326 22C16.6673 21.9852 20.5598 18.8173 21.6774 14.5291C21.1866 14.7392 20.6344 14.9243 20.0412 15.0861C17.9428 15.6584 15.1001 16 11.9999 16C11.3908 16 10.7916 15.9868 10.2061 15.9613C10.3533 17.3163 10.5729 18.5232 10.8434 19.5151C11.1021 20.4636 11.3923 21.1589 11.6726 21.5937C11.8732 21.9047 11.9998 21.9832 12.0326 22Z\" fill=\"currentColor\"/>",
5
19
  "tags": "Path",