@central-icons-react/square-outlined-radius-0-stroke-2 1.1.12 → 1.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconImagine/index.d.ts +4 -0
- package/IconImagine/index.js +2 -0
- package/IconImagine/index.js.map +1 -0
- package/IconImagine/index.mjs +2 -0
- package/IconImagine/index.mjs.map +1 -0
- package/IconImagineAi/index.d.ts +4 -0
- package/IconImagineAi/index.js +2 -0
- package/IconImagineAi/index.js.map +1 -0
- package/IconImagineAi/index.mjs +2 -0
- package/IconImagineAi/index.mjs.map +1 -0
- package/IconPromptSuggestion/index.d.ts +4 -0
- package/IconPromptSuggestion/index.js +2 -0
- package/IconPromptSuggestion/index.js.map +1 -0
- package/IconPromptSuggestion/index.mjs +2 -0
- package/IconPromptSuggestion/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 +9 -3
- package/index.d.ts +9 -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 L=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var V=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of h(e))!I.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(n=f(e,o))||n.enumerable});return r};var i=(r,e,t)=>(t=r!=null?L(u(r)):{},s(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>s(a({},"__esModule",{value:!0}),r);var B={};V(B,{IconImagine:()=>C,default:()=>x});module.exports=d(B);var p=i(require("react"));var l=i(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:c,...g})=>l.default.createElement("svg",{...g,"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,...c}},t&&!o&&l.default.createElement("title",null,t),r);var C=r=>p.default.createElement(m,{...r,ariaLabel:"imagine, head, thinking"},p.default.createElement("path",{d:"M7 22V15.7453C5.18652 14.4804 4 12.3787 4 10C4 6.13401 7.13401 3 11 3C14.866 3 18 6.13401 18 10L20 13L18 14.5V17C18 17.5523 17.5523 18 17 18H14V22",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement("path",{d:"M11.35 6.5H10.65L9.775 8.775L7.5 9.65V10.35L9.775 11.225L10.65 13.5H11.35L12.225 11.225L14.5 10.35V9.65L12.225 8.775L11.35 6.5Z",fill:"currentColor"})),x=C;0&&(module.exports={IconImagine});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagine/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagine: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"imagine, head, thinking\">\n <path\n d=\"M7 22V15.7453C5.18652 14.4804 4 12.3787 4 10C4 6.13401 7.13401 3 11 3C14.866 3 18 6.13401 18 10L20 13L18 14.5V17C18 17.5523 17.5523 18 17 18H14V22\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path\n d=\"M11.35 6.5H10.65L9.775 8.775L7.5 9.65V10.35L9.775 11.225L10.65 13.5H11.35L12.225 11.225L14.5 10.35V9.65L12.225 8.775L11.35 6.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagine;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,qJACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kIACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconImagine_exports","__export","IconImagine","IconImagine_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconImagine","props","React","CentralIconBase","IconImagine_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import a from"react";var p=({children:e,size:r=24,ariaLabel:n,color:l,ariaHidden:t=!0,style:s,...i})=>a.createElement("svg",{...i,"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:l,...s}},n&&!t&&a.createElement("title",null,n),e);var m=e=>o.createElement(p,{...e,ariaLabel:"imagine, head, thinking"},o.createElement("path",{d:"M7 22V15.7453C5.18652 14.4804 4 12.3787 4 10C4 6.13401 7.13401 3 11 3C14.866 3 18 6.13401 18 10L20 13L18 14.5V17C18 17.5523 17.5523 18 17 18H14V22",stroke:"currentColor",strokeWidth:"2"}),o.createElement("path",{d:"M11.35 6.5H10.65L9.775 8.775L7.5 9.65V10.35L9.775 11.225L10.65 13.5H11.35L12.225 11.225L14.5 10.35V9.65L12.225 8.775L11.35 6.5Z",fill:"currentColor"})),f=m;export{m as IconImagine,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagine/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagine: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"imagine, head, thinking\">\n <path\n d=\"M7 22V15.7453C5.18652 14.4804 4 12.3787 4 10C4 6.13401 7.13401 3 11 3C14.866 3 18 6.13401 18 10L20 13L18 14.5V17C18 17.5523 17.5523 18 17 18H14V22\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path\n d=\"M11.35 6.5H10.65L9.775 8.775L7.5 9.65V10.35L9.775 11.225L10.65 13.5H11.35L12.225 11.225L14.5 10.35V9.65L12.225 8.775L11.35 6.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagine;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,qJACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QACC,EAAE,kIACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconImagine","props","React","CentralIconBase","IconImagine_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var C=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var V=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var d=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of g(e))!I.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(n=f(e,o))||n.enumerable});return r};var i=(r,e,t)=>(t=r!=null?C(V(r)):{},s(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>s(p({},"__esModule",{value:!0}),r);var B={};d(B,{IconImagineAi:()=>L,default:()=>x});module.exports=h(B);var a=i(require("react"));var l=i(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:c,...u})=>l.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,...c}},t&&!o&&l.default.createElement("title",null,t),r);var L=r=>a.default.createElement(m,{...r,ariaLabel:"imagine-ai, cube, room, 3d, opject, vector"},a.default.createElement("path",{d:"M12.45 7.5H11.55L10.425 10.425L7.5 11.55V12.45L10.425 13.575L11.55 16.5H12.45L13.575 13.575L16.5 12.45V11.55L13.575 10.425L12.45 7.5Z",fill:"currentColor"}),a.default.createElement("path",{d:"M14.7068 4.31276L12 2.75L9.29322 4.31276M17.3047 5.81265L20.0107 7.375V10.5M20.0107 13.5V16.625L17.3041 18.1877M14.7063 19.6875L12 21.25L9.29364 19.6875M6.69588 18.1877L3.98926 16.625V13.5M3.98926 10.5V7.375L6.69532 5.81265",stroke:"currentColor",strokeWidth:"2"})),x=L;0&&(module.exports={IconImagineAi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagineAi/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagineAi: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"imagine-ai, cube, room, 3d, opject, vector\"\n >\n <path\n d=\"M12.45 7.5H11.55L10.425 10.425L7.5 11.55V12.45L10.425 13.575L11.55 16.5H12.45L13.575 13.575L16.5 12.45V11.55L13.575 10.425L12.45 7.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.7068 4.31276L12 2.75L9.29322 4.31276M17.3047 5.81265L20.0107 7.375V10.5M20.0107 13.5V16.625L17.3041 18.1877M14.7063 19.6875L12 21.25L9.29364 19.6875M6.69588 18.1877L3.98926 16.625V13.5M3.98926 10.5V7.375L6.69532 5.81265\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagineAi;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEV,EAAAC,QAAA,cAAC,QACC,EAAE,wIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kOACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconImagineAi_exports","__export","IconImagineAi","IconImagineAi_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconImagineAi","props","React","CentralIconBase","IconImagineAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:l,ariaHidden:t=!0,style:s,...i})=>p.createElement("svg",{...i,"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:l,...s}},n&&!t&&p.createElement("title",null,n),e);var m=e=>o.createElement(a,{...e,ariaLabel:"imagine-ai, cube, room, 3d, opject, vector"},o.createElement("path",{d:"M12.45 7.5H11.55L10.425 10.425L7.5 11.55V12.45L10.425 13.575L11.55 16.5H12.45L13.575 13.575L16.5 12.45V11.55L13.575 10.425L12.45 7.5Z",fill:"currentColor"}),o.createElement("path",{d:"M14.7068 4.31276L12 2.75L9.29322 4.31276M17.3047 5.81265L20.0107 7.375V10.5M20.0107 13.5V16.625L17.3041 18.1877M14.7063 19.6875L12 21.25L9.29364 19.6875M6.69588 18.1877L3.98926 16.625V13.5M3.98926 10.5V7.375L6.69532 5.81265",stroke:"currentColor",strokeWidth:"2"})),f=m;export{m as IconImagineAi,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImagineAi/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagineAi: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"imagine-ai, cube, room, 3d, opject, vector\"\n >\n <path\n d=\"M12.45 7.5H11.55L10.425 10.425L7.5 11.55V12.45L10.425 13.575L11.55 16.5H12.45L13.575 13.575L16.5 12.45V11.55L13.575 10.425L12.45 7.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.7068 4.31276L12 2.75L9.29322 4.31276M17.3047 5.81265L20.0107 7.375V10.5M20.0107 13.5V16.625L17.3041 18.1877M14.7063 19.6875L12 21.25L9.29364 19.6875M6.69588 18.1877L3.98926 16.625V13.5M3.98926 10.5V7.375L6.69532 5.81265\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImagineAi;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEVC,EAAA,cAAC,QACC,EAAE,wIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kOACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconImagineAi","props","React","CentralIconBase","IconImagineAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var g=Object.create;var s=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!h.call(r,e)&&e!==t&&s(r,e,{get:()=>o[e],enumerable:!(p=C(o,e))||p.enumerable});return r};var i=(r,o,t)=>(t=r!=null?g(f(r)):{},l(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var P={};x(P,{IconPromptSuggestion:()=>L,default:()=>I});module.exports=B(P);var n=i(require("react"));var a=i(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:p,ariaHidden:e=!0,style:u,...c})=>a.default.createElement("svg",{...c,"aria-hidden":e,role:e?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...u}},t&&!e&&a.default.createElement("title",null,t),r);var L=r=>n.default.createElement(m,{...r,ariaLabel:"prompt-suggestion, auto-prompt"},n.default.createElement("path",{d:"M6.4 2H5.6L4.6 4.6L2 5.6V6.4L4.6 7.4L5.6 10H6.4L7.4 7.4L10 6.4V5.6L7.4 4.6L6.4 2Z",fill:"currentColor"}),n.default.createElement("path",{d:"M18 4.5L21.5 8L10 19.5L6 20L6.5 16L18 4.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),n.default.createElement("path",{d:"M15 8L18 11",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),I=L;0&&(module.exports={IconPromptSuggestion});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPromptSuggestion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPromptSuggestion: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"prompt-suggestion, auto-prompt\">\n <path\n d=\"M6.4 2H5.6L4.6 4.6L2 5.6V6.4L4.6 7.4L5.6 10H6.4L7.4 7.4L10 6.4V5.6L7.4 4.6L6.4 2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18 4.5L21.5 8L10 19.5L6 20L6.5 16L18 4.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M15 8L18 11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPromptSuggestion;\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,0BAAAE,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,EAAwDC,GAEjE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6CACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconPromptSuggestion_exports","__export","IconPromptSuggestion","IconPromptSuggestion_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPromptSuggestion","props","React","CentralIconBase","IconPromptSuggestion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";var s=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:l,...i})=>p.createElement("svg",{...i,"aria-hidden":e,role:e?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:a,...l}},n&&!e&&p.createElement("title",null,n),t);var m=t=>o.createElement(s,{...t,ariaLabel:"prompt-suggestion, auto-prompt"},o.createElement("path",{d:"M6.4 2H5.6L4.6 4.6L2 5.6V6.4L4.6 7.4L5.6 10H6.4L7.4 7.4L10 6.4V5.6L7.4 4.6L6.4 2Z",fill:"currentColor"}),o.createElement("path",{d:"M18 4.5L21.5 8L10 19.5L6 20L6.5 16L18 4.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement("path",{d:"M15 8L18 11",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),C=m;export{m as IconPromptSuggestion,C as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPromptSuggestion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPromptSuggestion: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"prompt-suggestion, auto-prompt\">\n <path\n d=\"M6.4 2H5.6L4.6 4.6L2 5.6V6.4L4.6 7.4L5.6 10H6.4L7.4 7.4L10 6.4V5.6L7.4 4.6L6.4 2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18 4.5L21.5 8L10 19.5L6 20L6.5 16L18 4.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <path\n d=\"M15 8L18 11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPromptSuggestion;\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,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpCC,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6CACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPromptSuggestion","props","React","CentralIconBase","IconPromptSuggestion_default"]}
|
package/README.md
CHANGED
|
@@ -193,6 +193,8 @@ Below is a complete list of available icons:
|
|
|
193
193
|
- IconHatSparkle
|
|
194
194
|
- IconImageAvatarSparkle
|
|
195
195
|
- IconImageSparkle
|
|
196
|
+
- IconImagine
|
|
197
|
+
- IconImagineAi
|
|
196
198
|
- IconListSparkle
|
|
197
199
|
- IconMagicBook
|
|
198
200
|
- IconMagicEdit
|
|
@@ -202,6 +204,7 @@ Below is a complete list of available icons:
|
|
|
202
204
|
- IconPencilSparkle
|
|
203
205
|
- IconPrompt
|
|
204
206
|
- IconPrompt1
|
|
207
|
+
- IconPromptSuggestion
|
|
205
208
|
- IconPromptTextToImage
|
|
206
209
|
- IconPromptTextToVideo
|
|
207
210
|
- IconRobot
|
package/icons/index.d.ts
CHANGED
|
@@ -810,6 +810,8 @@ export type CentralIconName =
|
|
|
810
810
|
| "IconImages5"
|
|
811
811
|
| "IconImagesCircle"
|
|
812
812
|
| "IconImageSparkle"
|
|
813
|
+
| "IconImagine"
|
|
814
|
+
| "IconImagineAi"
|
|
813
815
|
| "IconImessage"
|
|
814
816
|
| "IconImport"
|
|
815
817
|
| "IconImport2"
|
|
@@ -1111,6 +1113,7 @@ export type CentralIconName =
|
|
|
1111
1113
|
| "IconProducthunt"
|
|
1112
1114
|
| "IconPrompt"
|
|
1113
1115
|
| "IconPrompt1"
|
|
1116
|
+
| "IconPromptSuggestion"
|
|
1114
1117
|
| "IconPromptTextToImage"
|
|
1115
1118
|
| "IconPromptTextToVideo"
|
|
1116
1119
|
| "IconPullRequest"
|