@central-icons-react/square-outlined-radius-0-stroke-1 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 d=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var t in r)a(e,t,{get:r[t],enumerable:!0})},l=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of x(r))!B.call(e,o)&&o!==t&&a(e,o,{get:()=>r[o],enumerable:!(n=f(r,o))||n.enumerable});return e};var m=(e,r,t)=>(t=e!=null?d(g(e)):{},l(r||!e||!e.__esModule?a(t,"default",{value:e,enumerable:!0}):t,e)),h=e=>l(a({},"__esModule",{value:!0}),e);var L={};I(L,{IconCodeMedium:()=>i,default:()=>y});module.exports=h(L);var p=m(require("react"));var s=m(require("react")),c=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:u,...C})=>s.default.createElement("svg",{...C,"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,...u}},t&&!o&&s.default.createElement("title",null,t),e);var i=e=>p.default.createElement(c,{...e,ariaLabel:"code-medium, syntax, brackets, dev"},p.default.createElement("path",{d:"M17 7.5L21.5 12L17 16.5",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement("path",{d:"M7 16.5L2.5 12L7 7.5",stroke:"currentColor",strokeLinecap:"square"})),y=i;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 d=\"M17 7.5L21.5 12L17 16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M7 16.5L2.5 12L7 7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,EAAE,0BACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,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 o from"react";import a from"react";var p=({children:r,size:e=24,ariaLabel:n,color:s,ariaHidden:t=!0,style:l,...m})=>a.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:s,...l}},n&&!t&&a.createElement("title",null,n),r);var c=r=>o.createElement(p,{...r,ariaLabel:"code-medium, syntax, brackets, dev"},o.createElement("path",{d:"M17 7.5L21.5 12L17 16.5",stroke:"currentColor",strokeLinecap:"square"}),o.createElement("path",{d:"M7 16.5L2.5 12L7 7.5",stroke:"currentColor",strokeLinecap:"square"})),f=c;export{c 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 d=\"M17 7.5L21.5 12L17 16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M7 16.5L2.5 12L7 7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,EAAE,0BACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,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 k=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var g=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,s)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of L(r))!f.call(o,n)&&n!==e&&p(o,n,{get:()=>r[n],enumerable:!(s=m(r,n))||s.enumerable});return o};var i=(o,r,e)=>(e=o!=null?k(h(o)):{},a(r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>a(p({},"__esModule",{value:!0}),o);var I={};g(I,{IconConnectors1:()=>u,default:()=>B});module.exports=x(I);var t=i(require("react"));var C=i(require("react")),l=({children:o,size:r=24,ariaLabel:e,color:s,ariaHidden:n=!0,style:c,...d})=>C.default.createElement("svg",{...d,"aria-hidden":n,role:n?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}},e&&!n&&C.default.createElement("title",null,e),o);var u=o=>t.default.createElement(l,{...o,ariaLabel:"connectors-1, connection, apps"},t.default.createElement("path",{d:"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M14 17.25C14 19.0449 15.4551 20.5 17.25 20.5C19.0449 20.5 20.5 19.0449 20.5 17.25C20.5 15.4551 19.0449 14 17.25 14C15.4551 14 14 15.4551 14 17.25Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M9.25 14.74L14.75 9.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;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=\"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14 17.25C14 19.0449 15.4551 20.5 17.25 20.5C19.0449 20.5 20.5 19.0449 20.5 17.25C20.5 15.4551 19.0449 14 17.25 14C15.4551 14 14 15.4551 14 17.25Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M9.25 14.74L14.75 9.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,iJACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 r from"react";import s from"react";var p=({children:e,size:o=24,ariaLabel:t,color:C,ariaHidden:n=!0,style:a,...i})=>s.createElement("svg",{...i,"aria-hidden":n,role:n?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,...a}},t&&!n&&s.createElement("title",null,t),e);var l=e=>r.createElement(p,{...e,ariaLabel:"connectors-1, connection, apps"},r.createElement("path",{d:"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M14 17.25C14 19.0449 15.4551 20.5 17.25 20.5C19.0449 20.5 20.5 19.0449 20.5 17.25C20.5 15.4551 19.0449 14 17.25 14C15.4551 14 14 15.4551 14 17.25Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M9.25 14.74L14.75 9.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),m=l;export{l as IconConnectors1,m 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=\"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14 17.25C14 19.0449 15.4551 20.5 17.25 20.5C19.0449 20.5 20.5 19.0449 20.5 17.25C20.5 15.4551 19.0449 14 17.25 14C15.4551 14 14 15.4551 14 17.25Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M9.25 14.74L14.75 9.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,iJACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,+IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,qJACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 m=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)s(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of f(r))!g.call(o,n)&&n!==e&&s(o,n,{get:()=>r[n],enumerable:!(p=k(r,n))||p.enumerable});return o};var l=(o,r,e)=>(e=o!=null?m(h(o)):{},a(r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e,o)),B=o=>a(s({},"__esModule",{value:!0}),o);var L={};x(L,{IconConnectors2:()=>c,default:()=>I});module.exports=B(L);var t=l(require("react"));var C=l(require("react")),i=({children:o,size:r=24,ariaLabel:e,color:p,ariaHidden:n=!0,style:u,...d})=>C.default.createElement("svg",{...d,"aria-hidden":n,role:n?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,...u}},e&&!n&&C.default.createElement("title",null,e),o);var c=o=>t.default.createElement(i,{...o,ariaLabel:"connectors-2, connection, apps"},t.default.createElement("path",{d:"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M17.25 10V17.25H10",stroke:"currentColor"})),I=c;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=\"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path d=\"M17.25 10V17.25H10\" stroke=\"currentColor\" />\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,iJACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,OAAO,eAAe,CACrD,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 r from"react";import p from"react";var s=({children:e,size:o=24,ariaLabel:t,color:C,ariaHidden:n=!0,style:a,...l})=>p.createElement("svg",{...l,"aria-hidden":n,role:n?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,...a}},t&&!n&&p.createElement("title",null,t),e);var i=e=>r.createElement(s,{...e,ariaLabel:"connectors-2, connection, apps"},r.createElement("path",{d:"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M17.25 10V17.25H10",stroke:"currentColor"})),k=i;export{i as IconConnectors2,k 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=\"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path d=\"M17.25 10V17.25H10\" stroke=\"currentColor\" />\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,iJACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,+IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QAAK,EAAE,qBAAqB,OAAO,eAAe,CACrD,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"
|