@central-icons-react-native/round-outlined-radius-2-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/filtered-icons.json +28 -0
- package/icons/index.d.ts +2 -0
- package/icons-index.json +7 -3
- package/index.d.ts +2 -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
- package/tsx-icons.json +14 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!B.call(r,s)&&s!==n&&p(r,s,{get:()=>o[s],enumerable:!(i=L(o,s))||i.enumerable});return r};var d=(r,o,n)=>(n=r!=null?l(f(r)):{},u(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>u(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconArrowsHide:()=>c,default:()=>P});module.exports=x(g);var e=d(require("react"));var C=d(require("react")),k=require("react-native-svg"),a=({children:r,size:o=24,...n})=>C.default.createElement(k.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>e.default.createElement(a,{...r},e.default.createElement(t.Path,{d:"M9.25 16.25L12 13.5L14.75 16.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M14.75 7.75L12 10.5L9.25 7.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12 20.5V14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12 10V3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M7.5002 4.5H4.5C3.39543 4.5 2.5 5.39543 2.5 6.5V17.5C2.5 18.6046 3.39543 19.5 4.5 19.5H7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M16.5 4.5H19.5C20.6046 4.5 21.5 5.39543 21.5 6.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconArrowsHide: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.25 16.25L12 13.5L14.75 16.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.75 7.75L12 10.5L9.25 7.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 20.5V14\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 10V3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5002 4.5H4.5C3.39543 4.5 2.5 5.39543 2.5 6.5V17.5C2.5 18.6046 3.39543 19.5 4.5 19.5H7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 4.5H19.5C20.6046 4.5 21.5 5.39543 21.5 6.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsHide;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconArrowsHide_exports","__export","IconArrowsHide","IconArrowsHide_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowsHide","props","React","CentralIconBase","IconArrowsHide_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...s})=>p.createElement(i,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(n,{d:"M9.25 16.25L12 13.5L14.75 16.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M14.75 7.75L12 10.5L9.25 7.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 20.5V14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 10V3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M7.5002 4.5H4.5C3.39543 4.5 2.5 5.39543 2.5 6.5V17.5C2.5 18.6046 3.39543 19.5 4.5 19.5H7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M16.5 4.5H19.5C20.6046 4.5 21.5 5.39543 21.5 6.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconArrowsHide,B 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconArrowsHide: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.25 16.25L12 13.5L14.75 16.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.75 7.75L12 10.5L9.25 7.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 20.5V14\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 10V3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5002 4.5H4.5C3.39543 4.5 2.5 5.39543 2.5 6.5V17.5C2.5 18.6046 3.39543 19.5 4.5 19.5H7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 4.5H19.5C20.6046 4.5 21.5 5.39543 21.5 6.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsHide;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowsHide","props","React","CentralIconBase","IconArrowsHide_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!B.call(r,s)&&s!==n&&p(r,s,{get:()=>o[s],enumerable:!(i=L(o,s))||i.enumerable});return r};var C=(r,o,n)=>(n=r!=null?l(f(r)):{},u(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>u(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconArrowsShow:()=>c,default:()=>P});module.exports=x(g);var e=C(require("react"));var d=C(require("react")),k=require("react-native-svg"),a=({children:r,size:o=24,...n})=>d.default.createElement(k.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>e.default.createElement(a,{...r},e.default.createElement(t.Path,{d:"M9.25 5.25L12 2.5L14.75 5.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M14.75 18.75L12 21.5L9.25 18.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12 9.5V3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12 21V14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M7.5002 8.5H4.5C3.39543 8.5 2.5 9.39543 2.5 10.5V13.5C2.5 14.6046 3.39543 15.5 4.5 15.5H7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M16.5 8.5H19.5C20.6046 8.5 21.5 9.39543 21.5 10.5V13.5C21.5 14.6046 20.6046 15.5 19.5 15.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=c;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconArrowsShow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.25 5.25L12 2.5L14.75 5.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.75 18.75L12 21.5L9.25 18.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 9.5V3\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 21V14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5002 8.5H4.5C3.39543 8.5 2.5 9.39543 2.5 10.5V13.5C2.5 14.6046 3.39543 15.5 4.5 15.5H7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 8.5H19.5C20.6046 8.5 21.5 9.39543 21.5 10.5V13.5C21.5 14.6046 20.6046 15.5 19.5 15.5H16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsShow;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconArrowsShow_exports","__export","IconArrowsShow","IconArrowsShow_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowsShow","props","React","CentralIconBase","IconArrowsShow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...s})=>p.createElement(i,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(n,{d:"M9.25 5.25L12 2.5L14.75 5.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M14.75 18.75L12 21.5L9.25 18.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 9.5V3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 21V14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M7.5002 8.5H4.5C3.39543 8.5 2.5 9.39543 2.5 10.5V13.5C2.5 14.6046 3.39543 15.5 4.5 15.5H7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M16.5 8.5H19.5C20.6046 8.5 21.5 9.39543 21.5 10.5V13.5C21.5 14.6046 20.6046 15.5 19.5 15.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconArrowsShow,B 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconArrowsShow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.25 5.25L12 2.5L14.75 5.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.75 18.75L12 21.5L9.25 18.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 9.5V3\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 21V14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5002 8.5H4.5C3.39543 8.5 2.5 9.39543 2.5 10.5V13.5C2.5 14.6046 3.39543 15.5 4.5 15.5H7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 8.5H19.5C20.6046 8.5 21.5 9.39543 21.5 10.5V13.5C21.5 14.6046 20.6046 15.5 19.5 15.5H16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsShow;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowsShow","props","React","CentralIconBase","IconArrowsShow_default"]}
|
package/README.md
CHANGED
|
@@ -261,12 +261,14 @@ Below is a complete list of available icons:
|
|
|
261
261
|
- IconArrowRotateRightLeft
|
|
262
262
|
- IconArrowShareLeft
|
|
263
263
|
- IconArrowShareRight
|
|
264
|
+
- IconArrowsHide
|
|
264
265
|
- IconArrowSplit
|
|
265
266
|
- IconArrowsRepeat
|
|
266
267
|
- IconArrowsRepeatCircle
|
|
267
268
|
- IconArrowsRepeatLeftRight
|
|
268
269
|
- IconArrowsRepeatRightLeft
|
|
269
270
|
- IconArrowsRepeatRightLeftOff
|
|
271
|
+
- IconArrowsShow
|
|
270
272
|
- IconArrowsZoom
|
|
271
273
|
- IconArrowTopBottom
|
|
272
274
|
- IconArrowTriangleBottom
|
package/filtered-icons.json
CHANGED
|
@@ -1610,6 +1610,20 @@
|
|
|
1610
1610
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
1611
1611
|
"componentName": "IconArrowShareRight"
|
|
1612
1612
|
},
|
|
1613
|
+
{
|
|
1614
|
+
"category": "Arrows",
|
|
1615
|
+
"svg": "<path d=\"M9.25 16.25L12 13.5L14.75 16.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 7.75L12 10.5L9.25 7.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 20.5V14\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 10V3.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5002 4.5H4.5C3.39543 4.5 2.5 5.39543 2.5 6.5V17.5C2.5 18.6046 3.39543 19.5 4.5 19.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 4.5H19.5C20.6046 4.5 21.5 5.39543 21.5 6.5V17.5C21.5 18.6046 20.6046 19.5 19.5 19.5H16.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1616
|
+
"iconName": "arrows-hide, collapse, minimize",
|
|
1617
|
+
"variant": {
|
|
1618
|
+
"join": "round",
|
|
1619
|
+
"filled": "off",
|
|
1620
|
+
"radius": "2",
|
|
1621
|
+
"stroke": "1"
|
|
1622
|
+
},
|
|
1623
|
+
"createdAt": "2025-12-03T09:02:16.575537+00:00",
|
|
1624
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
1625
|
+
"componentName": "IconArrowsHide"
|
|
1626
|
+
},
|
|
1613
1627
|
{
|
|
1614
1628
|
"category": "Arrows",
|
|
1615
1629
|
"svg": "<path d=\"M3.5 9.5V3.5M3.5 3.5H9.5M3.5 3.5L12 12M14.5 3.5H20.5M20.5 3.5V9.5M20.5 3.5L12 12M12 12V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -1694,6 +1708,20 @@
|
|
|
1694
1708
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
1695
1709
|
"componentName": "IconArrowsRepeatRightLeftOff"
|
|
1696
1710
|
},
|
|
1711
|
+
{
|
|
1712
|
+
"category": "Arrows",
|
|
1713
|
+
"svg": "<path d=\"M9.25 5.25L12 2.5L14.75 5.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 18.75L12 21.5L9.25 18.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 9.5V3\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 21V14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5002 8.5H4.5C3.39543 8.5 2.5 9.39543 2.5 10.5V13.5C2.5 14.6046 3.39543 15.5 4.5 15.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 8.5H19.5C20.6046 8.5 21.5 9.39543 21.5 10.5V13.5C21.5 14.6046 20.6046 15.5 19.5 15.5H16.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1714
|
+
"iconName": "arrows-show, expand, maximize",
|
|
1715
|
+
"variant": {
|
|
1716
|
+
"join": "round",
|
|
1717
|
+
"filled": "off",
|
|
1718
|
+
"radius": "2",
|
|
1719
|
+
"stroke": "1"
|
|
1720
|
+
},
|
|
1721
|
+
"createdAt": "2025-12-03T09:02:16.575537+00:00",
|
|
1722
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
1723
|
+
"componentName": "IconArrowsShow"
|
|
1724
|
+
},
|
|
1697
1725
|
{
|
|
1698
1726
|
"category": "Arrows",
|
|
1699
1727
|
"svg": "<path d=\"M9.5 4.5H4.5V9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 4.5H19.5V9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 19.5H4.5V14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 19.5H19.5V14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5 5L9.75 9.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 5L14.25 9.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 14.25L5 19\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.25 14.25L19 19\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
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"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.53",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1620,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 62,
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
]
|
|
96
96
|
},
|
|
97
97
|
"Arrows": {
|
|
98
|
-
"count":
|
|
98
|
+
"count": 116,
|
|
99
99
|
"icons": [
|
|
100
100
|
"IconArrow",
|
|
101
101
|
"IconArrowBottomTop",
|
|
@@ -135,12 +135,14 @@
|
|
|
135
135
|
"IconArrowRotateRightLeft",
|
|
136
136
|
"IconArrowShareLeft",
|
|
137
137
|
"IconArrowShareRight",
|
|
138
|
+
"IconArrowsHide",
|
|
138
139
|
"IconArrowSplit",
|
|
139
140
|
"IconArrowsRepeat",
|
|
140
141
|
"IconArrowsRepeatCircle",
|
|
141
142
|
"IconArrowsRepeatLeftRight",
|
|
142
143
|
"IconArrowsRepeatRightLeft",
|
|
143
144
|
"IconArrowsRepeatRightLeftOff",
|
|
145
|
+
"IconArrowsShow",
|
|
144
146
|
"IconArrowsZoom",
|
|
145
147
|
"IconArrowTopBottom",
|
|
146
148
|
"IconArrowTriangleBottom",
|
|
@@ -1923,12 +1925,14 @@
|
|
|
1923
1925
|
"IconArrowsAllSides21": "arrows-all-sides-2, scan-text, text, focus, list",
|
|
1924
1926
|
"IconArrowShareLeft": "arrow-share-left, back, last, reply",
|
|
1925
1927
|
"IconArrowShareRight": "arrow-share-right, next, forward",
|
|
1928
|
+
"IconArrowsHide": "arrows-hide, collapse, minimize",
|
|
1926
1929
|
"IconArrowSplit": "arrow-split, rules, direction, split",
|
|
1927
1930
|
"IconArrowsRepeat": "arrows-repeat, repost",
|
|
1928
1931
|
"IconArrowsRepeatCircle": "arrows-repeat-circle, repost",
|
|
1929
1932
|
"IconArrowsRepeatLeftRight": "arrows-repeat-left-right, retweet",
|
|
1930
1933
|
"IconArrowsRepeatRightLeft": "arrows-repeat-right-left, repost",
|
|
1931
1934
|
"IconArrowsRepeatRightLeftOff": "arrows-repeat-right-left-off, repost-off",
|
|
1935
|
+
"IconArrowsShow": "arrows-show, expand, maximize",
|
|
1932
1936
|
"IconArrowsZoom": "arrows-zoom, scale, motion, move, directions",
|
|
1933
1937
|
"IconArrowTopBottom": "arrow-top-bottom, sort 1, switch vertical",
|
|
1934
1938
|
"IconArrowTriangleBottom": "arrow-triangle-bottom",
|
package/index.d.ts
CHANGED
|
@@ -136,11 +136,13 @@ export { IconArrowWallUp, default as IconArrowWallUpDefault, } from "./IconArrow
|
|
|
136
136
|
export { IconArrowsAllSides, default as IconArrowsAllSidesDefault, } from "./IconArrowsAllSides";
|
|
137
137
|
export { IconArrowsAllSides2, default as IconArrowsAllSides2Default, } from "./IconArrowsAllSides2";
|
|
138
138
|
export { IconArrowsAllSides21, default as IconArrowsAllSides21Default, } from "./IconArrowsAllSides21";
|
|
139
|
+
export { IconArrowsHide, default as IconArrowsHideDefault, } from "./IconArrowsHide";
|
|
139
140
|
export { IconArrowsRepeat, default as IconArrowsRepeatDefault, } from "./IconArrowsRepeat";
|
|
140
141
|
export { IconArrowsRepeatCircle, default as IconArrowsRepeatCircleDefault, } from "./IconArrowsRepeatCircle";
|
|
141
142
|
export { IconArrowsRepeatLeftRight, default as IconArrowsRepeatLeftRightDefault, } from "./IconArrowsRepeatLeftRight";
|
|
142
143
|
export { IconArrowsRepeatRightLeft, default as IconArrowsRepeatRightLeftDefault, } from "./IconArrowsRepeatRightLeft";
|
|
143
144
|
export { IconArrowsRepeatRightLeftOff, default as IconArrowsRepeatRightLeftOffDefault, } from "./IconArrowsRepeatRightLeftOff";
|
|
145
|
+
export { IconArrowsShow, default as IconArrowsShowDefault, } from "./IconArrowsShow";
|
|
144
146
|
export { IconArrowsZoom, default as IconArrowsZoomDefault, } from "./IconArrowsZoom";
|
|
145
147
|
export { IconArtifactNews, default as IconArtifactNewsDefault, } from "./IconArtifactNews";
|
|
146
148
|
export { IconAspectRatio11, default as IconAspectRatio11Default, } from "./IconAspectRatio11";
|