@central-icons-react/square-filled-radius-0-stroke-1 1.1.13 → 1.1.14
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.
- package/IconImagine/index.d.ts +4 -0
- package/IconImagine/index.js +2 -0
- package/IconImagine/index.js.map +1 -0
- package/IconImagine/index.mjs +2 -0
- package/IconImagine/index.mjs.map +1 -0
- package/IconImagineAi/index.d.ts +4 -0
- package/IconImagineAi/index.js +2 -0
- package/IconImagineAi/index.js.map +1 -0
- package/IconImagineAi/index.mjs +2 -0
- package/IconImagineAi/index.mjs.map +1 -0
- package/README.md +2 -0
- package/icons/index.d.ts +2 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +7 -3
- package/index.d.ts +5 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var g=Object.create;var l=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var V=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},i=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of L(r))!I.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=u(r,o))||n.enumerable});return e};var s=(e,r,t)=>(t=e!=null?g(d(e)):{},i(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),h=e=>i(l({},"__esModule",{value:!0}),e);var B={};V(B,{IconImagine:()=>C,default:()=>x});module.exports=h(B);var p=s(require("react"));var a=s(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:c,...f})=>a.default.createElement("svg",{...f,"aria-hidden":o,role:o?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}},t&&!o&&a.default.createElement("title",null,t),e);var C=e=>p.default.createElement(m,{...e,ariaLabel:"imagine, head, thinking"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.3126 2 18.8255 5.41255 18.9912 9.68457L21.3564 13.2324L19 14.999V17C19 18.1046 18.1046 19 17 19H14V22H6V16.2422C4.17357 14.7774 3 12.5266 3 10C3 5.58172 6.58172 2 11 2ZM9.77539 8.77539L7.5 9.65039V10.3496L9.77539 11.2246L10.6504 13.5H11.3496L12.2246 11.2246L14.5 10.3496V9.65039L12.2246 8.77539L11.3496 6.5H10.6504L9.77539 8.77539Z",fill:"currentColor"})),x=C;0&&(module.exports={IconImagine});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagine/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagine: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"imagine, head, thinking\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11 2C15.3126 2 18.8255 5.41255 18.9912 9.68457L21.3564 13.2324L19 14.999V17C19 18.1046 18.1046 19 17 19H14V22H6V16.2422C4.17357 14.7774 3 12.5266 3 10C3 5.58172 6.58172 2 11 2ZM9.77539 8.77539L7.5 9.65039V10.3496L9.77539 11.2246L10.6504 13.5H11.3496L12.2246 11.2246L14.5 10.3496V9.65039L12.2246 8.77539L11.3496 6.5H10.6504L9.77539 8.77539Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagine;\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,iBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uVACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconImagine_exports","__export","IconImagine","IconImagine_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconImagine","props","React","CentralIconBase","IconImagine_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import a from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:p,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:p,...i}},o&&!t&&n.createElement("title",null,o),r);var m=r=>a.createElement(l,{...r,ariaLabel:"imagine, head, thinking"},a.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 2C15.3126 2 18.8255 5.41255 18.9912 9.68457L21.3564 13.2324L19 14.999V17C19 18.1046 18.1046 19 17 19H14V22H6V16.2422C4.17357 14.7774 3 12.5266 3 10C3 5.58172 6.58172 2 11 2ZM9.77539 8.77539L7.5 9.65039V10.3496L9.77539 11.2246L10.6504 13.5H11.3496L12.2246 11.2246L14.5 10.3496V9.65039L12.2246 8.77539L11.3496 6.5H10.6504L9.77539 8.77539Z",fill:"currentColor"})),u=m;export{m as IconImagine,u as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagine/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagine: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"imagine, head, thinking\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11 2C15.3126 2 18.8255 5.41255 18.9912 9.68457L21.3564 13.2324L19 14.999V17C19 18.1046 18.1046 19 17 19H14V22H6V16.2422C4.17357 14.7774 3 12.5266 3 10C3 5.58172 6.58172 2 11 2ZM9.77539 8.77539L7.5 9.65039V10.3496L9.77539 11.2246L10.6504 13.5H11.3496L12.2246 11.2246L14.5 10.3496V9.65039L12.2246 8.77539L11.3496 6.5H10.6504L9.77539 8.77539Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagine;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uVACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconImagine","props","React","CentralIconBase","IconImagine_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var C=Object.create;var L=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var V=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)L(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of V(o))!h.call(r,e)&&e!==t&&L(r,e,{get:()=>o[e],enumerable:!(l=c(o,e))||l.enumerable});return r};var i=(r,o,t)=>(t=r!=null?C(d(r)):{},a(o||!r||!r.__esModule?L(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>a(L({},"__esModule",{value:!0}),r);var B={};g(B,{IconImagineAi:()=>m,default:()=>x});module.exports=I(B);var n=i(require("react"));var p=i(require("react")),s=({children:r,size:o=24,ariaLabel:t,color:l,ariaHidden:e=!0,style:f,...u})=>p.default.createElement("svg",{...u,"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,...f}},t&&!e&&p.default.createElement("title",null,t),r);var m=r=>n.default.createElement(s,{...r,ariaLabel:"imagine-ai, cube, room, 3d, opject, vector"},n.default.createElement("path",{d:"M14.8721 20.1025L15.1201 20.5371L12 22.3262L8.87988 20.5371L9.12793 20.1025L9.37695 19.6689L12 21.1729L14.623 19.6689L14.8721 20.1025Z",fill:"currentColor"}),n.default.createElement("path",{d:"M4 16.585L6.62109 18.0889L6.12305 18.9561L3.25098 17.3086L3 17.165V13.5811H4V16.585Z",fill:"currentColor"}),n.default.createElement("path",{d:"M21 17.165L20.749 17.3086L17.877 18.9561L17.3789 18.0889L20 16.585V13.5811H21V17.165Z",fill:"currentColor"}),n.default.createElement("path",{d:"M12.4502 7.5L13.5752 10.4248L16.5 11.5498V12.4502L13.5752 13.5752L12.4502 16.5H11.5498L10.4248 13.5752L7.5 12.4502V11.5498L10.4248 10.4248L11.5498 7.5H12.4502Z",fill:"currentColor"}),n.default.createElement("path",{d:"M6.37109 5.47852L6.62012 5.91211L4 7.41406V10.4189H3V6.83496L6.12305 5.04492L6.37109 5.47852Z",fill:"currentColor"}),n.default.createElement("path",{d:"M21 6.83496V10.4189H20V7.41406L17.3799 5.91211L17.6289 5.47852L17.877 5.04492L21 6.83496Z",fill:"currentColor"}),n.default.createElement("path",{d:"M15.1211 3.46387L14.623 4.33105L12 2.82617L9.37695 4.33105L8.87891 3.46387L12 1.67383L15.1211 3.46387Z",fill:"currentColor"})),x=m;0&&(module.exports={IconImagineAi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagineAi/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagineAi: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"imagine-ai, cube, room, 3d, opject, vector\"\n >\n <path\n d=\"M14.8721 20.1025L15.1201 20.5371L12 22.3262L8.87988 20.5371L9.12793 20.1025L9.37695 19.6689L12 21.1729L14.623 19.6689L14.8721 20.1025Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4 16.585L6.62109 18.0889L6.12305 18.9561L3.25098 17.3086L3 17.165V13.5811H4V16.585Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 17.165L20.749 17.3086L17.877 18.9561L17.3789 18.0889L20 16.585V13.5811H21V17.165Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.4502 7.5L13.5752 10.4248L16.5 11.5498V12.4502L13.5752 13.5752L12.4502 16.5H11.5498L10.4248 13.5752L7.5 12.4502V11.5498L10.4248 10.4248L11.5498 7.5H12.4502Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.37109 5.47852L6.62012 5.91211L4 7.41406V10.4189H3V6.83496L6.12305 5.04492L6.37109 5.47852Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 6.83496V10.4189H20V7.41406L17.3799 5.91211L17.6289 5.47852L17.877 5.04492L21 6.83496Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.1211 3.46387L14.623 4.33105L12 2.82617L9.37695 4.33105L8.87891 3.46387L12 1.67383L15.1211 3.46387Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagineAi;\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,mBAAAE,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,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEV,EAAAC,QAAA,cAAC,QACC,EAAE,yIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kKACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gGACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4FACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconImagineAi_exports","__export","IconImagineAi","IconImagineAi_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconImagineAi","props","React","CentralIconBase","IconImagineAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import l from"react";var L=({children:t,size:o=24,ariaLabel:n,color:p,ariaHidden:e=!0,style:a,...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:p,...a}},n&&!e&&l.createElement("title",null,n),t);var s=t=>r.createElement(L,{...t,ariaLabel:"imagine-ai, cube, room, 3d, opject, vector"},r.createElement("path",{d:"M14.8721 20.1025L15.1201 20.5371L12 22.3262L8.87988 20.5371L9.12793 20.1025L9.37695 19.6689L12 21.1729L14.623 19.6689L14.8721 20.1025Z",fill:"currentColor"}),r.createElement("path",{d:"M4 16.585L6.62109 18.0889L6.12305 18.9561L3.25098 17.3086L3 17.165V13.5811H4V16.585Z",fill:"currentColor"}),r.createElement("path",{d:"M21 17.165L20.749 17.3086L17.877 18.9561L17.3789 18.0889L20 16.585V13.5811H21V17.165Z",fill:"currentColor"}),r.createElement("path",{d:"M12.4502 7.5L13.5752 10.4248L16.5 11.5498V12.4502L13.5752 13.5752L12.4502 16.5H11.5498L10.4248 13.5752L7.5 12.4502V11.5498L10.4248 10.4248L11.5498 7.5H12.4502Z",fill:"currentColor"}),r.createElement("path",{d:"M6.37109 5.47852L6.62012 5.91211L4 7.41406V10.4189H3V6.83496L6.12305 5.04492L6.37109 5.47852Z",fill:"currentColor"}),r.createElement("path",{d:"M21 6.83496V10.4189H20V7.41406L17.3799 5.91211L17.6289 5.47852L17.877 5.04492L21 6.83496Z",fill:"currentColor"}),r.createElement("path",{d:"M15.1211 3.46387L14.623 4.33105L12 2.82617L9.37695 4.33105L8.87891 3.46387L12 1.67383L15.1211 3.46387Z",fill:"currentColor"})),c=s;export{s as IconImagineAi,c as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagineAi/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagineAi: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"imagine-ai, cube, room, 3d, opject, vector\"\n >\n <path\n d=\"M14.8721 20.1025L15.1201 20.5371L12 22.3262L8.87988 20.5371L9.12793 20.1025L9.37695 19.6689L12 21.1729L14.623 19.6689L14.8721 20.1025Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4 16.585L6.62109 18.0889L6.12305 18.9561L3.25098 17.3086L3 17.165V13.5811H4V16.585Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 17.165L20.749 17.3086L17.877 18.9561L17.3789 18.0889L20 16.585V13.5811H21V17.165Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.4502 7.5L13.5752 10.4248L16.5 11.5498V12.4502L13.5752 13.5752L12.4502 16.5H11.5498L10.4248 13.5752L7.5 12.4502V11.5498L10.4248 10.4248L11.5498 7.5H12.4502Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.37109 5.47852L6.62012 5.91211L4 7.41406V10.4189H3V6.83496L6.12305 5.04492L6.37109 5.47852Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 6.83496V10.4189H20V7.41406L17.3799 5.91211L17.6289 5.47852L17.877 5.04492L21 6.83496Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.1211 3.46387L14.623 4.33105L12 2.82617L9.37695 4.33105L8.87891 3.46387L12 1.67383L15.1211 3.46387Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagineAi;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEVC,EAAA,cAAC,QACC,EAAE,yIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4FACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,yGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconImagineAi","props","React","CentralIconBase","IconImagineAi_default"]}
|
package/README.md
CHANGED