@central-icons-react/round-outlined-radius-0-stroke-1.5 1.1.1 → 1.1.3
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/IconDraw/index.d.ts +4 -0
- package/IconDraw/index.js +2 -0
- package/IconDraw/index.js.map +1 -0
- package/IconDraw/index.mjs +2 -0
- package/IconDraw/index.mjs.map +1 -0
- package/IconGooey/index.d.ts +4 -0
- package/IconGooey/index.js +2 -0
- package/IconGooey/index.js.map +1 -0
- package/IconGooey/index.mjs +2 -0
- package/IconGooey/index.mjs.map +1 -0
- package/IconPrompt1/index.d.ts +4 -0
- package/IconPrompt1/index.js +2 -0
- package/IconPrompt1/index.js.map +1 -0
- package/IconPrompt1/index.mjs +2 -0
- package/IconPrompt1/index.mjs.map +1 -0
- package/IconVocalMicrophone/index.d.ts +4 -0
- package/IconVocalMicrophone/index.js +2 -0
- package/IconVocalMicrophone/index.js.map +1 -0
- package/IconVocalMicrophone/index.mjs +2 -0
- package/IconVocalMicrophone/index.mjs.map +1 -0
- package/README.md +4 -0
- package/icons/index.d.ts +4 -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 +13 -5
- package/index.d.ts +7 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var d=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of h(e))!w.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(n=f(e,o))||n.enumerable});return r};var c=(r,e,t)=>(t=r!=null?d(g(r)):{},l(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>l(a({},"__esModule",{value:!0}),r);var y={};x(y,{IconDraw:()=>C,default:()=>I});module.exports=B(y);var s=c(require("react"));var p=c(require("react")),i=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:m,...u})=>p.default.createElement("svg",{...u,"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:n,...m}},t&&!o&&p.default.createElement("title",null,t),r);var C=r=>s.default.createElement(i,{...r,ariaLabel:"draw, sketch, scratch"},s.default.createElement("path",{d:"M2.74609 13.5C10.9181 5.42183 14.2879 2.28083 16.2674 4.38617C19.0814 7.37874 4.62803 16.4615 8.62659 18.7676C11.9582 20.6876 17.3347 10.2123 19.5427 12.899C20.8453 14.4822 16.2674 17.9913 17.4862 19.7373C18.3221 20.9346 20.1133 19.7937 21.2468 18.7714",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),I=C;0&&(module.exports={IconDraw});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconDraw/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDraw: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"draw, sketch, scratch\">\n <path\n d=\"M2.74609 13.5C10.9181 5.42183 14.2879 2.28083 16.2674 4.38617C19.0814 7.37874 4.62803 16.4615 8.62659 18.7676C11.9582 20.6876 17.3347 10.2123 19.5427 12.899C20.8453 14.4822 16.2674 17.9913 17.4862 19.7373C18.3221 20.9346 20.1133 19.7937 21.2468 18.7714\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDraw;\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,cAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,+PACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconDraw_exports","__export","IconDraw","IconDraw_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconDraw","props","React","CentralIconBase","IconDraw_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import p from"react";import n from"react";var a=({children:e,size:r=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:l,...c})=>n.createElement("svg",{...c,"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:s,...l}},o&&!t&&n.createElement("title",null,o),e);var i=e=>p.createElement(a,{...e,ariaLabel:"draw, sketch, scratch"},p.createElement("path",{d:"M2.74609 13.5C10.9181 5.42183 14.2879 2.28083 16.2674 4.38617C19.0814 7.37874 4.62803 16.4615 8.62659 18.7676C11.9582 20.6876 17.3347 10.2123 19.5427 12.899C20.8453 14.4822 16.2674 17.9913 17.4862 19.7373C18.3221 20.9346 20.1133 19.7937 21.2468 18.7714",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),f=i;export{i as IconDraw,f as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconDraw/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDraw: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"draw, sketch, scratch\">\n <path\n d=\"M2.74609 13.5C10.9181 5.42183 14.2879 2.28083 16.2674 4.38617C19.0814 7.37874 4.62803 16.4615 8.62659 18.7676C11.9582 20.6876 17.3347 10.2123 19.5427 12.899C20.8453 14.4822 16.2674 17.9913 17.4862 19.7373C18.3221 20.9346 20.1133 19.7937 21.2468 18.7714\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDraw;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QACC,EAAE,+PACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDraw","props","React","CentralIconBase","IconDraw_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,y=Object.prototype.hasOwnProperty;var B=(e,o)=>{for(var r in o)p(e,r,{get:o[r],enumerable:!0})},C=(e,o,r,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of h(o))!y.call(e,t)&&t!==r&&p(e,t,{get:()=>o[t],enumerable:!(n=f(o,t))||n.enumerable});return e};var l=(e,o,r)=>(r=e!=null?u(x(e)):{},C(o||!e||!e.__esModule?p(r,"default",{value:e,enumerable:!0}):r,e)),I=e=>C(p({},"__esModule",{value:!0}),e);var w={};B(w,{IconGooey:()=>i,default:()=>d});module.exports=I(w);var s=l(require("react"));var a=l(require("react")),m=({children:e,size:o=24,ariaLabel:r,color:n,ariaHidden:t=!0,style:c,...g})=>a.default.createElement("svg",{...g,"aria-hidden":t,role:t?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...c}},r&&!t&&a.default.createElement("title",null,r),e);var i=e=>s.default.createElement(m,{...e,ariaLabel:"gooey, morph, liquid-glass"},s.default.createElement("path",{d:"M7.11391 6C8.79458 6.00008 10.3094 6.72404 11.3781 7.88361C12.1783 8.75191 13.1915 9.50004 14.3578 9.50004C15.2634 9.50004 16.0868 9.01536 16.868 8.54671C17.4469 8.19937 18.121 8.0002 18.8407 8.00017C20.9995 8.00017 22.7497 9.7905 22.75 11.9995C22.75 14.2087 20.9997 15.9998 18.8407 15.9998C18.121 15.9998 17.4469 15.8006 16.8679 15.4533C16.0868 14.9846 15.2634 14.5 14.3579 14.5C13.1915 14.5 12.1784 15.2482 11.3781 16.1165C10.3095 17.2761 8.79468 17.9999 7.11391 18C3.8756 18 1.25015 15.3142 1.25 12.0005C1.25 8.68667 3.87551 6 7.11391 6Z",stroke:"currentColor",strokeWidth:"1.5"})),d=i;0&&(module.exports={IconGooey});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconGooey/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGooey: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"gooey, morph, liquid-glass\">\n <path\n d=\"M7.11391 6C8.79458 6.00008 10.3094 6.72404 11.3781 7.88361C12.1783 8.75191 13.1915 9.50004 14.3578 9.50004C15.2634 9.50004 16.0868 9.01536 16.868 8.54671C17.4469 8.19937 18.121 8.0002 18.8407 8.00017C20.9995 8.00017 22.7497 9.7905 22.75 11.9995C22.75 14.2087 20.9997 15.9998 18.8407 15.9998C18.121 15.9998 17.4469 15.8006 16.8679 15.4533C16.0868 14.9846 15.2634 14.5 14.3579 14.5C13.1915 14.5 12.1784 15.2482 11.3781 16.1165C10.3095 17.2761 8.79468 17.9999 7.11391 18C3.8756 18 1.25015 15.3142 1.25 12.0005C1.25 8.68667 3.87551 6 7.11391 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGooey;\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,CAAiB,GAAGF,EAAO,UAAU,8BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,+hBACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconGooey_exports","__export","IconGooey","IconGooey_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconGooey","props","React","CentralIconBase","IconGooey_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import a from"react";import n from"react";var p=({children:o,size:e=24,ariaLabel:t,color:s,ariaHidden:r=!0,style:C,...l})=>n.createElement("svg",{...l,"aria-hidden":r,role:r?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,...C}},t&&!r&&n.createElement("title",null,t),o);var m=o=>a.createElement(p,{...o,ariaLabel:"gooey, morph, liquid-glass"},a.createElement("path",{d:"M7.11391 6C8.79458 6.00008 10.3094 6.72404 11.3781 7.88361C12.1783 8.75191 13.1915 9.50004 14.3578 9.50004C15.2634 9.50004 16.0868 9.01536 16.868 8.54671C17.4469 8.19937 18.121 8.0002 18.8407 8.00017C20.9995 8.00017 22.7497 9.7905 22.75 11.9995C22.75 14.2087 20.9997 15.9998 18.8407 15.9998C18.121 15.9998 17.4469 15.8006 16.8679 15.4533C16.0868 14.9846 15.2634 14.5 14.3579 14.5C13.1915 14.5 12.1784 15.2482 11.3781 16.1165C10.3095 17.2761 8.79468 17.9999 7.11391 18C3.8756 18 1.25015 15.3142 1.25 12.0005C1.25 8.68667 3.87551 6 7.11391 6Z",stroke:"currentColor",strokeWidth:"1.5"})),f=m;export{m as IconGooey,f as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconGooey/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGooey: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"gooey, morph, liquid-glass\">\n <path\n d=\"M7.11391 6C8.79458 6.00008 10.3094 6.72404 11.3781 7.88361C12.1783 8.75191 13.1915 9.50004 14.3578 9.50004C15.2634 9.50004 16.0868 9.01536 16.868 8.54671C17.4469 8.19937 18.121 8.0002 18.8407 8.00017C20.9995 8.00017 22.7497 9.7905 22.75 11.9995C22.75 14.2087 20.9997 15.9998 18.8407 15.9998C18.121 15.9998 17.4469 15.8006 16.8679 15.4533C16.0868 14.9846 15.2634 14.5 14.3579 14.5C13.1915 14.5 12.1784 15.2482 11.3781 16.1165C10.3095 17.2761 8.79468 17.9999 7.11391 18C3.8756 18 1.25015 15.3142 1.25 12.0005C1.25 8.68667 3.87551 6 7.11391 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGooey;\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,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,EAAE,+hBACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGooey","props","React","CentralIconBase","IconGooey_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var h=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0})},C=(r,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of L(e))!x.call(r,t)&&t!==o&&p(r,t,{get:()=>e[t],enumerable:!(n=g(e,t))||n.enumerable});return r};var a=(r,e,o)=>(o=r!=null?f(d(r)):{},C(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),B=r=>C(p({},"__esModule",{value:!0}),r);var b={};h(b,{IconPrompt1:()=>m,default:()=>I});module.exports=B(b);var l=a(require("react"));var s=a(require("react")),i=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:c,...u})=>s.default.createElement("svg",{...u,"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:n,...c}},o&&!t&&s.default.createElement("title",null,o),r);var m=r=>l.default.createElement(i,{...r,ariaLabel:"prompt, vibe-designing, box-sparkle"},l.default.createElement("path",{d:"M20.25 3.75H3.75V20.25H20.25V3.75Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),l.default.createElement("path",{d:"M13.5905 9.83518L12.6795 7.46667C12.5714 7.18552 12.3012 7 12 7C11.6988 7 11.4286 7.18552 11.3205 7.46667L10.4095 9.83518C10.308 10.0993 10.0993 10.308 9.83518 10.4095L7.46667 11.3205C7.18552 11.4286 7 11.6988 7 12C7 12.3012 7.18552 12.5714 7.46667 12.6795L9.83518 13.5905C10.0993 13.692 10.308 13.9007 10.4095 14.1648L11.3205 16.5333C11.4286 16.8145 11.6988 17 12 17C12.3012 17 12.5714 16.8145 12.6795 16.5333L13.5905 14.1648C13.692 13.9007 13.9007 13.692 14.1648 13.5905L16.5333 12.6795C16.8145 12.5714 17 12.3012 17 12C17 11.6988 16.8145 11.4286 16.5333 11.3205L14.1648 10.4095C13.9007 10.308 13.692 10.0993 13.5905 9.83518Z",fill:"currentColor"})),I=m;0&&(module.exports={IconPrompt1});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconPrompt1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPrompt1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"prompt, vibe-designing, box-sparkle\">\n <path\n d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M13.5905 9.83518L12.6795 7.46667C12.5714 7.18552 12.3012 7 12 7C11.6988 7 11.4286 7.18552 11.3205 7.46667L10.4095 9.83518C10.308 10.0993 10.0993 10.308 9.83518 10.4095L7.46667 11.3205C7.18552 11.4286 7 11.6988 7 12C7 12.3012 7.18552 12.5714 7.46667 12.6795L9.83518 13.5905C10.0993 13.692 10.308 13.9007 10.4095 14.1648L11.3205 16.5333C11.4286 16.8145 11.6988 17 12 17C12.3012 17 12.5714 16.8145 12.6795 16.5333L13.5905 14.1648C13.692 13.9007 13.9007 13.692 14.1648 13.5905L16.5333 12.6795C16.8145 12.5714 17 12.3012 17 12C17 11.6988 16.8145 11.4286 16.5333 11.3205L14.1648 10.4095C13.9007 10.308 13.692 10.0993 13.5905 9.83518Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPrompt1;\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,uCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,qCACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,snBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPrompt1_exports","__export","IconPrompt1","IconPrompt1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPrompt1","props","React","CentralIconBase","IconPrompt1_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import t from"react";import p from"react";var l=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:C,...a})=>p.createElement("svg",{...a,"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:s,...C}},n&&!o&&p.createElement("title",null,n),e);var i=e=>t.createElement(l,{...e,ariaLabel:"prompt, vibe-designing, box-sparkle"},t.createElement("path",{d:"M20.25 3.75H3.75V20.25H20.25V3.75Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),t.createElement("path",{d:"M13.5905 9.83518L12.6795 7.46667C12.5714 7.18552 12.3012 7 12 7C11.6988 7 11.4286 7.18552 11.3205 7.46667L10.4095 9.83518C10.308 10.0993 10.0993 10.308 9.83518 10.4095L7.46667 11.3205C7.18552 11.4286 7 11.6988 7 12C7 12.3012 7.18552 12.5714 7.46667 12.6795L9.83518 13.5905C10.0993 13.692 10.308 13.9007 10.4095 14.1648L11.3205 16.5333C11.4286 16.8145 11.6988 17 12 17C12.3012 17 12.5714 16.8145 12.6795 16.5333L13.5905 14.1648C13.692 13.9007 13.9007 13.692 14.1648 13.5905L16.5333 12.6795C16.8145 12.5714 17 12.3012 17 12C17 11.6988 16.8145 11.4286 16.5333 11.3205L14.1648 10.4095C13.9007 10.308 13.692 10.0993 13.5905 9.83518Z",fill:"currentColor"})),g=i;export{i as IconPrompt1,g as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconPrompt1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPrompt1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"prompt, vibe-designing, box-sparkle\">\n <path\n d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M13.5905 9.83518L12.6795 7.46667C12.5714 7.18552 12.3012 7 12 7C11.6988 7 11.4286 7.18552 11.3205 7.46667L10.4095 9.83518C10.308 10.0993 10.0993 10.308 9.83518 10.4095L7.46667 11.3205C7.18552 11.4286 7 11.6988 7 12C7 12.3012 7.18552 12.5714 7.46667 12.6795L9.83518 13.5905C10.0993 13.692 10.308 13.9007 10.4095 14.1648L11.3205 16.5333C11.4286 16.8145 11.6988 17 12 17C12.3012 17 12.5714 16.8145 12.6795 16.5333L13.5905 14.1648C13.692 13.9007 13.9007 13.692 14.1648 13.5905L16.5333 12.6795C16.8145 12.5714 17 12.3012 17 12C17 11.6988 16.8145 11.4286 16.5333 11.3205L14.1648 10.4095C13.9007 10.308 13.692 10.0993 13.5905 9.83518Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPrompt1;\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,uCACpCC,EAAA,cAAC,QACC,EAAE,qCACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,snBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPrompt1","props","React","CentralIconBase","IconPrompt1_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";var m=Object.create;var p=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var L=(o,e)=>{for(var r in e)p(o,r,{get:e[r],enumerable:!0})},s=(o,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of f(e))!k.call(o,t)&&t!==r&&p(o,t,{get:()=>e[t],enumerable:!(n=h(e,t))||n.enumerable});return o};var i=(o,e,r)=>(r=o!=null?m(g(o)):{},s(e||!o||!o.__esModule?p(r,"default",{value:o,enumerable:!0}):r,o)),x=o=>s(p({},"__esModule",{value:!0}),o);var I={};L(I,{IconVocalMicrophone:()=>d,default:()=>B});module.exports=x(I);var a=i(require("react"));var l=i(require("react")),c=({children:o,size:e=24,ariaLabel:r,color:n,ariaHidden:t=!0,style:u,...C})=>l.default.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:n,...u}},r&&!t&&l.default.createElement("title",null,r),o);var d=o=>a.default.createElement(c,{...o,ariaLabel:"vocal-microphone, singing, karaoke"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.375 12C18.7912 12 20.75 10.0412 20.75 7.625C20.75 5.20875 18.7912 3.25 16.375 3.25C13.9588 3.25 12 5.20875 12 7.625C12 7.79966 12.0102 7.97193 12.0301 8.14125L15.8588 11.9699C16.0281 11.9898 16.2003 12 16.375 12Z",stroke:"currentColor",strokeWidth:"1.38158",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M12 8L3.25 17.625L6.375 20.75L16 12",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),B=d;0&&(module.exports={IconVocalMicrophone});
|
2
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconVocalMicrophone/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVocalMicrophone: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"vocal-microphone, singing, karaoke\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.375 12C18.7912 12 20.75 10.0412 20.75 7.625C20.75 5.20875 18.7912 3.25 16.375 3.25C13.9588 3.25 12 5.20875 12 7.625C12 7.79966 12.0102 7.97193 12.0301 8.14125L15.8588 11.9699C16.0281 11.9898 16.2003 12 16.375 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.38158\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12 8L3.25 17.625L6.375 20.75L16 12\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVocalMicrophone;\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,yBAAAE,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,EAAuDC,GAEhE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sCACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2NACF,OAAO,eACP,YAAY,UACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sCACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconVocalMicrophone_exports","__export","IconVocalMicrophone","IconVocalMicrophone_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconVocalMicrophone","props","React","CentralIconBase","IconVocalMicrophone_default"]}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import t from"react";import p from"react";var a=({children:e,size:o=24,ariaLabel:n,color:l,ariaHidden:r=!0,style:s,...i})=>p.createElement("svg",{...i,"aria-hidden":r,role:r?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...s}},n&&!r&&p.createElement("title",null,n),e);var c=e=>t.createElement(a,{...e,ariaLabel:"vocal-microphone, singing, karaoke"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.375 12C18.7912 12 20.75 10.0412 20.75 7.625C20.75 5.20875 18.7912 3.25 16.375 3.25C13.9588 3.25 12 5.20875 12 7.625C12 7.79966 12.0102 7.97193 12.0301 8.14125L15.8588 11.9699C16.0281 11.9898 16.2003 12 16.375 12Z",stroke:"currentColor",strokeWidth:"1.38158",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M12 8L3.25 17.625L6.375 20.75L16 12",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=c;export{c as IconVocalMicrophone,h as default};
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/IconVocalMicrophone/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVocalMicrophone: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"vocal-microphone, singing, karaoke\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.375 12C18.7912 12 20.75 10.0412 20.75 7.625C20.75 5.20875 18.7912 3.25 16.375 3.25C13.9588 3.25 12 5.20875 12 7.625C12 7.79966 12.0102 7.97193 12.0301 8.14125L15.8588 11.9699C16.0281 11.9898 16.2003 12 16.375 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.38158\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12 8L3.25 17.625L6.375 20.75L16 12\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVocalMicrophone;\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,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sCACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2NACF,OAAO,eACP,YAAY,UACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,sCACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconVocalMicrophone","props","React","CentralIconBase","IconVocalMicrophone_default"]}
|
package/README.md
CHANGED
@@ -201,6 +201,7 @@ Below is a complete list of available icons:
|
|
201
201
|
- IconMagicWand3
|
202
202
|
- IconPencilSparkle
|
203
203
|
- IconPrompt
|
204
|
+
- IconPrompt1
|
204
205
|
- IconRobot
|
205
206
|
- IconSparkle
|
206
207
|
- IconSparkle2
|
@@ -602,6 +603,7 @@ Below is a complete list of available icons:
|
|
602
603
|
- IconComponents
|
603
604
|
- IconCornerRadius
|
604
605
|
- IconDispersion
|
606
|
+
- IconDraw
|
605
607
|
- IconEditBig
|
606
608
|
- IconEditSmall1
|
607
609
|
- IconEditSmall2
|
@@ -609,6 +611,7 @@ Below is a complete list of available icons:
|
|
609
611
|
- IconEraserSimple
|
610
612
|
- IconFeather
|
611
613
|
- IconGlass
|
614
|
+
- IconGooey
|
612
615
|
- IconHighlight
|
613
616
|
- IconKeyframe
|
614
617
|
- IconLineThickness
|
@@ -1480,6 +1483,7 @@ Below is a complete list of available icons:
|
|
1480
1483
|
- IconStop
|
1481
1484
|
- IconStopCircle
|
1482
1485
|
- IconTextToSpeach
|
1486
|
+
- IconVocalMicrophone
|
1483
1487
|
- IconVoice1
|
1484
1488
|
- IconVoice2
|
1485
1489
|
- IconVoice3
|
package/icons/index.d.ts
CHANGED
@@ -564,6 +564,7 @@ export type CentralIconName =
|
|
564
564
|
| "IconDownsize"
|
565
565
|
| "IconDownsize2"
|
566
566
|
| "IconDraft"
|
567
|
+
| "IconDraw"
|
567
568
|
| "IconDrawer1"
|
568
569
|
| "IconDrawer2"
|
569
570
|
| "IconDrawer3"
|
@@ -741,6 +742,7 @@ export type CentralIconName =
|
|
741
742
|
| "IconGlobus"
|
742
743
|
| "IconGoldMedal"
|
743
744
|
| "IconGolfBall"
|
745
|
+
| "IconGooey"
|
744
746
|
| "IconGoogle"
|
745
747
|
| "IconGooglePlayStore"
|
746
748
|
| "IconGovernment"
|
@@ -1100,6 +1102,7 @@ export type CentralIconName =
|
|
1100
1102
|
| "IconProcessor"
|
1101
1103
|
| "IconProducthunt"
|
1102
1104
|
| "IconPrompt"
|
1105
|
+
| "IconPrompt1"
|
1103
1106
|
| "IconPullRequest"
|
1104
1107
|
| "IconPumpjack"
|
1105
1108
|
| "IconPush"
|
@@ -1470,6 +1473,7 @@ export type CentralIconName =
|
|
1470
1473
|
| "IconVisionProApp"
|
1471
1474
|
| "IconVisualIntelligence"
|
1472
1475
|
| "IconVkontakte"
|
1476
|
+
| "IconVocalMicrophone"
|
1473
1477
|
| "IconVoice1"
|
1474
1478
|
| "IconVoice2"
|
1475
1479
|
| "IconVoice3"
|