@central-icons-react/round-filled-radius-0-stroke-2 0.0.56 → 0.0.58
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/IconGlass/index.d.ts +4 -0
- package/IconGlass/index.js +2 -0
- package/IconGlass/index.js.map +1 -0
- package/IconGlass/index.mjs +2 -0
- package/IconGlass/index.mjs.map +1 -0
- package/IconInsights/index.d.ts +4 -0
- package/IconInsights/index.js +2 -0
- package/IconInsights/index.js.map +1 -0
- package/IconInsights/index.mjs +2 -0
- package/IconInsights/index.mjs.map +1 -0
- package/IconShaders/index.d.ts +4 -0
- package/IconShaders/index.js +2 -0
- package/IconShaders/index.js.map +1 -0
- package/IconShaders/index.mjs +2 -0
- package/IconShaders/index.mjs.map +1 -0
- package/README.md +3 -0
- package/icons/index.d.ts +3 -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 +10 -4
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var l=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},p=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of g(r))!B.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=f(r,o))||n.enumerable});return e};var C=(e,r,t)=>(t=e!=null?d(x(e)):{},p(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),h=e=>p(l({},"__esModule",{value:!0}),e);var w={};I(w,{IconGlass:()=>m,default:()=>v});module.exports=h(w);var s=C(require("react"));var a=C(require("react")),i=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:c,...u})=>a.default.createElement("svg",{...u,"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 m=e=>s.default.createElement(i,{...e,ariaLabel:"glass, material, shader, liquid-glass"},s.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6C8.68629 6 6 8.68629 6 12C6 12.5523 6.44772 13 7 13C7.55228 13 8 12.5523 8 12C8 9.79086 9.79086 8 12 8C12.5523 8 13 7.55228 13 7C13 6.44772 12.5523 6 12 6Z",fill:"currentColor"})),v=m;0&&(module.exports={IconGlass});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGlass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGlass: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"glass, material, shader, liquid-glass\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6C8.68629 6 6 8.68629 6 12C6 12.5523 6.44772 13 7 13C7.55228 13 8 12.5523 8 12C8 9.79086 9.79086 8 12 8C12.5523 8 13 7.55228 13 7C13 6.44772 12.5523 6 12 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGlass;\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,eAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,yCAEV,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,mRACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGlass_exports","__export","IconGlass","IconGlass_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconGlass","props","React","CentralIconBase","IconGlass_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import a from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:p,...C})=>n.createElement("svg",{...C,"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:s,...p}},o&&!t&&n.createElement("title",null,o),r);var i=r=>a.createElement(l,{...r,ariaLabel:"glass, material, shader, liquid-glass"},a.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6C8.68629 6 6 8.68629 6 12C6 12.5523 6.44772 13 7 13C7.55228 13 8 12.5523 8 12C8 9.79086 9.79086 8 12 8C12.5523 8 13 7.55228 13 7C13 6.44772 12.5523 6 12 6Z",fill:"currentColor"})),f=i;export{i as IconGlass,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGlass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGlass: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"glass, material, shader, liquid-glass\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6C8.68629 6 6 8.68629 6 12C6 12.5523 6.44772 13 7 13C7.55228 13 8 12.5523 8 12C8 9.79086 9.79086 8 12 8C12.5523 8 13 7.55228 13 7C13 6.44772 12.5523 6 12 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGlass;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,yCAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,mRACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGlass","props","React","CentralIconBase","IconGlass_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var l=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,t)=>{for(var e in t)l(r,e,{get:t[e],enumerable:!0})},a=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of g(t))!I.call(r,o)&&o!==e&&l(r,o,{get:()=>t[o],enumerable:!(n=L(t,o))||n.enumerable});return r};var s=(r,t,e)=>(e=r!=null?u(h(r)):{},a(t||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>a(l({},"__esModule",{value:!0}),r);var y={};x(y,{IconInsights:()=>m,default:()=>d});module.exports=B(y);var C=s(require("react"));var p=s(require("react")),i=({children:r,size:t=24,ariaLabel:e,color:n,ariaHidden:o=!0,style:c,...f})=>p.default.createElement("svg",{...f,"aria-hidden":o,role:o?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...c}},e&&!o&&p.default.createElement("title",null,e),r);var m=r=>C.default.createElement(i,{...r,ariaLabel:"insights, analyze"},C.default.createElement("path",{d:"M20 8.00005C21.1046 8.00005 22 8.89548 22 10C22 11.1046 21.1046 12 20 12C19.8843 12 19.7714 11.9876 19.6611 11.9688L16.875 15.3116C16.954 15.5265 17 15.7577 17 16C17 17.1046 16.1046 18 15 18C13.8954 18 13 17.1046 13 16C13 15.8844 13.0114 15.7714 13.0303 15.6612L9.6875 12.875C9.47279 12.9538 9.24201 13 9 13C8.93472 13 8.87032 12.9954 8.80664 12.9893L5.81836 17.1719C5.93359 17.4245 6 17.7043 6 18C6 19.1046 5.10457 20 4 20C2.89543 20 2 19.1046 2 18C2 16.8955 2.89543 16 4 16C4.06492 16 4.12905 16.0038 4.19238 16.0098L7.18066 11.8262C7.06601 11.5741 7 11.295 7 11C7 9.89548 7.89543 9.00005 9 9.00005C10.1046 9.00005 11 9.89548 11 11C11 11.1154 10.9875 11.228 10.9688 11.3379L14.3105 14.1241C14.5257 14.045 14.7575 14 15 14C15.1149 14 15.2273 14.0117 15.3369 14.0303L18.123 10.6875C18.0444 10.473 18 10.2418 18 10C18 8.89548 18.8954 8.00005 20 8.00005Z",fill:"currentColor"}),C.default.createElement("path",{d:"M4.5 7.00005C5.32843 7.00005 6 7.67162 6 8.50005C6 9.32847 5.32843 10 4.5 10C3.67157 10 3 9.32847 3 8.50005C3 7.67162 3.67157 7.00005 4.5 7.00005Z",fill:"currentColor"}),C.default.createElement("path",{d:"M16.6464 6.14649C16.8417 6.34176 16.8417 6.65834 16.6464 6.8536L14.8536 8.64649C14.6583 8.84176 14.3417 8.84176 14.1464 8.64649L12.3536 6.8536C12.1583 6.65834 12.1583 6.34176 12.3536 6.14649L14.1464 4.3536C14.3417 4.15834 14.6583 4.15834 14.8536 4.3536L16.6464 6.14649Z",fill:"currentColor"})),d=m;0&&(module.exports={IconInsights});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconInsights/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconInsights: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"insights, analyze\">\n <path\n d=\"M20 8.00005C21.1046 8.00005 22 8.89548 22 10C22 11.1046 21.1046 12 20 12C19.8843 12 19.7714 11.9876 19.6611 11.9688L16.875 15.3116C16.954 15.5265 17 15.7577 17 16C17 17.1046 16.1046 18 15 18C13.8954 18 13 17.1046 13 16C13 15.8844 13.0114 15.7714 13.0303 15.6612L9.6875 12.875C9.47279 12.9538 9.24201 13 9 13C8.93472 13 8.87032 12.9954 8.80664 12.9893L5.81836 17.1719C5.93359 17.4245 6 17.7043 6 18C6 19.1046 5.10457 20 4 20C2.89543 20 2 19.1046 2 18C2 16.8955 2.89543 16 4 16C4.06492 16 4.12905 16.0038 4.19238 16.0098L7.18066 11.8262C7.06601 11.5741 7 11.295 7 11C7 9.89548 7.89543 9.00005 9 9.00005C10.1046 9.00005 11 9.89548 11 11C11 11.1154 10.9875 11.228 10.9688 11.3379L14.3105 14.1241C14.5257 14.045 14.7575 14 15 14C15.1149 14 15.2273 14.0117 15.3369 14.0303L18.123 10.6875C18.0444 10.473 18 10.2418 18 10C18 8.89548 18.8954 8.00005 20 8.00005Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.5 7.00005C5.32843 7.00005 6 7.67162 6 8.50005C6 9.32847 5.32843 10 4.5 10C3.67157 10 3 9.32847 3 8.50005C3 7.67162 3.67157 7.00005 4.5 7.00005Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.6464 6.14649C16.8417 6.34176 16.8417 6.65834 16.6464 6.8536L14.8536 8.64649C14.6583 8.84176 14.3417 8.84176 14.1464 8.64649L12.3536 6.8536C12.1583 6.65834 12.1583 6.34176 12.3536 6.14649L14.1464 4.3536C14.3417 4.15834 14.6583 4.15834 14.8536 4.3536L16.6464 6.14649Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconInsights;\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,CAAiB,GAAGF,EAAO,UAAU,qBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,u1BACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gRACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconInsights_exports","__export","IconInsights","IconInsights_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconInsights","props","React","CentralIconBase","IconInsights_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import n from"react";var l=({children:e,size:r=24,ariaLabel:C,color:p,ariaHidden:o=!0,style:a,...s})=>n.createElement("svg",{...s,"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:p,...a}},C&&!o&&n.createElement("title",null,C),e);var i=e=>t.createElement(l,{...e,ariaLabel:"insights, analyze"},t.createElement("path",{d:"M20 8.00005C21.1046 8.00005 22 8.89548 22 10C22 11.1046 21.1046 12 20 12C19.8843 12 19.7714 11.9876 19.6611 11.9688L16.875 15.3116C16.954 15.5265 17 15.7577 17 16C17 17.1046 16.1046 18 15 18C13.8954 18 13 17.1046 13 16C13 15.8844 13.0114 15.7714 13.0303 15.6612L9.6875 12.875C9.47279 12.9538 9.24201 13 9 13C8.93472 13 8.87032 12.9954 8.80664 12.9893L5.81836 17.1719C5.93359 17.4245 6 17.7043 6 18C6 19.1046 5.10457 20 4 20C2.89543 20 2 19.1046 2 18C2 16.8955 2.89543 16 4 16C4.06492 16 4.12905 16.0038 4.19238 16.0098L7.18066 11.8262C7.06601 11.5741 7 11.295 7 11C7 9.89548 7.89543 9.00005 9 9.00005C10.1046 9.00005 11 9.89548 11 11C11 11.1154 10.9875 11.228 10.9688 11.3379L14.3105 14.1241C14.5257 14.045 14.7575 14 15 14C15.1149 14 15.2273 14.0117 15.3369 14.0303L18.123 10.6875C18.0444 10.473 18 10.2418 18 10C18 8.89548 18.8954 8.00005 20 8.00005Z",fill:"currentColor"}),t.createElement("path",{d:"M4.5 7.00005C5.32843 7.00005 6 7.67162 6 8.50005C6 9.32847 5.32843 10 4.5 10C3.67157 10 3 9.32847 3 8.50005C3 7.67162 3.67157 7.00005 4.5 7.00005Z",fill:"currentColor"}),t.createElement("path",{d:"M16.6464 6.14649C16.8417 6.34176 16.8417 6.65834 16.6464 6.8536L14.8536 8.64649C14.6583 8.84176 14.3417 8.84176 14.1464 8.64649L12.3536 6.8536C12.1583 6.65834 12.1583 6.34176 12.3536 6.14649L14.1464 4.3536C14.3417 4.15834 14.6583 4.15834 14.8536 4.3536L16.6464 6.14649Z",fill:"currentColor"})),L=i;export{i as IconInsights,L as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconInsights/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconInsights: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"insights, analyze\">\n <path\n d=\"M20 8.00005C21.1046 8.00005 22 8.89548 22 10C22 11.1046 21.1046 12 20 12C19.8843 12 19.7714 11.9876 19.6611 11.9688L16.875 15.3116C16.954 15.5265 17 15.7577 17 16C17 17.1046 16.1046 18 15 18C13.8954 18 13 17.1046 13 16C13 15.8844 13.0114 15.7714 13.0303 15.6612L9.6875 12.875C9.47279 12.9538 9.24201 13 9 13C8.93472 13 8.87032 12.9954 8.80664 12.9893L5.81836 17.1719C5.93359 17.4245 6 17.7043 6 18C6 19.1046 5.10457 20 4 20C2.89543 20 2 19.1046 2 18C2 16.8955 2.89543 16 4 16C4.06492 16 4.12905 16.0038 4.19238 16.0098L7.18066 11.8262C7.06601 11.5741 7 11.295 7 11C7 9.89548 7.89543 9.00005 9 9.00005C10.1046 9.00005 11 9.89548 11 11C11 11.1154 10.9875 11.228 10.9688 11.3379L14.3105 14.1241C14.5257 14.045 14.7575 14 15 14C15.1149 14 15.2273 14.0117 15.3369 14.0303L18.123 10.6875C18.0444 10.473 18 10.2418 18 10C18 8.89548 18.8954 8.00005 20 8.00005Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.5 7.00005C5.32843 7.00005 6 7.67162 6 8.50005C6 9.32847 5.32843 10 4.5 10C3.67157 10 3 9.32847 3 8.50005C3 7.67162 3.67157 7.00005 4.5 7.00005Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.6464 6.14649C16.8417 6.34176 16.8417 6.65834 16.6464 6.8536L14.8536 8.64649C14.6583 8.84176 14.3417 8.84176 14.1464 8.64649L12.3536 6.8536C12.1583 6.65834 12.1583 6.34176 12.3536 6.14649L14.1464 4.3536C14.3417 4.15834 14.6583 4.15834 14.8536 4.3536L16.6464 6.14649Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconInsights;\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,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QACC,EAAE,u1BACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gRACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconInsights","props","React","CentralIconBase","IconInsights_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var l=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var V=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(r,C)=>{for(var e in C)l(r,e,{get:C[e],enumerable:!0})},a=(r,C,e,n)=>{if(C&&typeof C=="object"||typeof C=="function")for(let t of d(C))!g.call(r,t)&&t!==e&&l(r,t,{get:()=>C[t],enumerable:!(n=h(C,t))||n.enumerable});return r};var s=(r,C,e)=>(e=r!=null?u(V(r)):{},a(C||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>a(l({},"__esModule",{value:!0}),r);var w={};x(w,{IconShaders:()=>f,default:()=>I});module.exports=B(w);var o=s(require("react"));var p=s(require("react")),i=({children:r,size:C=24,ariaLabel:e,color:n,ariaHidden:t=!0,style:m,...c})=>p.default.createElement("svg",{...c,"aria-hidden":t,role:t?void 0:"img",width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...m}},e&&!t&&p.default.createElement("title",null,e),r);var f=r=>o.default.createElement(i,{...r,ariaLabel:"shaders, material, effect"},o.default.createElement("path",{d:"M3 17.8926C3.68544 17.593 4.41243 17.4109 5.19727 17.5449C5.4381 17.5861 5.75702 17.7628 6.19727 18.208C6.63336 18.6491 7.06863 19.2256 7.58984 19.9043C7.85458 20.249 8.14304 20.6242 8.45996 21H4C3.44772 21 3 20.5523 3 20V17.8926Z",fill:"currentColor"}),o.default.createElement("path",{d:"M10.918 3C10.8389 4.90907 11.2311 6.32003 12.0518 7.38574C12.9949 8.61036 14.3787 9.20143 15.6035 9.66992C16.9035 10.1672 18.0634 10.5436 19.0645 11.2646C19.8534 11.833 20.5487 12.6294 21 13.9297V20C21 20.5523 20.5523 21 20 21H19.1953C19.0052 19.7746 18.6307 18.8103 18.0859 18.041C17.4945 17.2057 16.7534 16.6669 15.999 16.2686C15.2755 15.8866 14.4662 15.6012 13.8057 15.3379C13.1083 15.0599 12.5013 14.782 11.9756 14.3867C11.2553 13.845 10.7126 13.1921 10.168 12.5098C9.6612 11.8749 9.07624 11.1022 8.35156 10.6035C7.53281 10.0401 6.56518 9.83084 5.375 10.1504C4.66649 10.3406 3.88619 10.7166 3 11.29V4C3 3.44772 3.44772 3 4 3H10.918Z",fill:"currentColor"}),o.default.createElement("path",{d:"M5.89355 12.082C6.52752 11.9118 6.88966 12.0262 7.21777 12.252C7.63982 12.5425 8.01858 13.0238 8.60449 13.7578C9.15263 14.4445 9.83183 15.2762 10.7734 15.9844C11.5203 16.546 12.3319 16.9033 13.0645 17.1953C13.8337 17.502 14.4668 17.722 15.0654 18.0381C15.6334 18.338 16.0956 18.6901 16.4541 19.1963C16.7503 19.6146 17.0056 20.1843 17.166 21H11.2979C10.5707 20.4538 9.90156 19.6304 9.17676 18.6865C8.68967 18.0522 8.16547 17.3544 7.62012 16.8027C7.07906 16.2555 6.39297 15.72 5.5332 15.5732C4.59329 15.4129 3.73819 15.5329 3 15.7588V13.7393C4.32379 12.7338 5.2411 12.2572 5.89355 12.082Z",fill:"currentColor"}),o.default.createElement("path",{d:"M20 3C20.5523 3 21 3.44772 21 4V10.2754C20.7558 10.044 20.4998 9.83349 20.2334 9.6416C18.9637 8.72705 17.4748 8.24446 16.3174 7.80176C15.0849 7.33032 14.2013 6.89948 13.6357 6.16504C13.1771 5.56926 12.8367 4.64055 12.9189 3H20Z",fill:"currentColor"})),I=f;0&&(module.exports={IconShaders});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShaders/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShaders: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"shaders, material, effect\">\n <path\n d=\"M3 17.8926C3.68544 17.593 4.41243 17.4109 5.19727 17.5449C5.4381 17.5861 5.75702 17.7628 6.19727 18.208C6.63336 18.6491 7.06863 19.2256 7.58984 19.9043C7.85458 20.249 8.14304 20.6242 8.45996 21H4C3.44772 21 3 20.5523 3 20V17.8926Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.918 3C10.8389 4.90907 11.2311 6.32003 12.0518 7.38574C12.9949 8.61036 14.3787 9.20143 15.6035 9.66992C16.9035 10.1672 18.0634 10.5436 19.0645 11.2646C19.8534 11.833 20.5487 12.6294 21 13.9297V20C21 20.5523 20.5523 21 20 21H19.1953C19.0052 19.7746 18.6307 18.8103 18.0859 18.041C17.4945 17.2057 16.7534 16.6669 15.999 16.2686C15.2755 15.8866 14.4662 15.6012 13.8057 15.3379C13.1083 15.0599 12.5013 14.782 11.9756 14.3867C11.2553 13.845 10.7126 13.1921 10.168 12.5098C9.6612 11.8749 9.07624 11.1022 8.35156 10.6035C7.53281 10.0401 6.56518 9.83084 5.375 10.1504C4.66649 10.3406 3.88619 10.7166 3 11.29V4C3 3.44772 3.44772 3 4 3H10.918Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.89355 12.082C6.52752 11.9118 6.88966 12.0262 7.21777 12.252C7.63982 12.5425 8.01858 13.0238 8.60449 13.7578C9.15263 14.4445 9.83183 15.2762 10.7734 15.9844C11.5203 16.546 12.3319 16.9033 13.0645 17.1953C13.8337 17.502 14.4668 17.722 15.0654 18.0381C15.6334 18.338 16.0956 18.6901 16.4541 19.1963C16.7503 19.6146 17.0056 20.1843 17.166 21H11.2979C10.5707 20.4538 9.90156 19.6304 9.17676 18.6865C8.68967 18.0522 8.16547 17.3544 7.62012 16.8027C7.07906 16.2555 6.39297 15.72 5.5332 15.5732C4.59329 15.4129 3.73819 15.5329 3 15.7588V13.7393C4.32379 12.7338 5.2411 12.2572 5.89355 12.082Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20 3C20.5523 3 21 3.44772 21 4V10.2754C20.7558 10.044 20.4998 9.83349 20.2334 9.6416C18.9637 8.72705 17.4748 8.24446 16.3174 7.80176C15.0849 7.33032 14.2013 6.89948 13.6357 6.16504C13.1771 5.56926 12.8367 4.64055 12.9189 3H20Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShaders;\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,6BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,yOACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+nBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6kBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sOACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconShaders_exports","__export","IconShaders","IconShaders_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconShaders","props","React","CentralIconBase","IconShaders_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import C from"react";import n from"react";var l=({children:e,size:r=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:a,...s})=>n.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:p,...a}},o&&!t&&n.createElement("title",null,o),e);var i=e=>C.createElement(l,{...e,ariaLabel:"shaders, material, effect"},C.createElement("path",{d:"M3 17.8926C3.68544 17.593 4.41243 17.4109 5.19727 17.5449C5.4381 17.5861 5.75702 17.7628 6.19727 18.208C6.63336 18.6491 7.06863 19.2256 7.58984 19.9043C7.85458 20.249 8.14304 20.6242 8.45996 21H4C3.44772 21 3 20.5523 3 20V17.8926Z",fill:"currentColor"}),C.createElement("path",{d:"M10.918 3C10.8389 4.90907 11.2311 6.32003 12.0518 7.38574C12.9949 8.61036 14.3787 9.20143 15.6035 9.66992C16.9035 10.1672 18.0634 10.5436 19.0645 11.2646C19.8534 11.833 20.5487 12.6294 21 13.9297V20C21 20.5523 20.5523 21 20 21H19.1953C19.0052 19.7746 18.6307 18.8103 18.0859 18.041C17.4945 17.2057 16.7534 16.6669 15.999 16.2686C15.2755 15.8866 14.4662 15.6012 13.8057 15.3379C13.1083 15.0599 12.5013 14.782 11.9756 14.3867C11.2553 13.845 10.7126 13.1921 10.168 12.5098C9.6612 11.8749 9.07624 11.1022 8.35156 10.6035C7.53281 10.0401 6.56518 9.83084 5.375 10.1504C4.66649 10.3406 3.88619 10.7166 3 11.29V4C3 3.44772 3.44772 3 4 3H10.918Z",fill:"currentColor"}),C.createElement("path",{d:"M5.89355 12.082C6.52752 11.9118 6.88966 12.0262 7.21777 12.252C7.63982 12.5425 8.01858 13.0238 8.60449 13.7578C9.15263 14.4445 9.83183 15.2762 10.7734 15.9844C11.5203 16.546 12.3319 16.9033 13.0645 17.1953C13.8337 17.502 14.4668 17.722 15.0654 18.0381C15.6334 18.338 16.0956 18.6901 16.4541 19.1963C16.7503 19.6146 17.0056 20.1843 17.166 21H11.2979C10.5707 20.4538 9.90156 19.6304 9.17676 18.6865C8.68967 18.0522 8.16547 17.3544 7.62012 16.8027C7.07906 16.2555 6.39297 15.72 5.5332 15.5732C4.59329 15.4129 3.73819 15.5329 3 15.7588V13.7393C4.32379 12.7338 5.2411 12.2572 5.89355 12.082Z",fill:"currentColor"}),C.createElement("path",{d:"M20 3C20.5523 3 21 3.44772 21 4V10.2754C20.7558 10.044 20.4998 9.83349 20.2334 9.6416C18.9637 8.72705 17.4748 8.24446 16.3174 7.80176C15.0849 7.33032 14.2013 6.89948 13.6357 6.16504C13.1771 5.56926 12.8367 4.64055 12.9189 3H20Z",fill:"currentColor"})),h=i;export{i as IconShaders,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShaders/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShaders: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"shaders, material, effect\">\n <path\n d=\"M3 17.8926C3.68544 17.593 4.41243 17.4109 5.19727 17.5449C5.4381 17.5861 5.75702 17.7628 6.19727 18.208C6.63336 18.6491 7.06863 19.2256 7.58984 19.9043C7.85458 20.249 8.14304 20.6242 8.45996 21H4C3.44772 21 3 20.5523 3 20V17.8926Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.918 3C10.8389 4.90907 11.2311 6.32003 12.0518 7.38574C12.9949 8.61036 14.3787 9.20143 15.6035 9.66992C16.9035 10.1672 18.0634 10.5436 19.0645 11.2646C19.8534 11.833 20.5487 12.6294 21 13.9297V20C21 20.5523 20.5523 21 20 21H19.1953C19.0052 19.7746 18.6307 18.8103 18.0859 18.041C17.4945 17.2057 16.7534 16.6669 15.999 16.2686C15.2755 15.8866 14.4662 15.6012 13.8057 15.3379C13.1083 15.0599 12.5013 14.782 11.9756 14.3867C11.2553 13.845 10.7126 13.1921 10.168 12.5098C9.6612 11.8749 9.07624 11.1022 8.35156 10.6035C7.53281 10.0401 6.56518 9.83084 5.375 10.1504C4.66649 10.3406 3.88619 10.7166 3 11.29V4C3 3.44772 3.44772 3 4 3H10.918Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.89355 12.082C6.52752 11.9118 6.88966 12.0262 7.21777 12.252C7.63982 12.5425 8.01858 13.0238 8.60449 13.7578C9.15263 14.4445 9.83183 15.2762 10.7734 15.9844C11.5203 16.546 12.3319 16.9033 13.0645 17.1953C13.8337 17.502 14.4668 17.722 15.0654 18.0381C15.6334 18.338 16.0956 18.6901 16.4541 19.1963C16.7503 19.6146 17.0056 20.1843 17.166 21H11.2979C10.5707 20.4538 9.90156 19.6304 9.17676 18.6865C8.68967 18.0522 8.16547 17.3544 7.62012 16.8027C7.07906 16.2555 6.39297 15.72 5.5332 15.5732C4.59329 15.4129 3.73819 15.5329 3 15.7588V13.7393C4.32379 12.7338 5.2411 12.2572 5.89355 12.082Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20 3C20.5523 3 21 3.44772 21 4V10.2754C20.7558 10.044 20.4998 9.83349 20.2334 9.6416C18.9637 8.72705 17.4748 8.24446 16.3174 7.80176C15.0849 7.33032 14.2013 6.89948 13.6357 6.16504C13.1771 5.56926 12.8367 4.64055 12.9189 3H20Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShaders;\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,6BACpCC,EAAA,cAAC,QACC,EAAE,yOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+nBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6kBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sOACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconShaders","props","React","CentralIconBase","IconShaders_default"]}
|
package/README.md
CHANGED
|
@@ -598,6 +598,7 @@ Below is a complete list of available icons:
|
|
|
598
598
|
- IconEraser
|
|
599
599
|
- IconEraserSimple
|
|
600
600
|
- IconFeather
|
|
601
|
+
- IconGlass
|
|
601
602
|
- IconHighlight
|
|
602
603
|
- IconKeyframe
|
|
603
604
|
- IconLineThickness
|
|
@@ -616,6 +617,7 @@ Below is a complete list of available icons:
|
|
|
616
617
|
- IconRewrite1
|
|
617
618
|
- IconRewrite2
|
|
618
619
|
- IconRuler
|
|
620
|
+
- IconShaders
|
|
619
621
|
- IconSignature
|
|
620
622
|
- IconSlice
|
|
621
623
|
- IconSummary
|
|
@@ -1497,6 +1499,7 @@ Below is a complete list of available icons:
|
|
|
1497
1499
|
- IconChart5
|
|
1498
1500
|
- IconChart6
|
|
1499
1501
|
- IconChart7
|
|
1502
|
+
- IconInsights
|
|
1500
1503
|
- IconLeaderboard
|
|
1501
1504
|
- IconLineChart1
|
|
1502
1505
|
- IconLineChart2
|
package/icons/index.d.ts
CHANGED
|
@@ -729,6 +729,7 @@ export type CentralIconName =
|
|
|
729
729
|
| "IconGiroCards"
|
|
730
730
|
| "IconGit"
|
|
731
731
|
| "IconGithub"
|
|
732
|
+
| "IconGlass"
|
|
732
733
|
| "IconGlobus"
|
|
733
734
|
| "IconGoldMedal"
|
|
734
735
|
| "IconGolfBall"
|
|
@@ -799,6 +800,7 @@ export type CentralIconName =
|
|
|
799
800
|
| "IconInitiatives"
|
|
800
801
|
| "IconInjection"
|
|
801
802
|
| "IconInsertHtml"
|
|
803
|
+
| "IconInsights"
|
|
802
804
|
| "IconInstagram"
|
|
803
805
|
| "IconInvite"
|
|
804
806
|
| "IconItalic"
|
|
@@ -1174,6 +1176,7 @@ export type CentralIconName =
|
|
|
1174
1176
|
| "IconSettingsSliderVer"
|
|
1175
1177
|
| "IconSettingsToggle1"
|
|
1176
1178
|
| "IconSettingsToggle2"
|
|
1179
|
+
| "IconShaders"
|
|
1177
1180
|
| "IconShadows"
|
|
1178
1181
|
| "IconShaka1"
|
|
1179
1182
|
| "IconShaka2"
|