@central-icons-react/square-outlined-radius-0-stroke-1 1.1.53 → 1.1.55

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/license-check.js CHANGED
@@ -18,7 +18,7 @@ const licenseCheck = async () => {
18
18
  },
19
19
  body: JSON.stringify({
20
20
  package: "central-icons-react/square-outlined-radius-0-stroke-1",
21
- version: "1.1.53",
21
+ version: "1.1.55",
22
22
  }),
23
23
  signal: controller.signal,
24
24
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-icons-react/square-outlined-radius-0-stroke-1",
3
- "version": "1.1.53",
3
+ "version": "1.1.55",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "homepage": "https://iconists.co/central",
6
6
  "bugs": {
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type CentralIconBaseProps } from "../CentralIconBase";
3
- export declare const IconVectorAnchorPointStraight1: React.FC<CentralIconBaseProps>;
4
- export default IconVectorAnchorPointStraight1;
@@ -1,2 +0,0 @@
1
- "use strict";var m=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of g(o))!d.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(l=f(o,e))||l.enumerable});return r};var c=(r,o,t)=>(t=r!=null?m(L(r)):{},s(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>s(p({},"__esModule",{value:!0}),r);var k={};x(k,{IconVectorAnchorPointStraight1:()=>C,default:()=>I});module.exports=B(k);var n=c(require("react"));var a=c(require("react")),i=({children:r,size:o=24,ariaLabel:t,color:l,ariaHidden:e=!0,style:u,...h})=>a.default.createElement("svg",{...h,"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,...u}},t&&!e&&a.default.createElement("title",null,t),r);var C=r=>n.default.createElement(i,{...r,ariaLabel:"vector-anchor-point-straight, 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={IconVectorAnchorPointStraight1});
2
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/IconVectorAnchorPointStraight1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVectorAnchorPointStraight1: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"vector-anchor-point-straight, 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 IconVectorAnchorPointStraight1;\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,oCAAAE,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":["IconVectorAnchorPointStraight1_exports","__export","IconVectorAnchorPointStraight1","IconVectorAnchorPointStraight1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconVectorAnchorPointStraight1","props","React","CentralIconBase","IconVectorAnchorPointStraight1_default"]}
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/IconVectorAnchorPointStraight1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVectorAnchorPointStraight1: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"vector-anchor-point-straight, 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 IconVectorAnchorPointStraight1;\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","IconVectorAnchorPointStraight1","props","React","CentralIconBase","IconVectorAnchorPointStraight1_default"]}