@central-icons-react/round-filled-radius-3-stroke-1 0.0.58 → 0.0.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const Icon3dBoxTop: React.FC<CentralIconBaseProps>;
4
+ export default Icon3dBoxTop;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of x(o))!B.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(l=d(o,t))||l.enumerable});return r};var s=(r,o,e)=>(e=r!=null?u(h(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(p({},"__esModule",{value:!0}),r);var V={};L(V,{Icon3dBoxTop:()=>i,default:()=>I});module.exports=g(V);var n=s(require("react"));var C=s(require("react")),m=({children:r,size:o=24,ariaLabel:e,color:l,ariaHidden:t=!0,style:c,...f})=>C.default.createElement("svg",{...f,"aria-hidden":t,role:t?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...c}},e&&!t&&C.default.createElement("title",null,e),r);var i=r=>n.default.createElement(m,{...r,ariaLabel:"3d-box-top, shaders, model, cube, ar"},n.default.createElement("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.1052L4.37333 18.4243C3.29027 17.7992 2.62305 16.6436 2.62305 15.3931V8.02818C2.62305 7.64326 3.03975 7.4027 3.37308 7.59519L11.25 12.1437Z",fill:"currentColor"}),n.default.createElement("path",{d:"M21.377 15.3931C21.377 16.6436 20.7097 17.7992 19.6267 18.4243L13.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.4027 21.377 7.64326 21.377 8.02818V15.3931Z",fill:"currentColor"}),n.default.createElement("path",{d:"M20.125 5.86385C20.4584 6.0563 20.4584 6.53741 20.1251 6.72987L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72991C3.53974 6.53745 3.53977 6.0563 3.87313 5.86388L10.2501 2.18292C11.3329 1.55786 12.667 1.55793 13.7498 2.18309L20.125 5.86385Z",fill:"currentColor"})),I=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 from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const Icon3dBoxTop: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"3d-box-top, shaders, model, cube, ar\"\n >\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.1052L4.37333 18.4243C3.29027 17.7992 2.62305 16.6436 2.62305 15.3931V8.02818C2.62305 7.64326 3.03975 7.4027 3.37308 7.59519L11.25 12.1437Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.377 15.3931C21.377 16.6436 20.7097 17.7992 19.6267 18.4243L13.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.4027 21.377 7.64326 21.377 8.02818V15.3931Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.125 5.86385C20.4584 6.0563 20.4584 6.53741 20.1251 6.72987L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72991C3.53974 6.53745 3.53977 6.0563 3.87313 5.86388L10.2501 2.18292C11.3329 1.55786 12.667 1.55793 13.7498 2.18309L20.125 5.86385Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxTop;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,wCAEV,EAAAC,QAAA,cAAC,QACC,EAAE,kPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6QACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["Icon3dBoxTop_exports","__export","Icon3dBoxTop","Icon3dBoxTop_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","Icon3dBoxTop","props","React","CentralIconBase","Icon3dBoxTop_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:C,ariaHidden:t=!0,style:a,...s})=>l.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...a}},n&&!t&&l.createElement("title",null,n),e);var m=e=>o.createElement(p,{...e,ariaLabel:"3d-box-top, shaders, model, cube, ar"},o.createElement("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.1052L4.37333 18.4243C3.29027 17.7992 2.62305 16.6436 2.62305 15.3931V8.02818C2.62305 7.64326 3.03975 7.4027 3.37308 7.59519L11.25 12.1437Z",fill:"currentColor"}),o.createElement("path",{d:"M21.377 15.3931C21.377 16.6436 20.7097 17.7992 19.6267 18.4243L13.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.4027 21.377 7.64326 21.377 8.02818V15.3931Z",fill:"currentColor"}),o.createElement("path",{d:"M20.125 5.86385C20.4584 6.0563 20.4584 6.53741 20.1251 6.72987L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72991C3.53974 6.53745 3.53977 6.0563 3.87313 5.86388L10.2501 2.18292C11.3329 1.55786 12.667 1.55793 13.7498 2.18309L20.125 5.86385Z",fill:"currentColor"})),d=m;export{m as Icon3dBoxTop,d 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 from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const Icon3dBoxTop: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"3d-box-top, shaders, model, cube, ar\"\n >\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.1052L4.37333 18.4243C3.29027 17.7992 2.62305 16.6436 2.62305 15.3931V8.02818C2.62305 7.64326 3.03975 7.4027 3.37308 7.59519L11.25 12.1437Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.377 15.3931C21.377 16.6436 20.7097 17.7992 19.6267 18.4243L13.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.4027 21.377 7.64326 21.377 8.02818V15.3931Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.125 5.86385C20.4584 6.0563 20.4584 6.53741 20.1251 6.72987L12.249 11.2775C12.0943 11.3668 11.9037 11.3668 11.749 11.2775L3.87308 6.72991C3.53974 6.53745 3.53977 6.0563 3.87313 5.86388L10.2501 2.18292C11.3329 1.55786 12.667 1.55793 13.7498 2.18309L20.125 5.86385Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default Icon3dBoxTop;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,wCAEVC,EAAA,cAAC,QACC,EAAE,kPACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gPACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6QACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","Icon3dBoxTop","props","React","CentralIconBase","Icon3dBoxTop_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var c=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var V=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of h(o))!g.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(l=m(o,e))||l.enumerable});return r};var i=(r,o,t)=>(t=r!=null?c(d(r)):{},s(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>s(p({},"__esModule",{value:!0}),r);var B={};V(B,{IconCursor:()=>u,default:()=>y});module.exports=x(B);var n=i(require("react"));var a=i(require("react")),L=({children:r,size:o=24,ariaLabel:t,color:l,ariaHidden:e=!0,style:C,...f})=>a.default.createElement("svg",{...f,"aria-hidden":e,role:e?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...C}},t&&!e&&a.default.createElement("title",null,t),r);var u=r=>n.default.createElement(L,{...r,ariaLabel:"cursor"},n.default.createElement("path",{opacity:"0.1",d:"M20.8887 6.74945L12 22.4999V11.9998L20.8887 6.74945Z",fill:"currentColor"}),n.default.createElement("g",{opacity:"0.5"},n.default.createElement("path",{d:"M11.9976 22.5L3.10938 17.25L11.9976 12V22.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M20.8869 17.25L11.9976 22.5L16.4432 14.625L20.8869 17.25Z",fill:"currentColor"}),n.default.createElement("path",{d:"M11.9976 6.75H3.10938L11.9976 1.5V6.75Z",fill:"currentColor"})),n.default.createElement("path",{d:"M11.9976 12L3.10938 17.25V6.75L11.9976 12Z",fill:"currentColor"}),n.default.createElement("path",{d:"M20.885 6.74907L20.8869 6.75L20.8859 17.25L16.4423 14.625L20.885 6.74907L11.9986 6.75V1.5L20.885 6.74907Z",fill:"currentColor"})),y=u;0&&(module.exports={IconCursor});
1
+ "use strict";var m=Object.create;var p=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var v=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var h=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0})},i=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of v(r))!g.call(e,t)&&t!==o&&p(e,t,{get:()=>r[t],enumerable:!(n=C(r,t))||n.enumerable});return e};var s=(e,r,o)=>(o=e!=null?m(L(e)):{},i(r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o,e)),x=e=>i(p({},"__esModule",{value:!0}),e);var I={};h(I,{IconCursor:()=>u,default:()=>B});module.exports=x(I);var l=s(require("react"));var a=s(require("react")),d=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:c,...f})=>a.default.createElement("svg",{...f,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...c}},o&&!t&&a.default.createElement("title",null,o),e);var u=e=>l.default.createElement(d,{...e,ariaLabel:"cursor"},l.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.9976 22.5L3.10938 17.25V6.75L11.9976 12V22.5Z",fill:"currentColor"}),l.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.9976 6.75H3.10938L11.9976 1.5L20.885 6.74907L11.9976 6.75Z",fill:"currentColor"}),l.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.8869 17.25L11.9976 22.5L16.4432 14.625L20.885 6.74907L20.8869 17.25Z",fill:"currentColor"})),B=u;0&&(module.exports={IconCursor});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCursor: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cursor\">\n <path\n opacity=\"0.1\"\n d=\"M20.8887 6.74945L12 22.4999V11.9998L20.8887 6.74945Z\"\n fill=\"currentColor\"\n />\n <g opacity=\"0.5\">\n <path\n d=\"M11.9976 22.5L3.10938 17.25L11.9976 12V22.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.8869 17.25L11.9976 22.5L16.4432 14.625L20.8869 17.25Z\"\n fill=\"currentColor\"\n />\n <path d=\"M11.9976 6.75H3.10938L11.9976 1.5V6.75Z\" fill=\"currentColor\" />\n </g>\n <path\n d=\"M11.9976 12L3.10938 17.25V6.75L11.9976 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.885 6.74907L20.8869 6.75L20.8859 17.25L16.4423 14.625L20.885 6.74907L11.9986 6.75V1.5L20.885 6.74907Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursor;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,UACpC,EAAAC,QAAA,cAAC,QACC,QAAQ,MACR,EAAE,uDACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,KAAE,QAAQ,OACT,EAAAA,QAAA,cAAC,QACC,EAAE,+CACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4DACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,0CAA0C,KAAK,eAAe,CACxE,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6CACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCursor_exports","__export","IconCursor","IconCursor_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconCursor","props","React","CentralIconBase","IconCursor_default"]}
1
+ {"version":3,"sources":["../src/IconCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCursor: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cursor\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.9976 22.5L3.10938 17.25V6.75L11.9976 12V22.5Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.9976 6.75H3.10938L11.9976 1.5L20.885 6.74907L11.9976 6.75Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.8869 17.25L11.9976 22.5L16.4432 14.625L20.885 6.74907L20.8869 17.25Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursor;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,UACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,oDACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2EACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCursor_exports","__export","IconCursor","IconCursor_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconCursor","props","React","CentralIconBase","IconCursor_default"]}
@@ -1,2 +1,2 @@
1
- import r from"react";import l from"react";var p=({children:t,size:o=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:s,...i})=>l.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!e&&l.createElement("title",null,n),t);var L=t=>r.createElement(p,{...t,ariaLabel:"cursor"},r.createElement("path",{opacity:"0.1",d:"M20.8887 6.74945L12 22.4999V11.9998L20.8887 6.74945Z",fill:"currentColor"}),r.createElement("g",{opacity:"0.5"},r.createElement("path",{d:"M11.9976 22.5L3.10938 17.25L11.9976 12V22.5Z",fill:"currentColor"}),r.createElement("path",{d:"M20.8869 17.25L11.9976 22.5L16.4432 14.625L20.8869 17.25Z",fill:"currentColor"}),r.createElement("path",{d:"M11.9976 6.75H3.10938L11.9976 1.5V6.75Z",fill:"currentColor"})),r.createElement("path",{d:"M11.9976 12L3.10938 17.25V6.75L11.9976 12Z",fill:"currentColor"}),r.createElement("path",{d:"M20.885 6.74907L20.8869 6.75L20.8859 17.25L16.4423 14.625L20.885 6.74907L11.9986 6.75V1.5L20.885 6.74907Z",fill:"currentColor"})),m=L;export{L as IconCursor,m as default};
1
+ import r from"react";import n from"react";var p=({children:o,size:e=24,ariaLabel:l,color:a,ariaHidden:t=!0,style:i,...s})=>n.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...i}},l&&!t&&n.createElement("title",null,l),o);var d=o=>r.createElement(p,{...o,ariaLabel:"cursor"},r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.9976 22.5L3.10938 17.25V6.75L11.9976 12V22.5Z",fill:"currentColor"}),r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.9976 6.75H3.10938L11.9976 1.5L20.885 6.74907L11.9976 6.75Z",fill:"currentColor"}),r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.8869 17.25L11.9976 22.5L16.4432 14.625L20.885 6.74907L20.8869 17.25Z",fill:"currentColor"})),C=d;export{d as IconCursor,C as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCursor: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cursor\">\n <path\n opacity=\"0.1\"\n d=\"M20.8887 6.74945L12 22.4999V11.9998L20.8887 6.74945Z\"\n fill=\"currentColor\"\n />\n <g opacity=\"0.5\">\n <path\n d=\"M11.9976 22.5L3.10938 17.25L11.9976 12V22.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.8869 17.25L11.9976 22.5L16.4432 14.625L20.8869 17.25Z\"\n fill=\"currentColor\"\n />\n <path d=\"M11.9976 6.75H3.10938L11.9976 1.5V6.75Z\" fill=\"currentColor\" />\n </g>\n <path\n d=\"M11.9976 12L3.10938 17.25V6.75L11.9976 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.885 6.74907L20.8869 6.75L20.8859 17.25L16.4423 14.625L20.885 6.74907L11.9986 6.75V1.5L20.885 6.74907Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursor;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,UACpCC,EAAA,cAAC,QACC,QAAQ,MACR,EAAE,uDACF,KAAK,eACP,EACAA,EAAA,cAAC,KAAE,QAAQ,OACTA,EAAA,cAAC,QACC,EAAE,+CACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4DACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,0CAA0C,KAAK,eAAe,CACxE,EACAA,EAAA,cAAC,QACC,EAAE,6CACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCursor","props","React","CentralIconBase","IconCursor_default"]}
1
+ {"version":3,"sources":["../src/IconCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCursor: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cursor\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.9976 22.5L3.10938 17.25V6.75L11.9976 12V22.5Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.9976 6.75H3.10938L11.9976 1.5L20.885 6.74907L11.9976 6.75Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.8869 17.25L11.9976 22.5L16.4432 14.625L20.885 6.74907L20.8869 17.25Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursor;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,UACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,oDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2EACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCursor","props","React","CentralIconBase","IconCursor_default"]}
package/README.md CHANGED
@@ -334,6 +334,7 @@ Below is a complete list of available icons:
334
334
 
335
335
  ### Augmented Reality
336
336
 
337
+ - Icon3dBoxTop
337
338
  - Icon3dSphere
338
339
  - IconAr
339
340
  - IconArCube1
package/icons/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export type CentralIconName =
2
+ | "Icon3dBoxTop"
2
3
  | "Icon3dSphere"
3
4
  | "Icon4k"
4
5
  | "IconAddKeyframe"