@central-icons-react/square-filled-radius-0-stroke-1 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 C=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var H=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of u(o))!h.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(l=L(o,t))||l.enumerable});return r};var i=(r,o,e)=>(e=r!=null?C(d(r)):{},s(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>s(p({},"__esModule",{value:!0}),r);var x={};H(x,{IconArrowsHide:()=>V,default:()=>w});module.exports=g(x);var n=i(require("react"));var a=i(require("react")),m=({children:r,size:o=24,ariaLabel:e,color:l,ariaHidden:t=!0,style:c,...f})=>a.default.createElement("svg",{...f,"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,...c}},e&&!t&&a.default.createElement("title",null,e),r);var V=r=>n.default.createElement(m,{...r,ariaLabel:"arrows-hide, collapse, minimize"},n.default.createElement("path",{d:"M15.3535 16.1465L14.6465 16.8535L12.5 14.707V21H11.5V14.707L9.35352 16.8535L8.64648 16.1465L12 12.793L15.3535 16.1465Z",fill:"currentColor"}),n.default.createElement("path",{d:"M8 5H3V19H8V20H2V4H8V5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M22 20H16V19H21V5H16V4H22V20Z",fill:"currentColor"}),n.default.createElement("path",{d:"M12.5 9.29297L14.6465 7.14648L15.3535 7.85352L12 11.207L8.64648 7.85352L9.35352 7.14648L11.5 9.29297V3H12.5V9.29297Z",fill:"currentColor"})),w=V;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\n d=\"M15.3535 16.1465L14.6465 16.8535L12.5 14.707V21H11.5V14.707L9.35352 16.8535L8.64648 16.1465L12 12.793L15.3535 16.1465Z\"\n fill=\"currentColor\"\n />\n <path d=\"M8 5H3V19H8V20H2V4H8V5Z\" fill=\"currentColor\" />\n <path d=\"M22 20H16V19H21V5H16V4H22V20Z\" fill=\"currentColor\" />\n <path\n d=\"M12.5 9.29297L14.6465 7.14648L15.3535 7.85352L12 11.207L8.64648 7.85352L9.35352 7.14648L11.5 9.29297V3H12.5V9.29297Z\"\n fill=\"currentColor\"\n />\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,QACC,EAAE,yHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QACC,EAAE,uHACF,KAAK,eACP,CACF,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 o from"react";import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:s,...i})=>l.createElement("svg",{...i,"aria-hidden":t,role:t?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,...s}},n&&!t&&l.createElement("title",null,n),e);var m=e=>o.createElement(p,{...e,ariaLabel:"arrows-hide, collapse, minimize"},o.createElement("path",{d:"M15.3535 16.1465L14.6465 16.8535L12.5 14.707V21H11.5V14.707L9.35352 16.8535L8.64648 16.1465L12 12.793L15.3535 16.1465Z",fill:"currentColor"}),o.createElement("path",{d:"M8 5H3V19H8V20H2V4H8V5Z",fill:"currentColor"}),o.createElement("path",{d:"M22 20H16V19H21V5H16V4H22V20Z",fill:"currentColor"}),o.createElement("path",{d:"M12.5 9.29297L14.6465 7.14648L15.3535 7.85352L12 11.207L8.64648 7.85352L9.35352 7.14648L11.5 9.29297V3H12.5V9.29297Z",fill:"currentColor"})),L=m;export{m as IconArrowsHide,L 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\n d=\"M15.3535 16.1465L14.6465 16.8535L12.5 14.707V21H11.5V14.707L9.35352 16.8535L8.64648 16.1465L12 12.793L15.3535 16.1465Z\"\n fill=\"currentColor\"\n />\n <path d=\"M8 5H3V19H8V20H2V4H8V5Z\" fill=\"currentColor\" />\n <path d=\"M22 20H16V19H21V5H16V4H22V20Z\" fill=\"currentColor\" />\n <path\n d=\"M12.5 9.29297L14.6465 7.14648L15.3535 7.85352L12 11.207L8.64648 7.85352L9.35352 7.14648L11.5 9.29297V3H12.5V9.29297Z\"\n fill=\"currentColor\"\n />\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,QACC,EAAE,yHACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDA,EAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DA,EAAA,cAAC,QACC,EAAE,uHACF,KAAK,eACP,CACF,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 L=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,w=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 u(o))!w.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(l=c(o,e))||l.enumerable});return r};var i=(r,o,t)=>(t=r!=null?L(h(r)):{},s(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>s(p({},"__esModule",{value:!0}),r);var g={};x(g,{IconArrowsShow:()=>V,default:()=>H});module.exports=d(g);var n=i(require("react"));var a=i(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:l,ariaHidden:e=!0,style:f,...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:l,...f}},t&&!e&&a.default.createElement("title",null,t),r);var V=r=>n.default.createElement(m,{...r,ariaLabel:"arrows-show, expand, maximize"},n.default.createElement("path",{d:"M12.5 20.293L14.6465 18.1465L15.3535 18.8535L12 22.207L8.64648 18.8535L9.35352 18.1465L11.5 20.293V14H12.5V20.293Z",fill:"currentColor"}),n.default.createElement("path",{d:"M8 9H3V15H8V16H2V8H8V9Z",fill:"currentColor"}),n.default.createElement("path",{d:"M22 16H16V15H21V9H16V8H22V16Z",fill:"currentColor"}),n.default.createElement("path",{d:"M15.3535 5.14648L14.6465 5.85352L12.5 3.70703V10H11.5V3.70703L9.35352 5.85352L8.64648 5.14648L12 1.79297L15.3535 5.14648Z",fill:"currentColor"})),H=V;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=\"M12.5 20.293L14.6465 18.1465L15.3535 18.8535L12 22.207L8.64648 18.8535L9.35352 18.1465L11.5 20.293V14H12.5V20.293Z\"\n fill=\"currentColor\"\n />\n <path d=\"M8 9H3V15H8V16H2V8H8V9Z\" fill=\"currentColor\" />\n <path d=\"M22 16H16V15H21V9H16V8H22V16Z\" fill=\"currentColor\" />\n <path\n d=\"M15.3535 5.14648L14.6465 5.85352L12.5 3.70703V10H11.5V3.70703L9.35352 5.85352L8.64648 5.14648L12 1.79297L15.3535 5.14648Z\"\n fill=\"currentColor\"\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,qHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,KAAK,eACP,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 o from"react";import l from"react";var p=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:s,...i})=>l.createElement("svg",{...i,"aria-hidden":e,role:e?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,...s}},n&&!e&&l.createElement("title",null,n),t);var m=t=>o.createElement(p,{...t,ariaLabel:"arrows-show, expand, maximize"},o.createElement("path",{d:"M12.5 20.293L14.6465 18.1465L15.3535 18.8535L12 22.207L8.64648 18.8535L9.35352 18.1465L11.5 20.293V14H12.5V20.293Z",fill:"currentColor"}),o.createElement("path",{d:"M8 9H3V15H8V16H2V8H8V9Z",fill:"currentColor"}),o.createElement("path",{d:"M22 16H16V15H21V9H16V8H22V16Z",fill:"currentColor"}),o.createElement("path",{d:"M15.3535 5.14648L14.6465 5.85352L12.5 3.70703V10H11.5V3.70703L9.35352 5.85352L8.64648 5.14648L12 1.79297L15.3535 5.14648Z",fill:"currentColor"})),c=m;export{m 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=\"M12.5 20.293L14.6465 18.1465L15.3535 18.8535L12 22.207L8.64648 18.8535L9.35352 18.1465L11.5 20.293V14H12.5V20.293Z\"\n fill=\"currentColor\"\n />\n <path d=\"M8 9H3V15H8V16H2V8H8V9Z\" fill=\"currentColor\" />\n <path d=\"M22 16H16V15H21V9H16V8H22V16Z\" fill=\"currentColor\" />\n <path\n d=\"M15.3535 5.14648L14.6465 5.85352L12.5 3.70703V10H11.5V3.70703L9.35352 5.85352L8.64648 5.14648L12 1.79297L15.3535 5.14648Z\"\n fill=\"currentColor\"\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,qHACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDA,EAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DA,EAAA,cAAC,QACC,EAAE,4HACF,KAAK,eACP,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"
|