@central-icons-react/square-outlined-radius-0-stroke-1.5 1.1.52 → 1.1.53
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/README.md +2 -0
- package/icons/index.d.ts +2 -0
- 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 +7 -3
- package/index.d.ts +8 -0
- 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
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var w=(r,t)=>{for(var o in t)p(r,o,{get:t[o],enumerable:!0})},a=(r,t,o,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of k(t))!g.call(r,e)&&e!==o&&p(r,e,{get:()=>t[e],enumerable:!(s=c(t,e))||s.enumerable});return r};var i=(r,t,o)=>(o=r!=null?u(f(r)):{},a(t||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),x=r=>a(p({},"__esModule",{value:!0}),r);var I={};w(I,{IconArrowsHide:()=>h,default:()=>B});module.exports=x(I);var n=i(require("react"));var l=i(require("react")),d=({children:r,size:t=24,ariaLabel:o,color:s,ariaHidden:e=!0,style:m,...C})=>l.default.createElement("svg",{...C,"aria-hidden":e,role:e?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...m}},o&&!e&&l.default.createElement("title",null,o),r);var h=r=>n.default.createElement(d,{...r,ariaLabel:"arrows-hide, collapse, minimize"},n.default.createElement("path",{d:"M8 4.75H2.75V19.25H8",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M16 4.75H21.25V19.25H16",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M9 16.75L12 13.75L15 16.75",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M12 21V14.5",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M15 7.25L12 10.25L9 7.25",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M12 9.5V3",stroke:"currentColor",strokeWidth:"1.5"})),B=h;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=\"M8 4.75H2.75V19.25H8\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path\n d=\"M16 4.75H21.25V19.25H16\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M9 16.75L12 13.75L15 16.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path d=\"M12 21V14.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path\n d=\"M15 7.25L12 10.25L9 7.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path d=\"M12 9.5V3\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\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,uBAAuB,OAAO,eAAe,YAAY,MAAM,EACvE,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6BACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,EAC9D,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,YAAY,MAAM,CAC9D,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 s from"react";var p=({children:o,size:t=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:a,...i})=>s.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...a}},n&&!e&&s.createElement("title",null,n),o);var d=o=>r.createElement(p,{...o,ariaLabel:"arrows-hide, collapse, minimize"},r.createElement("path",{d:"M8 4.75H2.75V19.25H8",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M16 4.75H21.25V19.25H16",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M9 16.75L12 13.75L15 16.75",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M12 21V14.5",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M15 7.25L12 10.25L9 7.25",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M12 9.5V3",stroke:"currentColor",strokeWidth:"1.5"})),c=d;export{d as IconArrowsHide,c 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=\"M8 4.75H2.75V19.25H8\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path\n d=\"M16 4.75H21.25V19.25H16\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M9 16.75L12 13.75L15 16.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path d=\"M12 21V14.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path\n d=\"M15 7.25L12 10.25L9 7.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path d=\"M12 9.5V3\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\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,uBAAuB,OAAO,eAAe,YAAY,MAAM,EACvEA,EAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,6BACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,EAC9DA,EAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,YAAY,MAAM,CAC9D,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 u=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var f=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!x.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(s=c(o,e))||s.enumerable});return r};var h=(r,o,t)=>(t=r!=null?u(w(r)):{},l(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>l(p({},"__esModule",{value:!0}),r);var I={};f(I,{IconArrowsShow:()=>d,default:()=>B});module.exports=g(I);var n=h(require("react"));var a=h(require("react")),i=({children:r,size:o=24,ariaLabel:t,color:s,ariaHidden:e=!0,style:m,...C})=>a.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:s,...m}},t&&!e&&a.default.createElement("title",null,t),r);var d=r=>n.default.createElement(i,{...r,ariaLabel:"arrows-show, expand, maximize"},n.default.createElement("path",{d:"M9 5.75L12 2.75L15 5.75",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M15 18.25L12 21.25L9 18.25",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M12 10V3.5",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M12 20.5V14",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M8 8.75H2.75V15.25H8",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M16 8.75H21.25V15.25H16",stroke:"currentColor",strokeWidth:"1.5"})),B=d;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\n d=\"M9 5.75L12 2.75L15 5.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M15 18.25L12 21.25L9 18.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path d=\"M12 10V3.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M12 20.5V14\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M8 8.75H2.75V15.25H8\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path\n d=\"M16 8.75H21.25V15.25H16\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\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,QACC,EAAE,0BACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6BACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,YAAY,MAAM,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,EAC9D,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,YAAY,MAAM,EACvE,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,YAAY,MACd,CACF,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 s from"react";var p=({children:t,size:o=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:l,...h})=>s.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:a,...l}},n&&!e&&s.createElement("title",null,n),t);var i=t=>r.createElement(p,{...t,ariaLabel:"arrows-show, expand, maximize"},r.createElement("path",{d:"M9 5.75L12 2.75L15 5.75",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M15 18.25L12 21.25L9 18.25",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M12 10V3.5",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M12 20.5V14",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M8 8.75H2.75V15.25H8",stroke:"currentColor",strokeWidth:"1.5"}),r.createElement("path",{d:"M16 8.75H21.25V15.25H16",stroke:"currentColor",strokeWidth:"1.5"})),c=i;export{i as IconArrowsShow,c 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\n d=\"M9 5.75L12 2.75L15 5.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M15 18.25L12 21.25L9 18.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path d=\"M12 10V3.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M12 20.5V14\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M8 8.75H2.75V15.25H8\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path\n d=\"M16 8.75H21.25V15.25H16\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\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,QACC,EAAE,0BACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,6BACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,YAAY,MAAM,EAC7DA,EAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,EAC9DA,EAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,YAAY,MAAM,EACvEA,EAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowsShow","props","React","CentralIconBase","IconArrowsShow_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
|
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"
|