@central-icons-react/round-filled-radius-3-stroke-1.5 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 5.25C8.27208 5.25 5.25 8.27208 5.25 12C5.25 12.4142 5.58579 12.75 6 12.75C6.41421 12.75 6.75 12.4142 6.75 12C6.75 9.1005 9.1005 6.75 12 6.75C12.4142 6.75 12.75 6.41421 12.75 6C12.75 5.58579 12.4142 5.25 12 5.25Z",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 5.25C8.27208 5.25 5.25 8.27208 5.25 12C5.25 12.4142 5.58579 12.75 6 12.75C6.41421 12.75 6.75 12.4142 6.75 12C6.75 9.1005 9.1005 6.75 12 6.75C12.4142 6.75 12.75 6.41421 12.75 6C12.75 5.58579 12.4142 5.25 12 5.25Z\"\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,0UACF,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 5.25C8.27208 5.25 5.25 8.27208 5.25 12C5.25 12.4142 5.58579 12.75 6 12.75C6.41421 12.75 6.75 12.4142 6.75 12C6.75 9.1005 9.1005 6.75 12 6.75C12.4142 6.75 12.75 6.41421 12.75 6C12.75 5.58579 12.4142 5.25 12 5.25Z",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 5.25C8.27208 5.25 5.25 8.27208 5.25 12C5.25 12.4142 5.58579 12.75 6 12.75C6.41421 12.75 6.75 12.4142 6.75 12C6.75 9.1005 9.1005 6.75 12 6.75C12.4142 6.75 12.75 6.41421 12.75 6C12.75 5.58579 12.4142 5.25 12 5.25Z\"\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,0UACF,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 d=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},a=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of L(r))!h.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=d(r,o))||n.enumerable});return e};var s=(e,r,t)=>(t=e!=null?u(g(e)):{},a(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),x=e=>a(l({},"__esModule",{value:!0}),e);var y={};I(y,{IconInsights:()=>m,default:()=>B});module.exports=x(y);var C=s(require("react"));var p=s(require("react")),i=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:c,...f})=>p.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&&p.default.createElement("title",null,t),e);var m=e=>C.default.createElement(i,{...e,ariaLabel:"insights, analyze"},C.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20 7.99992C21.1046 7.99992 22 8.89536 22 9.99992C22 11.1045 21.1046 11.9999 20 11.9999C19.7871 11.9999 19.5821 11.9659 19.3896 11.9042L16.7627 15.0556C16.9137 15.3369 17 15.6583 17 15.9999C17 17.1045 16.1046 17.9999 15 17.9999C13.8954 17.9999 13 17.1045 13 15.9999C13 15.7867 13.0339 15.5813 13.0957 15.3886L9.94434 12.7626C9.663 12.9137 9.34167 12.9999 9 12.9999C8.83937 12.9999 8.68386 12.9781 8.53418 12.9423L5.68652 16.9286C5.88381 17.2386 6 17.6053 6 17.9999C6 19.1045 5.10457 19.9999 4 19.9999C2.89543 19.9999 2 19.1045 2 17.9999C2 16.8954 2.89543 15.9999 4 15.9999C4.16088 15.9999 4.31691 16.0207 4.4668 16.0566L7.31348 12.0712C7.11619 11.7613 7 11.3945 7 10.9999C7 9.89536 7.89543 8.99992 9 8.99992C10.1046 8.99992 11 9.89536 11 10.9999C11 11.2125 10.9658 11.4171 10.9043 11.6093L14.0557 14.2363C14.3369 14.0854 14.6585 13.9999 15 13.9999C15.2129 13.9999 15.4179 14.034 15.6104 14.0956L18.2363 10.9443C18.0854 10.663 18 10.3414 18 9.99992C18 8.89536 18.8954 7.99992 20 7.99992Z",fill:"currentColor"}),C.default.createElement("path",{d:"M4.5 6.99992C5.32843 6.99992 6 7.6715 6 8.49992C6 9.32835 5.32843 9.99992 4.5 9.99992C3.67157 9.99992 3 9.32835 3 8.49992C3 7.6715 3.67157 6.99992 4.5 6.99992Z",fill:"currentColor"}),C.default.createElement("path",{d:"M16.6464 6.14637C16.8417 6.34163 16.8417 6.65822 16.6464 6.85348L14.8536 8.64637C14.6583 8.84163 14.3417 8.84163 14.1464 8.64637L12.3536 6.85348C12.1583 6.65822 12.1583 6.34163 12.3536 6.14637L14.1464 4.35348C14.3417 4.15822 14.6583 4.15822 14.8536 4.35348L16.6464 6.14637Z",fill:"currentColor"})),B=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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20 7.99992C21.1046 7.99992 22 8.89536 22 9.99992C22 11.1045 21.1046 11.9999 20 11.9999C19.7871 11.9999 19.5821 11.9659 19.3896 11.9042L16.7627 15.0556C16.9137 15.3369 17 15.6583 17 15.9999C17 17.1045 16.1046 17.9999 15 17.9999C13.8954 17.9999 13 17.1045 13 15.9999C13 15.7867 13.0339 15.5813 13.0957 15.3886L9.94434 12.7626C9.663 12.9137 9.34167 12.9999 9 12.9999C8.83937 12.9999 8.68386 12.9781 8.53418 12.9423L5.68652 16.9286C5.88381 17.2386 6 17.6053 6 17.9999C6 19.1045 5.10457 19.9999 4 19.9999C2.89543 19.9999 2 19.1045 2 17.9999C2 16.8954 2.89543 15.9999 4 15.9999C4.16088 15.9999 4.31691 16.0207 4.4668 16.0566L7.31348 12.0712C7.11619 11.7613 7 11.3945 7 10.9999C7 9.89536 7.89543 8.99992 9 8.99992C10.1046 8.99992 11 9.89536 11 10.9999C11 11.2125 10.9658 11.4171 10.9043 11.6093L14.0557 14.2363C14.3369 14.0854 14.6585 13.9999 15 13.9999C15.2129 13.9999 15.4179 14.034 15.6104 14.0956L18.2363 10.9443C18.0854 10.663 18 10.3414 18 9.99992C18 8.89536 18.8954 7.99992 20 7.99992Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.5 6.99992C5.32843 6.99992 6 7.6715 6 8.49992C6 9.32835 5.32843 9.99992 4.5 9.99992C3.67157 9.99992 3 9.32835 3 8.49992C3 7.6715 3.67157 6.99992 4.5 6.99992Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.6464 6.14637C16.8417 6.34163 16.8417 6.65822 16.6464 6.85348L14.8536 8.64637C14.6583 8.84163 14.3417 8.84163 14.1464 8.64637L12.3536 6.85348C12.1583 6.65822 12.1583 6.34163 12.3536 6.14637L14.1464 4.35348C14.3417 4.15822 14.6583 4.15822 14.8536 4.35348L16.6464 6.14637Z\"\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,SAAS,UACT,SAAS,UACT,EAAE,69BACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kKACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oRACF,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 r from"react";import n from"react";var l=({children:t,size:e=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 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,...a}},C&&!o&&n.createElement("title",null,C),t);var i=t=>r.createElement(l,{...t,ariaLabel:"insights, analyze"},r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20 7.99992C21.1046 7.99992 22 8.89536 22 9.99992C22 11.1045 21.1046 11.9999 20 11.9999C19.7871 11.9999 19.5821 11.9659 19.3896 11.9042L16.7627 15.0556C16.9137 15.3369 17 15.6583 17 15.9999C17 17.1045 16.1046 17.9999 15 17.9999C13.8954 17.9999 13 17.1045 13 15.9999C13 15.7867 13.0339 15.5813 13.0957 15.3886L9.94434 12.7626C9.663 12.9137 9.34167 12.9999 9 12.9999C8.83937 12.9999 8.68386 12.9781 8.53418 12.9423L5.68652 16.9286C5.88381 17.2386 6 17.6053 6 17.9999C6 19.1045 5.10457 19.9999 4 19.9999C2.89543 19.9999 2 19.1045 2 17.9999C2 16.8954 2.89543 15.9999 4 15.9999C4.16088 15.9999 4.31691 16.0207 4.4668 16.0566L7.31348 12.0712C7.11619 11.7613 7 11.3945 7 10.9999C7 9.89536 7.89543 8.99992 9 8.99992C10.1046 8.99992 11 9.89536 11 10.9999C11 11.2125 10.9658 11.4171 10.9043 11.6093L14.0557 14.2363C14.3369 14.0854 14.6585 13.9999 15 13.9999C15.2129 13.9999 15.4179 14.034 15.6104 14.0956L18.2363 10.9443C18.0854 10.663 18 10.3414 18 9.99992C18 8.89536 18.8954 7.99992 20 7.99992Z",fill:"currentColor"}),r.createElement("path",{d:"M4.5 6.99992C5.32843 6.99992 6 7.6715 6 8.49992C6 9.32835 5.32843 9.99992 4.5 9.99992C3.67157 9.99992 3 9.32835 3 8.49992C3 7.6715 3.67157 6.99992 4.5 6.99992Z",fill:"currentColor"}),r.createElement("path",{d:"M16.6464 6.14637C16.8417 6.34163 16.8417 6.65822 16.6464 6.85348L14.8536 8.64637C14.6583 8.84163 14.3417 8.84163 14.1464 8.64637L12.3536 6.85348C12.1583 6.65822 12.1583 6.34163 12.3536 6.14637L14.1464 4.35348C14.3417 4.15822 14.6583 4.15822 14.8536 4.35348L16.6464 6.14637Z",fill:"currentColor"})),d=i;export{i as IconInsights,d 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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20 7.99992C21.1046 7.99992 22 8.89536 22 9.99992C22 11.1045 21.1046 11.9999 20 11.9999C19.7871 11.9999 19.5821 11.9659 19.3896 11.9042L16.7627 15.0556C16.9137 15.3369 17 15.6583 17 15.9999C17 17.1045 16.1046 17.9999 15 17.9999C13.8954 17.9999 13 17.1045 13 15.9999C13 15.7867 13.0339 15.5813 13.0957 15.3886L9.94434 12.7626C9.663 12.9137 9.34167 12.9999 9 12.9999C8.83937 12.9999 8.68386 12.9781 8.53418 12.9423L5.68652 16.9286C5.88381 17.2386 6 17.6053 6 17.9999C6 19.1045 5.10457 19.9999 4 19.9999C2.89543 19.9999 2 19.1045 2 17.9999C2 16.8954 2.89543 15.9999 4 15.9999C4.16088 15.9999 4.31691 16.0207 4.4668 16.0566L7.31348 12.0712C7.11619 11.7613 7 11.3945 7 10.9999C7 9.89536 7.89543 8.99992 9 8.99992C10.1046 8.99992 11 9.89536 11 10.9999C11 11.2125 10.9658 11.4171 10.9043 11.6093L14.0557 14.2363C14.3369 14.0854 14.6585 13.9999 15 13.9999C15.2129 13.9999 15.4179 14.034 15.6104 14.0956L18.2363 10.9443C18.0854 10.663 18 10.3414 18 9.99992C18 8.89536 18.8954 7.99992 20 7.99992Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4.5 6.99992C5.32843 6.99992 6 7.6715 6 8.49992C6 9.32835 5.32843 9.99992 4.5 9.99992C3.67157 9.99992 3 9.32835 3 8.49992C3 7.6715 3.67157 6.99992 4.5 6.99992Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.6464 6.14637C16.8417 6.34163 16.8417 6.65822 16.6464 6.85348L14.8536 8.64637C14.6583 8.84163 14.3417 8.84163 14.1464 8.64637L12.3536 6.85348C12.1583 6.65822 12.1583 6.34163 12.3536 6.14637L14.1464 4.35348C14.3417 4.15822 14.6583 4.15822 14.8536 4.35348L16.6464 6.14637Z\"\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,SAAS,UACT,SAAS,UACT,EAAE,69BACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oRACF,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 g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(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))!x.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(g(r)):{},a(C||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>a(l({},"__esModule",{value:!0}),r);var w={};B(w,{IconShaders:()=>f,default:()=>V});module.exports=I(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.01758 17.6113C3.69651 17.3303 4.43644 17.1618 5.23926 17.2988C5.5575 17.3532 5.92293 17.574 6.37598 18.0322C6.82571 18.4871 7.27117 19.0788 7.78809 19.752C8.09418 20.1505 8.4288 20.5786 8.79395 21H6.75C4.80083 21 3.19939 19.5129 3.01758 17.6113Z",fill:"currentColor"}),o.default.createElement("path",{d:"M5.82812 11.8398C6.53166 11.6509 6.96992 11.7779 7.35938 12.0459C7.81931 12.3624 8.22465 12.8798 8.80078 13.6016C9.34852 14.2878 10.0098 15.0978 10.9238 15.7852C11.643 16.326 12.4291 16.6726 13.1572 16.9629C13.9129 17.2641 14.5683 17.4921 15.1826 17.8164C15.7739 18.1286 16.2707 18.5045 16.6582 19.0518C16.9836 19.5113 17.2547 20.128 17.4199 20.9951C17.3636 20.9976 17.307 21 17.25 21H10.8994C10.2316 20.436 9.61664 19.6698 8.97852 18.8389C8.48707 18.1989 7.97419 17.5154 7.44238 16.9775C6.91392 16.443 6.27355 15.9539 5.49121 15.8203C4.56708 15.6626 3.72685 15.7905 3 16.0225V13.4248C4.25445 12.488 5.15717 12.0201 5.82812 11.8398Z",fill:"currentColor"}),o.default.createElement("path",{d:"M11.168 3C11.0886 4.87431 11.4742 6.22482 12.25 7.23242C13.1459 8.39587 14.4666 8.96666 15.6924 9.43555C16.9746 9.92599 18.1753 10.3163 19.21 11.0615C19.912 11.5672 20.5394 12.2444 21 13.2559V17.25C21 18.7388 20.1322 20.0244 18.875 20.6299C18.6743 19.6296 18.3393 18.8316 17.8818 18.1855C17.3195 17.3914 16.6139 16.8762 15.8828 16.4902C15.1747 16.1163 14.3872 15.8381 13.7129 15.5693C13.0112 15.2896 12.3795 15.002 11.8262 14.5859C11.0781 14.0234 10.5178 13.3489 9.97266 12.666C9.45597 12.0187 8.89685 11.2822 8.20996 10.8096C7.45249 10.2884 6.56021 10.0906 5.43945 10.3916C4.72721 10.5829 3.9286 10.9757 3 11.5908V6.75C3 4.67893 4.67893 3 6.75 3H11.168Z",fill:"currentColor"}),o.default.createElement("path",{d:"M17.25 3C19.3211 3 21 4.67893 21 6.75V10.625C20.7133 10.3334 20.4073 10.0755 20.0869 9.84473C18.8508 8.95439 17.4037 8.48467 16.2285 8.03516C14.9969 7.56405 14.0512 7.11316 13.4385 6.31738C12.934 5.66224 12.5866 4.67281 12.668 3H17.25Z",fill:"currentColor"})),V=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.01758 17.6113C3.69651 17.3303 4.43644 17.1618 5.23926 17.2988C5.5575 17.3532 5.92293 17.574 6.37598 18.0322C6.82571 18.4871 7.27117 19.0788 7.78809 19.752C8.09418 20.1505 8.4288 20.5786 8.79395 21H6.75C4.80083 21 3.19939 19.5129 3.01758 17.6113Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.82812 11.8398C6.53166 11.6509 6.96992 11.7779 7.35938 12.0459C7.81931 12.3624 8.22465 12.8798 8.80078 13.6016C9.34852 14.2878 10.0098 15.0978 10.9238 15.7852C11.643 16.326 12.4291 16.6726 13.1572 16.9629C13.9129 17.2641 14.5683 17.4921 15.1826 17.8164C15.7739 18.1286 16.2707 18.5045 16.6582 19.0518C16.9836 19.5113 17.2547 20.128 17.4199 20.9951C17.3636 20.9976 17.307 21 17.25 21H10.8994C10.2316 20.436 9.61664 19.6698 8.97852 18.8389C8.48707 18.1989 7.97419 17.5154 7.44238 16.9775C6.91392 16.443 6.27355 15.9539 5.49121 15.8203C4.56708 15.6626 3.72685 15.7905 3 16.0225V13.4248C4.25445 12.488 5.15717 12.0201 5.82812 11.8398Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.168 3C11.0886 4.87431 11.4742 6.22482 12.25 7.23242C13.1459 8.39587 14.4666 8.96666 15.6924 9.43555C16.9746 9.92599 18.1753 10.3163 19.21 11.0615C19.912 11.5672 20.5394 12.2444 21 13.2559V17.25C21 18.7388 20.1322 20.0244 18.875 20.6299C18.6743 19.6296 18.3393 18.8316 17.8818 18.1855C17.3195 17.3914 16.6139 16.8762 15.8828 16.4902C15.1747 16.1163 14.3872 15.8381 13.7129 15.5693C13.0112 15.2896 12.3795 15.002 11.8262 14.5859C11.0781 14.0234 10.5178 13.3489 9.97266 12.666C9.45597 12.0187 8.89685 11.2822 8.20996 10.8096C7.45249 10.2884 6.56021 10.0906 5.43945 10.3916C4.72721 10.5829 3.9286 10.9757 3 11.5908V6.75C3 4.67893 4.67893 3 6.75 3H11.168Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.25 3C19.3211 3 21 4.67893 21 6.75V10.625C20.7133 10.3334 20.4073 10.0755 20.0869 9.84473C18.8508 8.95439 17.4037 8.48467 16.2285 8.03516C14.9969 7.56405 14.0512 7.11316 13.4385 6.31738C12.934 5.66224 12.5866 4.67281 12.668 3H17.25Z\"\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,2PACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2nBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ipBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8OACF,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.01758 17.6113C3.69651 17.3303 4.43644 17.1618 5.23926 17.2988C5.5575 17.3532 5.92293 17.574 6.37598 18.0322C6.82571 18.4871 7.27117 19.0788 7.78809 19.752C8.09418 20.1505 8.4288 20.5786 8.79395 21H6.75C4.80083 21 3.19939 19.5129 3.01758 17.6113Z",fill:"currentColor"}),C.createElement("path",{d:"M5.82812 11.8398C6.53166 11.6509 6.96992 11.7779 7.35938 12.0459C7.81931 12.3624 8.22465 12.8798 8.80078 13.6016C9.34852 14.2878 10.0098 15.0978 10.9238 15.7852C11.643 16.326 12.4291 16.6726 13.1572 16.9629C13.9129 17.2641 14.5683 17.4921 15.1826 17.8164C15.7739 18.1286 16.2707 18.5045 16.6582 19.0518C16.9836 19.5113 17.2547 20.128 17.4199 20.9951C17.3636 20.9976 17.307 21 17.25 21H10.8994C10.2316 20.436 9.61664 19.6698 8.97852 18.8389C8.48707 18.1989 7.97419 17.5154 7.44238 16.9775C6.91392 16.443 6.27355 15.9539 5.49121 15.8203C4.56708 15.6626 3.72685 15.7905 3 16.0225V13.4248C4.25445 12.488 5.15717 12.0201 5.82812 11.8398Z",fill:"currentColor"}),C.createElement("path",{d:"M11.168 3C11.0886 4.87431 11.4742 6.22482 12.25 7.23242C13.1459 8.39587 14.4666 8.96666 15.6924 9.43555C16.9746 9.92599 18.1753 10.3163 19.21 11.0615C19.912 11.5672 20.5394 12.2444 21 13.2559V17.25C21 18.7388 20.1322 20.0244 18.875 20.6299C18.6743 19.6296 18.3393 18.8316 17.8818 18.1855C17.3195 17.3914 16.6139 16.8762 15.8828 16.4902C15.1747 16.1163 14.3872 15.8381 13.7129 15.5693C13.0112 15.2896 12.3795 15.002 11.8262 14.5859C11.0781 14.0234 10.5178 13.3489 9.97266 12.666C9.45597 12.0187 8.89685 11.2822 8.20996 10.8096C7.45249 10.2884 6.56021 10.0906 5.43945 10.3916C4.72721 10.5829 3.9286 10.9757 3 11.5908V6.75C3 4.67893 4.67893 3 6.75 3H11.168Z",fill:"currentColor"}),C.createElement("path",{d:"M17.25 3C19.3211 3 21 4.67893 21 6.75V10.625C20.7133 10.3334 20.4073 10.0755 20.0869 9.84473C18.8508 8.95439 17.4037 8.48467 16.2285 8.03516C14.9969 7.56405 14.0512 7.11316 13.4385 6.31738C12.934 5.66224 12.5866 4.67281 12.668 3H17.25Z",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.01758 17.6113C3.69651 17.3303 4.43644 17.1618 5.23926 17.2988C5.5575 17.3532 5.92293 17.574 6.37598 18.0322C6.82571 18.4871 7.27117 19.0788 7.78809 19.752C8.09418 20.1505 8.4288 20.5786 8.79395 21H6.75C4.80083 21 3.19939 19.5129 3.01758 17.6113Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.82812 11.8398C6.53166 11.6509 6.96992 11.7779 7.35938 12.0459C7.81931 12.3624 8.22465 12.8798 8.80078 13.6016C9.34852 14.2878 10.0098 15.0978 10.9238 15.7852C11.643 16.326 12.4291 16.6726 13.1572 16.9629C13.9129 17.2641 14.5683 17.4921 15.1826 17.8164C15.7739 18.1286 16.2707 18.5045 16.6582 19.0518C16.9836 19.5113 17.2547 20.128 17.4199 20.9951C17.3636 20.9976 17.307 21 17.25 21H10.8994C10.2316 20.436 9.61664 19.6698 8.97852 18.8389C8.48707 18.1989 7.97419 17.5154 7.44238 16.9775C6.91392 16.443 6.27355 15.9539 5.49121 15.8203C4.56708 15.6626 3.72685 15.7905 3 16.0225V13.4248C4.25445 12.488 5.15717 12.0201 5.82812 11.8398Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.168 3C11.0886 4.87431 11.4742 6.22482 12.25 7.23242C13.1459 8.39587 14.4666 8.96666 15.6924 9.43555C16.9746 9.92599 18.1753 10.3163 19.21 11.0615C19.912 11.5672 20.5394 12.2444 21 13.2559V17.25C21 18.7388 20.1322 20.0244 18.875 20.6299C18.6743 19.6296 18.3393 18.8316 17.8818 18.1855C17.3195 17.3914 16.6139 16.8762 15.8828 16.4902C15.1747 16.1163 14.3872 15.8381 13.7129 15.5693C13.0112 15.2896 12.3795 15.002 11.8262 14.5859C11.0781 14.0234 10.5178 13.3489 9.97266 12.666C9.45597 12.0187 8.89685 11.2822 8.20996 10.8096C7.45249 10.2884 6.56021 10.0906 5.43945 10.3916C4.72721 10.5829 3.9286 10.9757 3 11.5908V6.75C3 4.67893 4.67893 3 6.75 3H11.168Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.25 3C19.3211 3 21 4.67893 21 6.75V10.625C20.7133 10.3334 20.4073 10.0755 20.0869 9.84473C18.8508 8.95439 17.4037 8.48467 16.2285 8.03516C14.9969 7.56405 14.0512 7.11316 13.4385 6.31738C12.934 5.66224 12.5866 4.67281 12.668 3H17.25Z\"\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,2PACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2nBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,ipBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8OACF,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"
|