@central-icons-react/round-filled-radius-3-stroke-1 0.0.57 → 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 5C8.13401 5 5 8.13401 5 12C5 12.2761 5.22386 12.5 5.5 12.5C5.77614 12.5 6 12.2761 6 12C6 8.68629 8.68629 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5C12.5 5.22386 12.2761 5 12 5Z",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 5C8.13401 5 5 8.13401 5 12C5 12.2761 5.22386 12.5 5.5 12.5C5.77614 12.5 6 12.2761 6 12C6 8.68629 8.68629 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5C12.5 5.22386 12.2761 5 12 5Z\"\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,mSACF,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 5C8.13401 5 5 8.13401 5 12C5 12.2761 5.22386 12.5 5.5 12.5C5.77614 12.5 6 12.2761 6 12C6 8.68629 8.68629 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5C12.5 5.22386 12.2761 5 12 5Z",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 5C8.13401 5 5 8.13401 5 12C5 12.2761 5.22386 12.5 5.5 12.5C5.77614 12.5 6 12.2761 6 12C6 8.68629 8.68629 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5C12.5 5.22386 12.2761 5 12 5Z\"\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,mSACF,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 L=Object.create;var l=Object.defineProperty;var u=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=u(t,o))||n.enumerable});return r};var s=(r,t,e)=>(e=r!=null?L(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 7.99991C21.1046 7.99991 22 8.89534 22 9.99991C21.9999 11.1044 21.1045 11.9999 20 11.9999C19.6938 11.9999 19.4049 11.9286 19.1455 11.8056L16.6221 14.8339C16.8586 15.1624 17 15.5642 17 15.9999C16.9999 17.1044 16.1045 17.9999 15 17.9999C13.8955 17.9999 13.0001 17.1044 13 15.9999C13 15.6936 13.0703 15.404 13.1934 15.1444L10.166 12.622C9.8375 12.8586 9.43574 12.9999 9 12.9999C8.74663 12.9999 8.5053 12.9501 8.28223 12.8642L5.53223 16.7157C5.82379 17.0632 6 17.5108 6 17.9999C5.99995 19.1044 5.10454 19.9999 4 19.9999C2.89546 19.9999 2.00005 19.1044 2 17.9999C2 16.8953 2.89543 15.9999 4 15.9999C4.25324 15.9999 4.49479 16.0488 4.71777 16.1347L7.46777 12.2841C7.17622 11.9366 7.00002 11.489 7 10.9999C7 9.89534 7.89543 8.99991 9 8.99991C10.1046 8.99991 11 9.89534 11 10.9999C11 11.3053 10.929 11.5935 10.8066 11.8524L13.834 14.3759C14.1623 14.1397 14.5647 13.9999 15 13.9999C15.306 13.9999 15.5952 14.0704 15.8545 14.1933L18.377 11.1659C18.1406 10.8375 18 10.4354 18 9.99991C18 8.89534 18.8954 7.99991 20 7.99991Z",fill:"currentColor"}),C.default.createElement("path",{d:"M4.5 6.99991C5.32843 6.99991 6 7.67148 6 8.49991C5.99995 9.32829 5.3284 9.99991 4.5 9.99991C3.6716 9.99991 3.00005 9.32829 3 8.49991C3 7.67148 3.67157 6.99991 4.5 6.99991Z",fill:"currentColor"}),C.default.createElement("path",{d:"M13.793 4.49991C14.1835 4.10942 14.8165 4.10939 15.207 4.49991L16.5 5.79287C16.866 6.15899 16.8886 6.73805 16.5684 7.13076L16.5 7.20694L15.207 8.49991C14.8166 8.89029 14.1835 8.89024 13.793 8.49991L12.5 7.20694C12.1095 6.81644 12.1096 6.18341 12.5 5.79287L13.793 4.49991Z",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 7.99991C21.1046 7.99991 22 8.89534 22 9.99991C21.9999 11.1044 21.1045 11.9999 20 11.9999C19.6938 11.9999 19.4049 11.9286 19.1455 11.8056L16.6221 14.8339C16.8586 15.1624 17 15.5642 17 15.9999C16.9999 17.1044 16.1045 17.9999 15 17.9999C13.8955 17.9999 13.0001 17.1044 13 15.9999C13 15.6936 13.0703 15.404 13.1934 15.1444L10.166 12.622C9.8375 12.8586 9.43574 12.9999 9 12.9999C8.74663 12.9999 8.5053 12.9501 8.28223 12.8642L5.53223 16.7157C5.82379 17.0632 6 17.5108 6 17.9999C5.99995 19.1044 5.10454 19.9999 4 19.9999C2.89546 19.9999 2.00005 19.1044 2 17.9999C2 16.8953 2.89543 15.9999 4 15.9999C4.25324 15.9999 4.49479 16.0488 4.71777 16.1347L7.46777 12.2841C7.17622 11.9366 7.00002 11.489 7 10.9999C7 9.89534 7.89543 8.99991 9 8.99991C10.1046 8.99991 11 9.89534 11 10.9999C11 11.3053 10.929 11.5935 10.8066 11.8524L13.834 14.3759C14.1623 14.1397 14.5647 13.9999 15 13.9999C15.306 13.9999 15.5952 14.0704 15.8545 14.1933L18.377 11.1659C18.1406 10.8375 18 10.4354 18 9.99991C18 8.89534 18.8954 7.99991 20 7.99991Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.5 6.99991C5.32843 6.99991 6 7.67148 6 8.49991C5.99995 9.32829 5.3284 9.99991 4.5 9.99991C3.6716 9.99991 3.00005 9.32829 3 8.49991C3 7.67148 3.67157 6.99991 4.5 6.99991Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.793 4.49991C14.1835 4.10942 14.8165 4.10939 15.207 4.49991L16.5 5.79287C16.866 6.15899 16.8886 6.73805 16.5684 7.13076L16.5 7.20694L15.207 8.49991C14.8166 8.89029 14.1835 8.89024 13.793 8.49991L12.5 7.20694C12.1095 6.81644 12.1096 6.18341 12.5 5.79287L13.793 4.49991Z\"\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,y/BACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8KACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kRACF,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 7.99991C21.1046 7.99991 22 8.89534 22 9.99991C21.9999 11.1044 21.1045 11.9999 20 11.9999C19.6938 11.9999 19.4049 11.9286 19.1455 11.8056L16.6221 14.8339C16.8586 15.1624 17 15.5642 17 15.9999C16.9999 17.1044 16.1045 17.9999 15 17.9999C13.8955 17.9999 13.0001 17.1044 13 15.9999C13 15.6936 13.0703 15.404 13.1934 15.1444L10.166 12.622C9.8375 12.8586 9.43574 12.9999 9 12.9999C8.74663 12.9999 8.5053 12.9501 8.28223 12.8642L5.53223 16.7157C5.82379 17.0632 6 17.5108 6 17.9999C5.99995 19.1044 5.10454 19.9999 4 19.9999C2.89546 19.9999 2.00005 19.1044 2 17.9999C2 16.8953 2.89543 15.9999 4 15.9999C4.25324 15.9999 4.49479 16.0488 4.71777 16.1347L7.46777 12.2841C7.17622 11.9366 7.00002 11.489 7 10.9999C7 9.89534 7.89543 8.99991 9 8.99991C10.1046 8.99991 11 9.89534 11 10.9999C11 11.3053 10.929 11.5935 10.8066 11.8524L13.834 14.3759C14.1623 14.1397 14.5647 13.9999 15 13.9999C15.306 13.9999 15.5952 14.0704 15.8545 14.1933L18.377 11.1659C18.1406 10.8375 18 10.4354 18 9.99991C18 8.89534 18.8954 7.99991 20 7.99991Z",fill:"currentColor"}),t.createElement("path",{d:"M4.5 6.99991C5.32843 6.99991 6 7.67148 6 8.49991C5.99995 9.32829 5.3284 9.99991 4.5 9.99991C3.6716 9.99991 3.00005 9.32829 3 8.49991C3 7.67148 3.67157 6.99991 4.5 6.99991Z",fill:"currentColor"}),t.createElement("path",{d:"M13.793 4.49991C14.1835 4.10942 14.8165 4.10939 15.207 4.49991L16.5 5.79287C16.866 6.15899 16.8886 6.73805 16.5684 7.13076L16.5 7.20694L15.207 8.49991C14.8166 8.89029 14.1835 8.89024 13.793 8.49991L12.5 7.20694C12.1095 6.81644 12.1096 6.18341 12.5 5.79287L13.793 4.49991Z",fill:"currentColor"})),u=i;export{i as IconInsights,u 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 7.99991C21.1046 7.99991 22 8.89534 22 9.99991C21.9999 11.1044 21.1045 11.9999 20 11.9999C19.6938 11.9999 19.4049 11.9286 19.1455 11.8056L16.6221 14.8339C16.8586 15.1624 17 15.5642 17 15.9999C16.9999 17.1044 16.1045 17.9999 15 17.9999C13.8955 17.9999 13.0001 17.1044 13 15.9999C13 15.6936 13.0703 15.404 13.1934 15.1444L10.166 12.622C9.8375 12.8586 9.43574 12.9999 9 12.9999C8.74663 12.9999 8.5053 12.9501 8.28223 12.8642L5.53223 16.7157C5.82379 17.0632 6 17.5108 6 17.9999C5.99995 19.1044 5.10454 19.9999 4 19.9999C2.89546 19.9999 2.00005 19.1044 2 17.9999C2 16.8953 2.89543 15.9999 4 15.9999C4.25324 15.9999 4.49479 16.0488 4.71777 16.1347L7.46777 12.2841C7.17622 11.9366 7.00002 11.489 7 10.9999C7 9.89534 7.89543 8.99991 9 8.99991C10.1046 8.99991 11 9.89534 11 10.9999C11 11.3053 10.929 11.5935 10.8066 11.8524L13.834 14.3759C14.1623 14.1397 14.5647 13.9999 15 13.9999C15.306 13.9999 15.5952 14.0704 15.8545 14.1933L18.377 11.1659C18.1406 10.8375 18 10.4354 18 9.99991C18 8.89534 18.8954 7.99991 20 7.99991Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.5 6.99991C5.32843 6.99991 6 7.67148 6 8.49991C5.99995 9.32829 5.3284 9.99991 4.5 9.99991C3.6716 9.99991 3.00005 9.32829 3 8.49991C3 7.67148 3.67157 6.99991 4.5 6.99991Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.793 4.49991C14.1835 4.10942 14.8165 4.10939 15.207 4.49991L16.5 5.79287C16.866 6.15899 16.8886 6.73805 16.5684 7.13076L16.5 7.20694L15.207 8.49991C14.8166 8.89029 14.1835 8.89024 13.793 8.49991L12.5 7.20694C12.1095 6.81644 12.1096 6.18341 12.5 5.79287L13.793 4.49991Z\"\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,y/BACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8KACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kRACF,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:"M2.98438 17.3574C3.67421 17.0798 4.44149 16.9086 5.28027 17.0518C5.67591 17.1193 6.08704 17.3854 6.55273 17.8564C7.01612 18.3252 7.47271 18.932 7.98535 19.5996C8.33454 20.0543 8.71117 20.5381 9.12402 21H6.48438C4.55138 21 2.98438 19.433 2.98438 17.5V17.3574Z",fill:"currentColor"}),o.default.createElement("path",{d:"M5.7627 11.5986C6.53576 11.391 7.04921 11.5297 7.5 11.8398C7.99779 12.1824 8.42888 12.736 8.99512 13.4453C9.54241 14.1309 10.1869 14.9184 11.0732 15.585C11.7648 16.105 12.5252 16.4419 13.249 16.7305C13.9911 17.0263 14.6679 17.2631 15.2979 17.5957C15.9125 17.9202 16.4446 18.3197 16.8613 18.9082C17.2168 19.4103 17.5042 20.0754 17.6738 20.9951C17.6159 20.998 17.5576 21 17.499 21H10.5195C9.90646 20.4366 9.34351 19.7272 8.77832 18.9912C8.28262 18.3457 7.78179 17.6774 7.26367 17.1533C6.74776 16.6315 6.15324 16.1868 5.44824 16.0664C4.53445 15.9105 3.70387 16.0482 2.98438 16.29V13.125C4.18225 12.2449 5.07379 11.7836 5.7627 11.5986Z",fill:"currentColor"}),o.default.createElement("path",{d:"M11.4102 3.1582C11.3584 4.91423 11.7366 6.15824 12.4463 7.08008C13.295 8.18232 14.5544 8.73288 15.7812 9.20215C17.0456 9.68575 18.2873 10.089 19.3555 10.8584C19.9816 11.3094 20.5487 11.8906 20.999 12.6992V17.5C20.999 19.028 20.0195 20.3264 18.6543 20.8037C18.4627 19.7721 18.1291 18.9689 17.6768 18.3301C17.1435 17.577 16.4725 17.0847 15.7646 16.7109C15.0722 16.3454 14.3069 16.0759 13.6191 15.8018C12.9131 15.5203 12.2557 15.2229 11.6748 14.7861C10.8992 14.2029 10.3219 13.5057 9.77637 12.8223C9.2498 12.1626 8.71639 11.4623 8.06738 11.0156C7.37124 10.5366 6.55415 10.3505 5.50293 10.6328C4.78633 10.8253 3.96447 11.236 2.98438 11.9014V6.6582C2.98438 4.72521 4.55138 3.1582 6.48438 3.1582H11.4102Z",fill:"currentColor"}),o.default.createElement("path",{d:"M17.499 3.1582C19.432 3.1582 20.999 4.72521 20.999 6.6582V10.9883C20.6719 10.6276 20.3163 10.3176 19.9404 10.0469C18.7379 9.18068 17.3308 8.72491 16.1377 8.26855C14.9073 7.79793 13.8992 7.32745 13.2393 6.4707C12.7064 5.77868 12.3588 4.77121 12.4111 3.1582H17.499Z",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=\"M2.98438 17.3574C3.67421 17.0798 4.44149 16.9086 5.28027 17.0518C5.67591 17.1193 6.08704 17.3854 6.55273 17.8564C7.01612 18.3252 7.47271 18.932 7.98535 19.5996C8.33454 20.0543 8.71117 20.5381 9.12402 21H6.48438C4.55138 21 2.98438 19.433 2.98438 17.5V17.3574Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.7627 11.5986C6.53576 11.391 7.04921 11.5297 7.5 11.8398C7.99779 12.1824 8.42888 12.736 8.99512 13.4453C9.54241 14.1309 10.1869 14.9184 11.0732 15.585C11.7648 16.105 12.5252 16.4419 13.249 16.7305C13.9911 17.0263 14.6679 17.2631 15.2979 17.5957C15.9125 17.9202 16.4446 18.3197 16.8613 18.9082C17.2168 19.4103 17.5042 20.0754 17.6738 20.9951C17.6159 20.998 17.5576 21 17.499 21H10.5195C9.90646 20.4366 9.34351 19.7272 8.77832 18.9912C8.28262 18.3457 7.78179 17.6774 7.26367 17.1533C6.74776 16.6315 6.15324 16.1868 5.44824 16.0664C4.53445 15.9105 3.70387 16.0482 2.98438 16.29V13.125C4.18225 12.2449 5.07379 11.7836 5.7627 11.5986Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.4102 3.1582C11.3584 4.91423 11.7366 6.15824 12.4463 7.08008C13.295 8.18232 14.5544 8.73288 15.7812 9.20215C17.0456 9.68575 18.2873 10.089 19.3555 10.8584C19.9816 11.3094 20.5487 11.8906 20.999 12.6992V17.5C20.999 19.028 20.0195 20.3264 18.6543 20.8037C18.4627 19.7721 18.1291 18.9689 17.6768 18.3301C17.1435 17.577 16.4725 17.0847 15.7646 16.7109C15.0722 16.3454 14.3069 16.0759 13.6191 15.8018C12.9131 15.5203 12.2557 15.2229 11.6748 14.7861C10.8992 14.2029 10.3219 13.5057 9.77637 12.8223C9.2498 12.1626 8.71639 11.4623 8.06738 11.0156C7.37124 10.5366 6.55415 10.3505 5.50293 10.6328C4.78633 10.8253 3.96447 11.236 2.98438 11.9014V6.6582C2.98438 4.72521 4.55138 3.1582 6.48438 3.1582H11.4102Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.499 3.1582C19.432 3.1582 20.999 4.72521 20.999 6.6582V10.9883C20.6719 10.6276 20.3163 10.3176 19.9404 10.0469C18.7379 9.18068 17.3308 8.72491 16.1377 8.26855C14.9073 7.79793 13.8992 7.32745 13.2393 6.4707C12.7064 5.77868 12.3588 4.77121 12.4111 3.1582H17.499Z\"\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,qQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0nBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6rBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0QACF,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:"M2.98438 17.3574C3.67421 17.0798 4.44149 16.9086 5.28027 17.0518C5.67591 17.1193 6.08704 17.3854 6.55273 17.8564C7.01612 18.3252 7.47271 18.932 7.98535 19.5996C8.33454 20.0543 8.71117 20.5381 9.12402 21H6.48438C4.55138 21 2.98438 19.433 2.98438 17.5V17.3574Z",fill:"currentColor"}),C.createElement("path",{d:"M5.7627 11.5986C6.53576 11.391 7.04921 11.5297 7.5 11.8398C7.99779 12.1824 8.42888 12.736 8.99512 13.4453C9.54241 14.1309 10.1869 14.9184 11.0732 15.585C11.7648 16.105 12.5252 16.4419 13.249 16.7305C13.9911 17.0263 14.6679 17.2631 15.2979 17.5957C15.9125 17.9202 16.4446 18.3197 16.8613 18.9082C17.2168 19.4103 17.5042 20.0754 17.6738 20.9951C17.6159 20.998 17.5576 21 17.499 21H10.5195C9.90646 20.4366 9.34351 19.7272 8.77832 18.9912C8.28262 18.3457 7.78179 17.6774 7.26367 17.1533C6.74776 16.6315 6.15324 16.1868 5.44824 16.0664C4.53445 15.9105 3.70387 16.0482 2.98438 16.29V13.125C4.18225 12.2449 5.07379 11.7836 5.7627 11.5986Z",fill:"currentColor"}),C.createElement("path",{d:"M11.4102 3.1582C11.3584 4.91423 11.7366 6.15824 12.4463 7.08008C13.295 8.18232 14.5544 8.73288 15.7812 9.20215C17.0456 9.68575 18.2873 10.089 19.3555 10.8584C19.9816 11.3094 20.5487 11.8906 20.999 12.6992V17.5C20.999 19.028 20.0195 20.3264 18.6543 20.8037C18.4627 19.7721 18.1291 18.9689 17.6768 18.3301C17.1435 17.577 16.4725 17.0847 15.7646 16.7109C15.0722 16.3454 14.3069 16.0759 13.6191 15.8018C12.9131 15.5203 12.2557 15.2229 11.6748 14.7861C10.8992 14.2029 10.3219 13.5057 9.77637 12.8223C9.2498 12.1626 8.71639 11.4623 8.06738 11.0156C7.37124 10.5366 6.55415 10.3505 5.50293 10.6328C4.78633 10.8253 3.96447 11.236 2.98438 11.9014V6.6582C2.98438 4.72521 4.55138 3.1582 6.48438 3.1582H11.4102Z",fill:"currentColor"}),C.createElement("path",{d:"M17.499 3.1582C19.432 3.1582 20.999 4.72521 20.999 6.6582V10.9883C20.6719 10.6276 20.3163 10.3176 19.9404 10.0469C18.7379 9.18068 17.3308 8.72491 16.1377 8.26855C14.9073 7.79793 13.8992 7.32745 13.2393 6.4707C12.7064 5.77868 12.3588 4.77121 12.4111 3.1582H17.499Z",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=\"M2.98438 17.3574C3.67421 17.0798 4.44149 16.9086 5.28027 17.0518C5.67591 17.1193 6.08704 17.3854 6.55273 17.8564C7.01612 18.3252 7.47271 18.932 7.98535 19.5996C8.33454 20.0543 8.71117 20.5381 9.12402 21H6.48438C4.55138 21 2.98438 19.433 2.98438 17.5V17.3574Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.7627 11.5986C6.53576 11.391 7.04921 11.5297 7.5 11.8398C7.99779 12.1824 8.42888 12.736 8.99512 13.4453C9.54241 14.1309 10.1869 14.9184 11.0732 15.585C11.7648 16.105 12.5252 16.4419 13.249 16.7305C13.9911 17.0263 14.6679 17.2631 15.2979 17.5957C15.9125 17.9202 16.4446 18.3197 16.8613 18.9082C17.2168 19.4103 17.5042 20.0754 17.6738 20.9951C17.6159 20.998 17.5576 21 17.499 21H10.5195C9.90646 20.4366 9.34351 19.7272 8.77832 18.9912C8.28262 18.3457 7.78179 17.6774 7.26367 17.1533C6.74776 16.6315 6.15324 16.1868 5.44824 16.0664C4.53445 15.9105 3.70387 16.0482 2.98438 16.29V13.125C4.18225 12.2449 5.07379 11.7836 5.7627 11.5986Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.4102 3.1582C11.3584 4.91423 11.7366 6.15824 12.4463 7.08008C13.295 8.18232 14.5544 8.73288 15.7812 9.20215C17.0456 9.68575 18.2873 10.089 19.3555 10.8584C19.9816 11.3094 20.5487 11.8906 20.999 12.6992V17.5C20.999 19.028 20.0195 20.3264 18.6543 20.8037C18.4627 19.7721 18.1291 18.9689 17.6768 18.3301C17.1435 17.577 16.4725 17.0847 15.7646 16.7109C15.0722 16.3454 14.3069 16.0759 13.6191 15.8018C12.9131 15.5203 12.2557 15.2229 11.6748 14.7861C10.8992 14.2029 10.3219 13.5057 9.77637 12.8223C9.2498 12.1626 8.71639 11.4623 8.06738 11.0156C7.37124 10.5366 6.55415 10.3505 5.50293 10.6328C4.78633 10.8253 3.96447 11.236 2.98438 11.9014V6.6582C2.98438 4.72521 4.55138 3.1582 6.48438 3.1582H11.4102Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.499 3.1582C19.432 3.1582 20.999 4.72521 20.999 6.6582V10.9883C20.6719 10.6276 20.3163 10.3176 19.9404 10.0469C18.7379 9.18068 17.3308 8.72491 16.1377 8.26855C14.9073 7.79793 13.8992 7.32745 13.2393 6.4707C12.7064 5.77868 12.3588 4.77121 12.4111 3.1582H17.499Z\"\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,qQACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0nBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6rBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0QACF,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"
|