@central-icons-react/square-outlined-radius-0-stroke-1 1.1.52 → 1.1.54
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/IconArrowsHide/index.d.ts +4 -0
- package/IconArrowsHide/index.js +2 -0
- package/IconArrowsHide/index.js.map +1 -0
- package/IconArrowsHide/index.mjs +2 -0
- package/IconArrowsHide/index.mjs.map +1 -0
- package/IconArrowsShow/index.d.ts +4 -0
- package/IconArrowsShow/index.js +2 -0
- package/IconArrowsShow/index.js.map +1 -0
- package/IconArrowsShow/index.mjs +2 -0
- package/IconArrowsShow/index.mjs.map +1 -0
- package/IconVectorAnchorPointMirrored/index.d.ts +4 -0
- package/IconVectorAnchorPointMirrored/index.js +2 -0
- package/IconVectorAnchorPointMirrored/index.js.map +1 -0
- package/{IconVectorAnchorPointStraight1 → IconVectorAnchorPointMirrored}/index.mjs +1 -1
- package/IconVectorAnchorPointMirrored/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 +9 -5
- 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/IconVectorAnchorPointStraight1/index.d.ts +0 -4
- package/IconVectorAnchorPointStraight1/index.js +0 -2
- package/IconVectorAnchorPointStraight1/index.js.map +0 -1
- package/IconVectorAnchorPointStraight1/index.mjs.map +0 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var s=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of f(o))!w.call(r,e)&&e!==t&&s(r,e,{get:()=>o[e],enumerable:!(p=h(o,e))||p.enumerable});return r};var i=(r,o,t)=>(t=r!=null?d(g(r)):{},a(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>a(s({},"__esModule",{value:!0}),r);var V={};x(V,{IconArrowsHide:()=>C,default:()=>I});module.exports=B(V);var n=i(require("react"));var l=i(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:p,ariaHidden:e=!0,style:u,...c})=>l.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&&l.default.createElement("title",null,t),r);var C=r=>n.default.createElement(m,{...r,ariaLabel:"arrows-hide, collapse, minimize"},n.default.createElement("path",{d:"M9 16.5L12 13.5L15 16.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M15 7.5L12 10.5L9 7.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M12 21V14",stroke:"currentColor"}),n.default.createElement("path",{d:"M12 10V3",stroke:"currentColor"}),n.default.createElement("path",{d:"M8.0002 4.5H2.5V19.5H8",stroke:"currentColor"}),n.default.createElement("path",{d:"M16 4.5H21.5V19.5H16",stroke:"currentColor"})),I=C;0&&(module.exports={IconArrowsHide});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsHide/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowsHide: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrows-hide, collapse, minimize\">\n <path d=\"M9 16.5L12 13.5L15 16.5\" stroke=\"currentColor\" />\n <path d=\"M15 7.5L12 10.5L9 7.5\" stroke=\"currentColor\" />\n <path d=\"M12 21V14\" stroke=\"currentColor\" />\n <path d=\"M12 10V3\" stroke=\"currentColor\" />\n <path d=\"M8.0002 4.5H2.5V19.5H8\" stroke=\"currentColor\" />\n <path d=\"M16 4.5H21.5V19.5H16\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsHide;\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,mCACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,0BAA0B,OAAO,eAAe,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,EAC1C,EAAAA,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,EACzC,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,OAAO,eAAe,EACvD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["IconArrowsHide_exports","__export","IconArrowsHide","IconArrowsHide_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowsHide","props","React","CentralIconBase","IconArrowsHide_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";var s=({children:t,size:o=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:a,...i})=>p.createElement("svg",{...i,"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:l,...a}},n&&!e&&p.createElement("title",null,n),t);var m=t=>r.createElement(s,{...t,ariaLabel:"arrows-hide, collapse, minimize"},r.createElement("path",{d:"M9 16.5L12 13.5L15 16.5",stroke:"currentColor"}),r.createElement("path",{d:"M15 7.5L12 10.5L9 7.5",stroke:"currentColor"}),r.createElement("path",{d:"M12 21V14",stroke:"currentColor"}),r.createElement("path",{d:"M12 10V3",stroke:"currentColor"}),r.createElement("path",{d:"M8.0002 4.5H2.5V19.5H8",stroke:"currentColor"}),r.createElement("path",{d:"M16 4.5H21.5V19.5H16",stroke:"currentColor"})),h=m;export{m as IconArrowsHide,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsHide/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowsHide: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrows-hide, collapse, minimize\">\n <path d=\"M9 16.5L12 13.5L15 16.5\" stroke=\"currentColor\" />\n <path d=\"M15 7.5L12 10.5L9 7.5\" stroke=\"currentColor\" />\n <path d=\"M12 21V14\" stroke=\"currentColor\" />\n <path d=\"M12 10V3\" stroke=\"currentColor\" />\n <path d=\"M8.0002 4.5H2.5V19.5H8\" stroke=\"currentColor\" />\n <path d=\"M16 4.5H21.5V19.5H16\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsHide;\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,mCACpCC,EAAA,cAAC,QAAK,EAAE,0BAA0B,OAAO,eAAe,EACxDA,EAAA,cAAC,QAAK,EAAE,wBAAwB,OAAO,eAAe,EACtDA,EAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,EAC1CA,EAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,EACzCA,EAAA,cAAC,QAAK,EAAE,yBAAyB,OAAO,eAAe,EACvDA,EAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowsHide","props","React","CentralIconBase","IconArrowsHide_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var g=(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 w(o))!f.call(r,e)&&e!==t&&s(r,e,{get:()=>o[e],enumerable:!(p=d(o,e))||p.enumerable});return r};var m=(r,o,t)=>(t=r!=null?c(x(r)):{},l(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var V={};g(V,{IconArrowsShow:()=>u,default:()=>I});module.exports=B(V);var n=m(require("react"));var a=m(require("react")),C=({children:r,size:o=24,ariaLabel:t,color:p,ariaHidden:e=!0,style:h,...i})=>a.default.createElement("svg",{...i,"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,...h}},t&&!e&&a.default.createElement("title",null,t),r);var u=r=>n.default.createElement(C,{...r,ariaLabel:"arrows-show, expand, maximize"},n.default.createElement("path",{d:"M9 5.5L12 2.5L15 5.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M15 18.5L12 21.5L9 18.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M12 10V3",stroke:"currentColor"}),n.default.createElement("path",{d:"M12 21V14",stroke:"currentColor"}),n.default.createElement("path",{d:"M8.0002 8.5H2.5V15.5H8",stroke:"currentColor"}),n.default.createElement("path",{d:"M16 8.5H21.5V15.5H16",stroke:"currentColor"})),I=u;0&&(module.exports={IconArrowsShow});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsShow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowsShow: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrows-show, expand, maximize\">\n <path d=\"M9 5.5L12 2.5L15 5.5\" stroke=\"currentColor\" />\n <path d=\"M15 18.5L12 21.5L9 18.5\" stroke=\"currentColor\" />\n <path d=\"M12 10V3\" stroke=\"currentColor\" />\n <path d=\"M12 21V14\" stroke=\"currentColor\" />\n <path d=\"M8.0002 8.5H2.5V15.5H8\" stroke=\"currentColor\" />\n <path d=\"M16 8.5H21.5V15.5H16\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsShow;\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,iCACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,EACrD,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,OAAO,eAAe,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,EACzC,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,EAC1C,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,OAAO,eAAe,EACvD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["IconArrowsShow_exports","__export","IconArrowsShow","IconArrowsShow_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowsShow","props","React","CentralIconBase","IconArrowsShow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";var s=({children:t,size:o=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:l,...m})=>p.createElement("svg",{...m,"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:a,...l}},n&&!e&&p.createElement("title",null,n),t);var C=t=>r.createElement(s,{...t,ariaLabel:"arrows-show, expand, maximize"},r.createElement("path",{d:"M9 5.5L12 2.5L15 5.5",stroke:"currentColor"}),r.createElement("path",{d:"M15 18.5L12 21.5L9 18.5",stroke:"currentColor"}),r.createElement("path",{d:"M12 10V3",stroke:"currentColor"}),r.createElement("path",{d:"M12 21V14",stroke:"currentColor"}),r.createElement("path",{d:"M8.0002 8.5H2.5V15.5H8",stroke:"currentColor"}),r.createElement("path",{d:"M16 8.5H21.5V15.5H16",stroke:"currentColor"})),d=C;export{C as IconArrowsShow,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsShow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowsShow: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrows-show, expand, maximize\">\n <path d=\"M9 5.5L12 2.5L15 5.5\" stroke=\"currentColor\" />\n <path d=\"M15 18.5L12 21.5L9 18.5\" stroke=\"currentColor\" />\n <path d=\"M12 10V3\" stroke=\"currentColor\" />\n <path d=\"M12 21V14\" stroke=\"currentColor\" />\n <path d=\"M8.0002 8.5H2.5V15.5H8\" stroke=\"currentColor\" />\n <path d=\"M16 8.5H21.5V15.5H16\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsShow;\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,iCACpCC,EAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,EACrDA,EAAA,cAAC,QAAK,EAAE,0BAA0B,OAAO,eAAe,EACxDA,EAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,EACzCA,EAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,EAC1CA,EAAA,cAAC,QAAK,EAAE,yBAAyB,OAAO,eAAe,EACvDA,EAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowsShow","props","React","CentralIconBase","IconArrowsShow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var h=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!g.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(l=d(o,t))||l.enumerable});return r};var c=(r,o,e)=>(e=r!=null?h(L(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>a(p({},"__esModule",{value:!0}),r);var k={};x(k,{IconVectorAnchorPointMirrored:()=>C,default:()=>I});module.exports=B(k);var n=c(require("react"));var s=c(require("react")),i=({children:r,size:o=24,ariaLabel:e,color:l,ariaHidden:t=!0,style:u,...m})=>s.default.createElement("svg",{...m,"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:l,...u}},e&&!t&&s.default.createElement("title",null,e),r);var C=r=>n.default.createElement(i,{...r,ariaLabel:"vector-anchor-point-mirrored, mirror-angle"},n.default.createElement("path",{d:"M2.5 17.9999C2.5 11.6158 7.39851 8.91484 9 8.20239",stroke:"currentColor"}),n.default.createElement("path",{d:"M21.5 17.9996C21.5 11.6156 16.6015 8.9146 15 8.20215",stroke:"currentColor"}),n.default.createElement("path",{d:"M9 7.5H2",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M15 7.5H22",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M2 5.5L0 7.5L2 9.5L4 7.5L2 5.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M22 5.5L20 7.5L22 9.5L24 7.5L22 5.5Z",fill:"currentColor"}),n.default.createElement("circle",{cx:"12",cy:"7.5",r:"3",stroke:"currentColor"})),I=C;0&&(module.exports={IconVectorAnchorPointMirrored});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVectorAnchorPointMirrored/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVectorAnchorPointMirrored: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"vector-anchor-point-mirrored, mirror-angle\"\n >\n <path\n d=\"M2.5 17.9999C2.5 11.6158 7.39851 8.91484 9 8.20239\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M21.5 17.9996C21.5 11.6156 16.6015 8.9146 15 8.20215\"\n stroke=\"currentColor\"\n />\n <path d=\"M9 7.5H2\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M15 7.5H22\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M2 5.5L0 7.5L2 9.5L4 7.5L2 5.5Z\" fill=\"currentColor\" />\n <path d=\"M22 5.5L20 7.5L22 9.5L24 7.5L22 5.5Z\" fill=\"currentColor\" />\n <circle cx=\"12\" cy=\"7.5\" r=\"3\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVectorAnchorPointMirrored;\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,mCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEV,EAAAC,QAAA,cAAC,QACC,EAAE,qDACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uDACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,cAAc,SAAS,EAChE,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,EAClE,EAAAA,QAAA,cAAC,QAAK,EAAE,kCAAkC,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,QAAK,EAAE,uCAAuC,KAAK,eAAe,EACnE,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,MAAM,EAAE,IAAI,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["IconVectorAnchorPointMirrored_exports","__export","IconVectorAnchorPointMirrored","IconVectorAnchorPointMirrored_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconVectorAnchorPointMirrored","props","React","CentralIconBase","IconVectorAnchorPointMirrored_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import r from"react";import l from"react";var p=({children:
|
|
1
|
+
import r from"react";import l from"react";var p=({children:e,size:o=24,ariaLabel:n,color:s,ariaHidden:t=!0,style:a,...c})=>l.createElement("svg",{...c,"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:s,...a}},n&&!t&&l.createElement("title",null,n),e);var i=e=>r.createElement(p,{...e,ariaLabel:"vector-anchor-point-mirrored, mirror-angle"},r.createElement("path",{d:"M2.5 17.9999C2.5 11.6158 7.39851 8.91484 9 8.20239",stroke:"currentColor"}),r.createElement("path",{d:"M21.5 17.9996C21.5 11.6156 16.6015 8.9146 15 8.20215",stroke:"currentColor"}),r.createElement("path",{d:"M9 7.5H2",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M15 7.5H22",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M2 5.5L0 7.5L2 9.5L4 7.5L2 5.5Z",fill:"currentColor"}),r.createElement("path",{d:"M22 5.5L20 7.5L22 9.5L24 7.5L22 5.5Z",fill:"currentColor"}),r.createElement("circle",{cx:"12",cy:"7.5",r:"3",stroke:"currentColor"})),d=i;export{i as IconVectorAnchorPointMirrored,d as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVectorAnchorPointMirrored/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVectorAnchorPointMirrored: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"vector-anchor-point-mirrored, mirror-angle\"\n >\n <path\n d=\"M2.5 17.9999C2.5 11.6158 7.39851 8.91484 9 8.20239\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M21.5 17.9996C21.5 11.6156 16.6015 8.9146 15 8.20215\"\n stroke=\"currentColor\"\n />\n <path d=\"M9 7.5H2\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M15 7.5H22\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M2 5.5L0 7.5L2 9.5L4 7.5L2 5.5Z\" fill=\"currentColor\" />\n <path d=\"M22 5.5L20 7.5L22 9.5L24 7.5L22 5.5Z\" fill=\"currentColor\" />\n <circle cx=\"12\" cy=\"7.5\" r=\"3\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVectorAnchorPointMirrored;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEVC,EAAA,cAAC,QACC,EAAE,qDACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,uDACF,OAAO,eACT,EACAA,EAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,cAAc,SAAS,EAChEA,EAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,EAClEA,EAAA,cAAC,QAAK,EAAE,kCAAkC,KAAK,eAAe,EAC9DA,EAAA,cAAC,QAAK,EAAE,uCAAuC,KAAK,eAAe,EACnEA,EAAA,cAAC,UAAO,GAAG,KAAK,GAAG,MAAM,EAAE,IAAI,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconVectorAnchorPointMirrored","props","React","CentralIconBase","IconVectorAnchorPointMirrored_default"]}
|
package/README.md
CHANGED
|
@@ -295,12 +295,14 @@ Below is a complete list of available icons:
|
|
|
295
295
|
- IconArrowRotateRightLeft
|
|
296
296
|
- IconArrowShareLeft
|
|
297
297
|
- IconArrowShareRight
|
|
298
|
+
- IconArrowsHide
|
|
298
299
|
- IconArrowSplit
|
|
299
300
|
- IconArrowsRepeat
|
|
300
301
|
- IconArrowsRepeatCircle
|
|
301
302
|
- IconArrowsRepeatLeftRight
|
|
302
303
|
- IconArrowsRepeatRightLeft
|
|
303
304
|
- IconArrowsRepeatRightLeftOff
|
|
305
|
+
- IconArrowsShow
|
|
304
306
|
- IconArrowsZoom
|
|
305
307
|
- IconArrowTopBottom
|
|
306
308
|
- IconArrowTriangleBottom
|
|
@@ -684,8 +686,8 @@ Below is a complete list of available icons:
|
|
|
684
686
|
- IconVariables
|
|
685
687
|
- IconVectorAnchorPointAsymmetric
|
|
686
688
|
- IconVectorAnchorPointDisconnected
|
|
689
|
+
- IconVectorAnchorPointMirrored
|
|
687
690
|
- IconVectorAnchorPointStraight
|
|
688
|
-
- IconVectorAnchorPointStraight1
|
|
689
691
|
- IconVectorLogo
|
|
690
692
|
- IconWhiteboard
|
|
691
693
|
- IconWrite1
|
package/icons/index.d.ts
CHANGED
|
@@ -114,12 +114,14 @@ export type CentralIconName =
|
|
|
114
114
|
| "IconArrowsAllSides21"
|
|
115
115
|
| "IconArrowShareLeft"
|
|
116
116
|
| "IconArrowShareRight"
|
|
117
|
+
| "IconArrowsHide"
|
|
117
118
|
| "IconArrowSplit"
|
|
118
119
|
| "IconArrowsRepeat"
|
|
119
120
|
| "IconArrowsRepeatCircle"
|
|
120
121
|
| "IconArrowsRepeatLeftRight"
|
|
121
122
|
| "IconArrowsRepeatRightLeft"
|
|
122
123
|
| "IconArrowsRepeatRightLeftOff"
|
|
124
|
+
| "IconArrowsShow"
|
|
123
125
|
| "IconArrowsZoom"
|
|
124
126
|
| "IconArrowTopBottom"
|
|
125
127
|
| "IconArrowTriangleBottom"
|
|
@@ -1530,8 +1532,8 @@ export type CentralIconName =
|
|
|
1530
1532
|
| "IconVault"
|
|
1531
1533
|
| "IconVectorAnchorPointAsymmetric"
|
|
1532
1534
|
| "IconVectorAnchorPointDisconnected"
|
|
1535
|
+
| "IconVectorAnchorPointMirrored"
|
|
1533
1536
|
| "IconVectorAnchorPointStraight"
|
|
1534
|
-
| "IconVectorAnchorPointStraight1"
|
|
1535
1537
|
| "IconVectorLogo"
|
|
1536
1538
|
| "IconVenmo"
|
|
1537
1539
|
| "IconVercel"
|