@central-icons-react/square-filled-radius-0-stroke-2 1.1.67 → 1.1.68
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/{IconInsertHtml → IconCodeMedium}/index.d.ts +2 -2
- package/IconCodeMedium/index.js +2 -0
- package/IconCodeMedium/index.js.map +1 -0
- package/IconCodeMedium/index.mjs +2 -0
- package/IconCodeMedium/index.mjs.map +1 -0
- package/IconConnectors1/index.d.ts +4 -0
- package/IconConnectors1/index.js +2 -0
- package/IconConnectors1/index.js.map +1 -0
- package/IconConnectors1/index.mjs +2 -0
- package/IconConnectors1/index.mjs.map +1 -0
- package/IconConnectors2/index.d.ts +4 -0
- package/IconConnectors2/index.js +2 -0
- package/IconConnectors2/index.js.map +1 -0
- package/IconConnectors2/index.mjs +2 -0
- package/IconConnectors2/index.mjs.map +1 -0
- package/README.md +3 -1
- package/icons/index.d.ts +3 -1
- 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 +11 -7
- package/index.d.ts +12 -4
- 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
- package/IconInsertHtml/index.js +0 -2
- package/IconInsertHtml/index.js.map +0 -1
- package/IconInsertHtml/index.mjs +0 -2
- package/IconInsertHtml/index.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconCodeMedium: React.FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconCodeMedium;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var L=Object.create;var l=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},s=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of C(r))!g.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=f(r,o))||n.enumerable});return e};var m=(e,r,t)=>(t=e!=null?L(x(e)):{},s(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),I=e=>s(l({},"__esModule",{value:!0}),e);var y={};B(y,{IconCodeMedium:()=>c,default:()=>v});module.exports=I(y);var a=m(require("react"));var p=m(require("react")),i=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:d,...u})=>p.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,...d}},t&&!o&&p.default.createElement("title",null,t),e);var c=e=>a.default.createElement(i,{...e,ariaLabel:"code-medium, syntax, brackets, dev"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.41436 8.00015L4.41436 12.0002L8.41436 16.0001L7.00015 17.4144L1.58594 12.0002L7.00015 6.58594L8.41436 8.00015ZM17.0002 6.58594L22.4144 12.0002L17.0002 17.4144L15.5859 16.0001L19.5859 12.0002L15.5859 8.00015L17.0002 6.58594Z",fill:"currentColor"})),v=c;0&&(module.exports={IconCodeMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCodeMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCodeMedium: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"code-medium, syntax, brackets, dev\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8.41436 8.00015L4.41436 12.0002L8.41436 16.0001L7.00015 17.4144L1.58594 12.0002L7.00015 6.58594L8.41436 8.00015ZM17.0002 6.58594L22.4144 12.0002L17.0002 17.4144L15.5859 16.0001L19.5859 12.0002L15.5859 8.00015L17.0002 6.58594Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCodeMedium;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sCACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qOACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCodeMedium_exports","__export","IconCodeMedium","IconCodeMedium_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconCodeMedium","props","React","CentralIconBase","IconCodeMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:a,ariaHidden:t=!0,style:s,...m})=>n.createElement("svg",{...m,"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:a,...s}},o&&!t&&n.createElement("title",null,o),r);var i=r=>p.createElement(l,{...r,ariaLabel:"code-medium, syntax, brackets, dev"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.41436 8.00015L4.41436 12.0002L8.41436 16.0001L7.00015 17.4144L1.58594 12.0002L7.00015 6.58594L8.41436 8.00015ZM17.0002 6.58594L22.4144 12.0002L17.0002 17.4144L15.5859 16.0001L19.5859 12.0002L15.5859 8.00015L17.0002 6.58594Z",fill:"currentColor"})),f=i;export{i as IconCodeMedium,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCodeMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCodeMedium: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"code-medium, syntax, brackets, dev\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8.41436 8.00015L4.41436 12.0002L8.41436 16.0001L7.00015 17.4144L1.58594 12.0002L7.00015 6.58594L8.41436 8.00015ZM17.0002 6.58594L22.4144 12.0002L17.0002 17.4144L15.5859 16.0001L19.5859 12.0002L15.5859 8.00015L17.0002 6.58594Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCodeMedium;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sCACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qOACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCodeMedium","props","React","CentralIconBase","IconCodeMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var l=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of h(o))!B.call(r,e)&&e!==t&&l(r,e,{get:()=>o[e],enumerable:!(C=g(o,e))||C.enumerable});return r};var s=(r,o,t)=>(t=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>a(l({},"__esModule",{value:!0}),r);var y={};I(y,{IconConnectors1:()=>i,default:()=>w});module.exports=d(y);var n=s(require("react"));var p=s(require("react")),c=({children:r,size:o=24,ariaLabel:t,color:C,ariaHidden:e=!0,style:m,...f})=>p.default.createElement("svg",{...f,"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:C,...m}},t&&!e&&p.default.createElement("title",null,t),r);var i=r=>n.default.createElement(c,{...r,ariaLabel:"connectors-1, connection, apps"},n.default.createElement("path",{d:"M17 3C19.2091 3 21 4.79086 21 7C21 9.20914 19.2091 11 17 11C16.258 11 15.5634 10.7974 14.9678 10.4453L10.4453 14.9678C10.7974 15.5634 11 16.258 11 17C11 19.2091 9.20914 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C7.74157 13 8.43587 13.202 9.03125 13.5537L13.5537 9.03125C13.202 8.43587 13 7.74157 13 7C13 4.79086 14.7909 3 17 3Z",fill:"currentColor"}),n.default.createElement("path",{d:"M17 13C19.2091 13 21 14.7909 21 17C21 19.2091 19.2091 21 17 21C14.7909 21 13 19.2091 13 17C13 14.7909 14.7909 13 17 13Z",fill:"currentColor"}),n.default.createElement("path",{d:"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z",fill:"currentColor"})),w=i;0&&(module.exports={IconConnectors1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconConnectors1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconConnectors1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"connectors-1, connection, apps\">\n <path\n d=\"M17 3C19.2091 3 21 4.79086 21 7C21 9.20914 19.2091 11 17 11C16.258 11 15.5634 10.7974 14.9678 10.4453L10.4453 14.9678C10.7974 15.5634 11 16.258 11 17C11 19.2091 9.20914 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C7.74157 13 8.43587 13.202 9.03125 13.5537L13.5537 9.03125C13.202 8.43587 13 7.74157 13 7C13 4.79086 14.7909 3 17 3Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17 13C19.2091 13 21 14.7909 21 17C21 19.2091 19.2091 21 17 21C14.7909 21 13 19.2091 13 17C13 14.7909 14.7909 13 17 13Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconConnectors1;\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,qBAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,2VACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconConnectors1_exports","__export","IconConnectors1","IconConnectors1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconConnectors1","props","React","CentralIconBase","IconConnectors1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import C from"react";var l=({children:t,size:r=24,ariaLabel:n,color:p,ariaHidden:e=!0,style:a,...s})=>C.createElement("svg",{...s,"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:p,...a}},n&&!e&&C.createElement("title",null,n),t);var c=t=>o.createElement(l,{...t,ariaLabel:"connectors-1, connection, apps"},o.createElement("path",{d:"M17 3C19.2091 3 21 4.79086 21 7C21 9.20914 19.2091 11 17 11C16.258 11 15.5634 10.7974 14.9678 10.4453L10.4453 14.9678C10.7974 15.5634 11 16.258 11 17C11 19.2091 9.20914 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C7.74157 13 8.43587 13.202 9.03125 13.5537L13.5537 9.03125C13.202 8.43587 13 7.74157 13 7C13 4.79086 14.7909 3 17 3Z",fill:"currentColor"}),o.createElement("path",{d:"M17 13C19.2091 13 21 14.7909 21 17C21 19.2091 19.2091 21 17 21C14.7909 21 13 19.2091 13 17C13 14.7909 14.7909 13 17 13Z",fill:"currentColor"}),o.createElement("path",{d:"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z",fill:"currentColor"})),g=c;export{c as IconConnectors1,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconConnectors1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconConnectors1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"connectors-1, connection, apps\">\n <path\n d=\"M17 3C19.2091 3 21 4.79086 21 7C21 9.20914 19.2091 11 17 11C16.258 11 15.5634 10.7974 14.9678 10.4453L10.4453 14.9678C10.7974 15.5634 11 16.258 11 17C11 19.2091 9.20914 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C7.74157 13 8.43587 13.202 9.03125 13.5537L13.5537 9.03125C13.202 8.43587 13 7.74157 13 7C13 4.79086 14.7909 3 17 3Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17 13C19.2091 13 21 14.7909 21 17C21 19.2091 19.2091 21 17 21C14.7909 21 13 19.2091 13 17C13 14.7909 14.7909 13 17 13Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconConnectors1;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpCC,EAAA,cAAC,QACC,EAAE,2VACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0HACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconConnectors1","props","React","CentralIconBase","IconConnectors1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of x(o))!I.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(n=g(o,e))||n.enumerable});return r};var s=(r,o,t)=>(t=r!=null?u(B(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>a(p({},"__esModule",{value:!0}),r);var y={};h(y,{IconConnectors2:()=>i,default:()=>w});module.exports=d(y);var l=s(require("react"));var C=s(require("react")),c=({children:r,size:o=24,ariaLabel:t,color:n,ariaHidden:e=!0,style:m,...f})=>C.default.createElement("svg",{...f,"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:n,...m}},t&&!e&&C.default.createElement("title",null,t),r);var i=r=>l.default.createElement(c,{...r,ariaLabel:"connectors-2, connection, apps"},l.default.createElement("path",{d:"M17 3C19.2091 3 21 4.79086 21 7C21 8.86384 19.7252 10.43 18 10.874V18H10.874C10.43 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C8.86384 13 10.43 14.2748 10.874 16H16V10.874C14.2748 10.43 13 8.86384 13 7C13 4.79086 14.7909 3 17 3Z",fill:"currentColor"}),l.default.createElement("path",{d:"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z",fill:"currentColor"})),w=i;0&&(module.exports={IconConnectors2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconConnectors2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconConnectors2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"connectors-2, connection, apps\">\n <path\n d=\"M17 3C19.2091 3 21 4.79086 21 7C21 8.86384 19.7252 10.43 18 10.874V18H10.874C10.43 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C8.86384 13 10.43 14.2748 10.874 16H16V10.874C14.2748 10.43 13 8.86384 13 7C13 4.79086 14.7909 3 17 3Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconConnectors2;\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,qBAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,uQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconConnectors2_exports","__export","IconConnectors2","IconConnectors2_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconConnectors2","props","React","CentralIconBase","IconConnectors2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";var l=({children:o,size:r=24,ariaLabel:n,color:C,ariaHidden:t=!0,style:a,...s})=>p.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:C,...a}},n&&!t&&p.createElement("title",null,n),o);var c=o=>e.createElement(l,{...o,ariaLabel:"connectors-2, connection, apps"},e.createElement("path",{d:"M17 3C19.2091 3 21 4.79086 21 7C21 8.86384 19.7252 10.43 18 10.874V18H10.874C10.43 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C8.86384 13 10.43 14.2748 10.874 16H16V10.874C14.2748 10.43 13 8.86384 13 7C13 4.79086 14.7909 3 17 3Z",fill:"currentColor"}),e.createElement("path",{d:"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z",fill:"currentColor"})),g=c;export{c as IconConnectors2,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconConnectors2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconConnectors2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"connectors-2, connection, apps\">\n <path\n d=\"M17 3C19.2091 3 21 4.79086 21 7C21 8.86384 19.7252 10.43 18 10.874V18H10.874C10.43 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C8.86384 13 10.43 14.2748 10.874 16H16V10.874C14.2748 10.43 13 8.86384 13 7C13 4.79086 14.7909 3 17 3Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconConnectors2;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpCC,EAAA,cAAC,QACC,EAAE,uQACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconConnectors2","props","React","CentralIconBase","IconConnectors2_default"]}
|
package/README.md
CHANGED
|
@@ -466,6 +466,7 @@ Below is a complete list of available icons:
|
|
|
466
466
|
- IconCodeInsert
|
|
467
467
|
- IconCodeLarge
|
|
468
468
|
- IconCodeLines
|
|
469
|
+
- IconCodeMedium
|
|
469
470
|
- IconCommits
|
|
470
471
|
- IconConsole
|
|
471
472
|
- IconConsoleSimple
|
|
@@ -575,6 +576,8 @@ Below is a complete list of available icons:
|
|
|
575
576
|
- IconChipSimple
|
|
576
577
|
- IconChromecast
|
|
577
578
|
- IconCircleRecord
|
|
579
|
+
- IconConnectors1
|
|
580
|
+
- IconConnectors2
|
|
578
581
|
- IconDevices
|
|
579
582
|
- IconFullscreen
|
|
580
583
|
- IconHaptic
|
|
@@ -1829,7 +1832,6 @@ Below is a complete list of available icons:
|
|
|
1829
1832
|
- IconHorizontalAlignmentBottom
|
|
1830
1833
|
- IconHorizontalAlignmentCenter
|
|
1831
1834
|
- IconHorizontalAlignmentTop
|
|
1832
|
-
- IconInsertHtml
|
|
1833
1835
|
- IconItalic
|
|
1834
1836
|
- IconLinebreak
|
|
1835
1837
|
- IconLineHeight
|
package/icons/index.d.ts
CHANGED
|
@@ -475,6 +475,7 @@ export type CentralIconName =
|
|
|
475
475
|
| "IconCodeInsert"
|
|
476
476
|
| "IconCodeLarge"
|
|
477
477
|
| "IconCodeLines"
|
|
478
|
+
| "IconCodeMedium"
|
|
478
479
|
| "IconCodepen"
|
|
479
480
|
| "IconCoin1"
|
|
480
481
|
| "IconCoin2"
|
|
@@ -501,6 +502,8 @@ export type CentralIconName =
|
|
|
501
502
|
| "IconCompassSquare"
|
|
502
503
|
| "IconComponents"
|
|
503
504
|
| "IconConcise"
|
|
505
|
+
| "IconConnectors1"
|
|
506
|
+
| "IconConnectors2"
|
|
504
507
|
| "IconConsole"
|
|
505
508
|
| "IconConsoleSimple"
|
|
506
509
|
| "IconConsoleSimple1"
|
|
@@ -868,7 +871,6 @@ export type CentralIconName =
|
|
|
868
871
|
| "IconInitiatives"
|
|
869
872
|
| "IconInjection"
|
|
870
873
|
| "IconInputForm"
|
|
871
|
-
| "IconInsertHtml"
|
|
872
874
|
| "IconInsights"
|
|
873
875
|
| "IconInstagram"
|
|
874
876
|
| "IconInvite"
|