@central-icons-react/square-outlined-radius-0-stroke-1 1.1.97 → 1.1.98
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/IconArrowSplitDown1/index.js +1 -1
- package/IconArrowSplitDown1/index.js.map +1 -1
- package/IconArrowSplitDown1/index.mjs +1 -1
- package/IconArrowSplitDown1/index.mjs.map +1 -1
- package/IconArrowSplitLeft/index.d.ts +4 -0
- package/IconArrowSplitLeft/index.js +2 -0
- package/IconArrowSplitLeft/index.js.map +1 -0
- package/IconArrowSplitLeft/index.mjs +2 -0
- package/IconArrowSplitLeft/index.mjs.map +1 -0
- package/IconArrowSplitRight/index.d.ts +4 -0
- package/IconArrowSplitRight/index.js +2 -0
- package/IconArrowSplitRight/index.js.map +1 -0
- package/IconArrowSplitRight/index.mjs +2 -0
- package/IconArrowSplitRight/index.mjs.map +1 -0
- package/IconArrowSplitUp/index.d.ts +4 -0
- package/IconArrowSplitUp/index.js +2 -0
- package/IconArrowSplitUp/index.js.map +1 -0
- package/IconArrowSplitUp/index.mjs +2 -0
- package/IconArrowSplitUp/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 +10 -6
- 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/IconArrowSplit/index.d.ts +0 -4
- package/IconArrowSplit/index.js +0 -2
- package/IconArrowSplit/index.js.map +0 -1
- package/IconArrowSplit/index.mjs +0 -2
- package/IconArrowSplit/index.mjs.map +0 -1
package/license-check.js
CHANGED
package/package.json
CHANGED
package/IconArrowSplit/index.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
"use strict";var f=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var t in e)s(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of g(e))!w.call(r,o)&&o!==t&&s(r,o,{get:()=>e[o],enumerable:!(p=d(e,o))||p.enumerable});return r};var i=(r,e,t)=>(t=r!=null?f(h(r)):{},l(e||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var V={};x(V,{IconArrowSplit:()=>u,default:()=>I});module.exports=B(V);var n=i(require("react"));var a=i(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:o=!0,style:m,...C})=>a.default.createElement("svg",{...C,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...m}},t&&!o&&a.default.createElement("title",null,t),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"arrow-split, rules, direction, split"},n.default.createElement("path",{d:"M3.5 9.5V3.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M14.5 3.5H20.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12 12V20.5M12 12L4 4M12 12L20 4",stroke:"currentColor",strokeLinecap:"square"})),I=u;0&&(module.exports={IconArrowSplit});
|
|
2
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconArrowSplit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split, rules, direction, split\"\n >\n <path d=\"M3.5 9.5V3.5H9.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M14.5 3.5H20.5V9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12V20.5M12 12L4 4M12 12L20 4\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplit;\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,CACE,GAAGF,EACJ,UAAU,wCAEV,EAAAC,QAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxE,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplit_exports","__export","IconArrowSplit","IconArrowSplit_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowSplit","props","React","CentralIconBase","IconArrowSplit_default"]}
|
package/IconArrowSplit/index.mjs
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import e from"react";import p from"react";var s=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...i})=>p.createElement("svg",{...i,"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:a,...l}},n&&!o&&p.createElement("title",null,n),t);var c=t=>e.createElement(s,{...t,ariaLabel:"arrow-split, rules, direction, split"},e.createElement("path",{d:"M3.5 9.5V3.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M14.5 3.5H20.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M12 12V20.5M12 12L4 4M12 12L20 4",stroke:"currentColor",strokeLinecap:"square"})),d=c;export{c as IconArrowSplit,d as default};
|
|
2
|
-
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconArrowSplit/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplit: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split, rules, direction, split\"\n >\n <path d=\"M3.5 9.5V3.5H9.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M14.5 3.5H20.5V9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12V20.5M12 12L4 4M12 12L20 4\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplit;\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,CACE,GAAGF,EACJ,UAAU,wCAEVC,EAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxEA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowSplit","props","React","CentralIconBase","IconArrowSplit_default"]}
|