@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.96 → 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.
Files changed (41) hide show
  1. package/IconArrowSplitDown1/index.d.ts +4 -0
  2. package/IconArrowSplitDown1/index.js +2 -0
  3. package/IconArrowSplitDown1/index.js.map +1 -0
  4. package/IconArrowSplitDown1/index.mjs +2 -0
  5. package/IconArrowSplitDown1/index.mjs.map +1 -0
  6. package/IconArrowSplitLeft/index.d.ts +4 -0
  7. package/IconArrowSplitLeft/index.js +2 -0
  8. package/IconArrowSplitLeft/index.js.map +1 -0
  9. package/IconArrowSplitLeft/index.mjs +2 -0
  10. package/IconArrowSplitLeft/index.mjs.map +1 -0
  11. package/IconArrowSplitRight/index.d.ts +4 -0
  12. package/IconArrowSplitRight/index.js +2 -0
  13. package/IconArrowSplitRight/index.js.map +1 -0
  14. package/IconArrowSplitRight/index.mjs +2 -0
  15. package/IconArrowSplitRight/index.mjs.map +1 -0
  16. package/IconArrowSplitUp/index.d.ts +4 -0
  17. package/IconArrowSplitUp/index.js +2 -0
  18. package/IconArrowSplitUp/index.js.map +1 -0
  19. package/{IconArrowSplit → IconArrowSplitUp}/index.mjs +1 -1
  20. package/IconArrowSplitUp/index.mjs.map +1 -0
  21. package/IconListAdd/index.d.ts +4 -0
  22. package/IconListAdd/index.js +2 -0
  23. package/IconListAdd/index.js.map +1 -0
  24. package/IconListAdd/index.mjs +2 -0
  25. package/IconListAdd/index.mjs.map +1 -0
  26. package/README.md +5 -1
  27. package/filtered-icons.json +65 -9
  28. package/icons/index.d.ts +5 -1
  29. package/icons-index.json +15 -7
  30. package/index.d.ts +5 -1
  31. package/index.js +1 -1
  32. package/index.js.map +1 -1
  33. package/index.mjs +1 -1
  34. package/index.mjs.map +1 -1
  35. package/license-check.js +1 -1
  36. package/package.json +1 -1
  37. package/tsx-icons.json +36 -8
  38. package/IconArrowSplit/index.d.ts +0 -4
  39. package/IconArrowSplit/index.js +0 -2
  40. package/IconArrowSplit/index.js.map +0 -1
  41. package/IconArrowSplit/index.mjs.map +0 -1
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconArrowSplitDown1: FC<CentralIconBaseProps>;
4
+ export default IconArrowSplitDown1;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of d(o))!I.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(a=k(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(B(r)):{},l(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconArrowSplitDown1:()=>u,default:()=>P});module.exports=x(g);var n=C(require("react"));var c=C(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...e})=>c.default.createElement(i.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(s.Path,{d:"M4 15V20H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M15 20H20V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M12 12V4M12 12L5 19M12 12L19 19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),P=u;0&&(module.exports={IconArrowSplitDown1});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitDown1/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 IconArrowSplitDown1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 15V20H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15 20H20V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 12V4M12 12L5 19M12 12L19 19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitDown1;\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,yBAAAE,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,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitDown1_exports","__export","IconArrowSplitDown1","IconArrowSplitDown1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowSplitDown1","props","React","CentralIconBase","IconArrowSplitDown1_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M4 15V20H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M15 20H20V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M12 12V4M12 12L5 19M12 12L19 19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),I=l;export{l as IconArrowSplitDown1,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitDown1/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 IconArrowSplitDown1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 15V20H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15 20H20V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 12V4M12 12L5 19M12 12L19 19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitDown1;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowSplitDown1","props","React","CentralIconBase","IconArrowSplitDown1_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconArrowSplitLeft: FC<CentralIconBaseProps>;
4
+ export default IconArrowSplitLeft;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of d(o))!I.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(a=k(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(B(r)):{},l(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconArrowSplitLeft:()=>u,default:()=>P});module.exports=x(g);var n=C(require("react"));var c=C(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...e})=>c.default.createElement(i.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(s.Path,{d:"M9 20H4V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M4 9V4H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M12 12H20M12 12L5 19M12 12L5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),P=u;0&&(module.exports={IconArrowSplitLeft});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitLeft/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 IconArrowSplitLeft: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9 20H4V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 9V4H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 12H20M12 12L5 19M12 12L5 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitLeft;\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,wBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitLeft_exports","__export","IconArrowSplitLeft","IconArrowSplitLeft_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowSplitLeft","props","React","CentralIconBase","IconArrowSplitLeft_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M9 20H4V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M4 9V4H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M12 12H20M12 12L5 19M12 12L5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),I=l;export{l as IconArrowSplitLeft,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitLeft/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 IconArrowSplitLeft: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9 20H4V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 9V4H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 12H20M12 12L5 19M12 12L5 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitLeft;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowSplitLeft","props","React","CentralIconBase","IconArrowSplitLeft_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconArrowSplitRight: FC<CentralIconBaseProps>;
4
+ export default IconArrowSplitRight;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},i=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!B.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(a=k(o,e))||a.enumerable});return r};var l=(r,o,t)=>(t=r!=null?f(h(r)):{},i(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>i(p({},"__esModule",{value:!0}),r);var P={};I(P,{IconArrowSplitRight:()=>u,default:()=>x});module.exports=g(P);var n=l(require("react"));var C=l(require("react")),c=require("react-native-svg"),m=({children:r,size:o=24,...t})=>C.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(s.Path,{d:"M15 20H20V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M20 9V4H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M12 12H4M12 12L19 19M12 12L19 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),x=u;0&&(module.exports={IconArrowSplitRight});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitRight/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 IconArrowSplitRight: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 20H20V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M20 9V4H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 12H4M12 12L19 19M12 12L19 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitRight;\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,yBAAAE,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,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitRight_exports","__export","IconArrowSplitRight","IconArrowSplitRight_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowSplitRight","props","React","CentralIconBase","IconArrowSplitRight_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:t,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var i=t=>o.createElement(n,{...t},o.createElement(e,{d:"M15 20H20V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M20 9V4H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M12 12H4M12 12L19 19M12 12L19 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),B=i;export{i as IconArrowSplitRight,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitRight/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 IconArrowSplitRight: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 20H20V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M20 9V4H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 12H4M12 12L19 19M12 12L19 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitRight;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowSplitRight","props","React","CentralIconBase","IconArrowSplitRight_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconArrowSplitUp: FC<CentralIconBaseProps>;
4
+ export default IconArrowSplitUp;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of d(o))!I.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(a=k(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(B(r)):{},l(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconArrowSplitUp:()=>u,default:()=>P});module.exports=x(g);var n=C(require("react"));var c=C(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...e})=>c.default.createElement(i.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(s.Path,{d:"M4 9V4H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M15 4H20V9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M12 12V20M12 12L5 5M12 12L19 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),P=u;0&&(module.exports={IconArrowSplitUp});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitUp/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 IconArrowSplitUp: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 9V4H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15 4H20V9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 12V20M12 12L5 5M12 12L19 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitUp;\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,sBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitUp_exports","__export","IconArrowSplitUp","IconArrowSplitUp_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowSplitUp","props","React","CentralIconBase","IconArrowSplitUp_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M4 9V4H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M15 4H20V9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M12 12V20M12 12L5 5M12 12L19 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),I=l;export{l as IconArrowSplit,I as default};
1
+ import o from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M4 9V4H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M15 4H20V9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M12 12V20M12 12L5 5M12 12L19 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),I=l;export{l as IconArrowSplitUp,I as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitUp/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 IconArrowSplitUp: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 9V4H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15 4H20V9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 12V20M12 12L5 5M12 12L19 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitUp;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowSplitUp","props","React","CentralIconBase","IconArrowSplitUp_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconListAdd: FC<CentralIconBaseProps>;
4
+ export default IconListAdd;
@@ -0,0 +1,2 @@
1
+ "use strict";var d=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!B.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(a=m(o,s))||a.enumerable});return r};var u=(r,o,e)=>(e=r!=null?d(h(r)):{},i(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>i(p({},"__esModule",{value:!0}),r);var P={};I(P,{IconListAdd:()=>l,default:()=>L});module.exports=x(P);var t=u(require("react"));var C=u(require("react")),c=require("react-native-svg"),k=({children:r,size:o=24,...e})=>C.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),l=r=>t.default.createElement(k,{...r},t.default.createElement(n.Path,{d:"M4 6H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M4 12H10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M15 15L21 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M18 12V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M4 18H10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),L=l;0&&(module.exports={IconListAdd});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconListAdd/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 IconListAdd: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 6H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 12H10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15 15L21 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M18 12V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 18H10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListAdd;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconListAdd_exports","__export","IconListAdd","IconListAdd_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconListAdd","props","React","CentralIconBase","IconListAdd_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import p from"react";import{Svg as a}from"react-native-svg";var n=({children:t,size:r=24,...s})=>p.createElement(a,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var i=t=>o.createElement(n,{...t},o.createElement(e,{d:"M4 6H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M4 12H10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M15 15L21 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M18 12V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M4 18H10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),B=i;export{i as IconListAdd,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconListAdd/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 IconListAdd: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 6H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 12H10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15 15L21 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M18 12V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 18H10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListAdd;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconListAdd","props","React","CentralIconBase","IconListAdd_default"]}
package/README.md CHANGED
@@ -270,8 +270,11 @@ Below is a complete list of available icons:
270
270
  - IconArrowShareLeft
271
271
  - IconArrowShareRight
272
272
  - IconArrowsHide
273
- - IconArrowSplit
274
273
  - IconArrowSplitDown
274
+ - IconArrowSplitDown1
275
+ - IconArrowSplitLeft
276
+ - IconArrowSplitRight
277
+ - IconArrowSplitUp
275
278
  - IconArrowsRepeat
276
279
  - IconArrowsRepeatCircle
277
280
  - IconArrowsRepeatRightLeft
@@ -1032,6 +1035,7 @@ Below is a complete list of available icons:
1032
1035
  - IconLightBulb
1033
1036
  - IconLightbulbGlow
1034
1037
  - IconLightBulbSimple
1038
+ - IconListAdd
1035
1039
  - IconListBullets
1036
1040
  - IconLoader
1037
1041
  - IconLoadingCircle
@@ -1738,31 +1738,73 @@
1738
1738
  },
1739
1739
  {
1740
1740
  "category": "Arrows",
1741
- "svg": "<path d=\"M4 9V4H9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M15 4H20V9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M12 12V20M12 12L5 5M12 12L19 5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
1742
- "iconName": "arrow-split, rules, direction, split",
1741
+ "svg": "<path d=\"M12 3V12L18 18\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M19 13V19H13\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M4.5 19.5L6.5 17.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M8 16L10 14\" stroke=\"currentColor\" stroke-width=\"2\"/>",
1742
+ "iconName": "arrow-split-down, branch",
1743
1743
  "variant": {
1744
1744
  "join": "square",
1745
1745
  "filled": "off",
1746
1746
  "radius": "0",
1747
1747
  "stroke": "2"
1748
1748
  },
1749
- "createdAt": "2025-02-15T21:11:33.661733+00:00",
1749
+ "createdAt": "2026-01-16T11:00:58.280999+00:00",
1750
1750
  "packageName": "square-outlined-radius-0-stroke-2",
1751
- "componentName": "IconArrowSplit"
1751
+ "componentName": "IconArrowSplitDown"
1752
1752
  },
1753
1753
  {
1754
1754
  "category": "Arrows",
1755
- "svg": "<path d=\"M12 3V12L18 18\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M19 13V19H13\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M4.5 19.5L6.5 17.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M8 16L10 14\" stroke=\"currentColor\" stroke-width=\"2\"/>",
1756
- "iconName": "arrow-split-down, branch",
1755
+ "svg": "<path d=\"M4 15V20H9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M15 20H20V15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M12 12V4M12 12L5 19M12 12L19 19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
1756
+ "iconName": "arrow-split-down, rules, direction, split",
1757
1757
  "variant": {
1758
1758
  "join": "square",
1759
1759
  "filled": "off",
1760
1760
  "radius": "0",
1761
1761
  "stroke": "2"
1762
1762
  },
1763
- "createdAt": "2026-01-16T11:00:58.280999+00:00",
1763
+ "createdAt": "2026-01-25T14:00:21.596949+00:00",
1764
1764
  "packageName": "square-outlined-radius-0-stroke-2",
1765
- "componentName": "IconArrowSplitDown"
1765
+ "componentName": "IconArrowSplitDown1"
1766
+ },
1767
+ {
1768
+ "category": "Arrows",
1769
+ "svg": "<path d=\"M9 20H4V15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M4 9V4H9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M12 12H20M12 12L5 19M12 12L5 5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
1770
+ "iconName": "arrow-split-left, rules, direction, split",
1771
+ "variant": {
1772
+ "join": "square",
1773
+ "filled": "off",
1774
+ "radius": "0",
1775
+ "stroke": "2"
1776
+ },
1777
+ "createdAt": "2026-01-25T15:00:48.328154+00:00",
1778
+ "packageName": "square-outlined-radius-0-stroke-2",
1779
+ "componentName": "IconArrowSplitLeft"
1780
+ },
1781
+ {
1782
+ "category": "Arrows",
1783
+ "svg": "<path d=\"M15 20H20V15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M20 9V4H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M12 12H4M12 12L19 19M12 12L19 5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
1784
+ "iconName": "arrow-split-right, rules, direction, split",
1785
+ "variant": {
1786
+ "join": "square",
1787
+ "filled": "off",
1788
+ "radius": "0",
1789
+ "stroke": "2"
1790
+ },
1791
+ "createdAt": "2026-01-25T15:00:48.328154+00:00",
1792
+ "packageName": "square-outlined-radius-0-stroke-2",
1793
+ "componentName": "IconArrowSplitRight"
1794
+ },
1795
+ {
1796
+ "category": "Arrows",
1797
+ "svg": "<path d=\"M4 9V4H9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M15 4H20V9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M12 12V20M12 12L5 5M12 12L19 5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
1798
+ "iconName": "arrow-split-up, rules, direction, split",
1799
+ "variant": {
1800
+ "join": "square",
1801
+ "filled": "off",
1802
+ "radius": "0",
1803
+ "stroke": "2"
1804
+ },
1805
+ "createdAt": "2025-02-15T21:11:33.661733+00:00",
1806
+ "packageName": "square-outlined-radius-0-stroke-2",
1807
+ "componentName": "IconArrowSplitUp"
1766
1808
  },
1767
1809
  {
1768
1810
  "category": "Arrows",
@@ -13317,7 +13359,7 @@
13317
13359
  {
13318
13360
  "category": "Folders & Files",
13319
13361
  "svg": "<path d=\"M4 4V20M9 4V20M14 4.25L20 20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
13320
- "iconName": "library",
13362
+ "iconName": "library, stuff, vinyl-records",
13321
13363
  "variant": {
13322
13364
  "join": "square",
13323
13365
  "filled": "off",
@@ -13566,6 +13608,20 @@
13566
13608
  "packageName": "square-outlined-radius-0-stroke-2",
13567
13609
  "componentName": "IconLiquidGlass"
13568
13610
  },
13611
+ {
13612
+ "category": "Interface General",
13613
+ "svg": "<path d=\"M4 6H20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M4 12H10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M15 15L21 15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M18 12V18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M4 18H10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
13614
+ "iconName": "list-add, list-plus, new-list",
13615
+ "variant": {
13616
+ "join": "square",
13617
+ "filled": "off",
13618
+ "radius": "0",
13619
+ "stroke": "2"
13620
+ },
13621
+ "createdAt": "2026-01-25T14:00:21.596949+00:00",
13622
+ "packageName": "square-outlined-radius-0-stroke-2",
13623
+ "componentName": "IconListAdd"
13624
+ },
13569
13625
  {
13570
13626
  "category": "Interface General",
13571
13627
  "svg": "<path d=\"M9 6L21 6\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"4.5\" cy=\"6\" r=\"1.5\" fill=\"currentColor\"/><path d=\"M9 12L21 12\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"4.5\" cy=\"12\" r=\"1.5\" fill=\"currentColor\"/><path d=\"M9 18L21 18\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"4.5\" cy=\"18\" r=\"1.5\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -123,8 +123,11 @@ export type CentralIconName =
123
123
  | "IconArrowShareLeft"
124
124
  | "IconArrowShareRight"
125
125
  | "IconArrowsHide"
126
- | "IconArrowSplit"
127
126
  | "IconArrowSplitDown"
127
+ | "IconArrowSplitDown1"
128
+ | "IconArrowSplitLeft"
129
+ | "IconArrowSplitRight"
130
+ | "IconArrowSplitUp"
128
131
  | "IconArrowsRepeat"
129
132
  | "IconArrowsRepeatCircle"
130
133
  | "IconArrowsRepeatRightLeft"
@@ -968,6 +971,7 @@ export type CentralIconName =
968
971
  | "IconLinkedin"
969
972
  | "IconLinktree"
970
973
  | "IconLiquidGlass"
974
+ | "IconListAdd"
971
975
  | "IconListBullets"
972
976
  | "IconListBulletsSquare"
973
977
  | "IconListSparkle"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/square-outlined-radius-0-stroke-2",
3
- "version": "1.1.96",
3
+ "version": "1.1.98",
4
4
  "style": "square-outlined-radius-0-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-2/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": 1701,
14
+ "totalIcons": 1705,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 66,
@@ -99,7 +99,7 @@
99
99
  ]
100
100
  },
101
101
  "Arrows": {
102
- "count": 123,
102
+ "count": 126,
103
103
  "icons": [
104
104
  "IconArrow",
105
105
  "IconArrowBottomTop",
@@ -144,8 +144,11 @@
144
144
  "IconArrowShareLeft",
145
145
  "IconArrowShareRight",
146
146
  "IconArrowsHide",
147
- "IconArrowSplit",
148
147
  "IconArrowSplitDown",
148
+ "IconArrowSplitDown1",
149
+ "IconArrowSplitLeft",
150
+ "IconArrowSplitRight",
151
+ "IconArrowSplitUp",
149
152
  "IconArrowsRepeat",
150
153
  "IconArrowsRepeatCircle",
151
154
  "IconArrowsRepeatRightLeft",
@@ -843,7 +846,7 @@
843
846
  ]
844
847
  },
845
848
  "Interface General": {
846
- "count": 177,
849
+ "count": 178,
847
850
  "icons": [
848
851
  "IconAnchor1",
849
852
  "IconAnchor2",
@@ -938,6 +941,7 @@
938
941
  "IconLightBulb",
939
942
  "IconLightbulbGlow",
940
943
  "IconLightBulbSimple",
944
+ "IconListAdd",
941
945
  "IconListBullets",
942
946
  "IconLoader",
943
947
  "IconLoadingCircle",
@@ -2020,8 +2024,11 @@
2020
2024
  "IconArrowShareLeft": "arrow-share-left, back, last, reply",
2021
2025
  "IconArrowShareRight": "arrow-share-right, next, forward",
2022
2026
  "IconArrowsHide": "arrows-hide, collapse, minimize",
2023
- "IconArrowSplit": "arrow-split, rules, direction, split",
2024
2027
  "IconArrowSplitDown": "arrow-split-down, branch",
2028
+ "IconArrowSplitDown1": "arrow-split-down, rules, direction, split",
2029
+ "IconArrowSplitLeft": "arrow-split-left, rules, direction, split",
2030
+ "IconArrowSplitRight": "arrow-split-right, rules, direction, split",
2031
+ "IconArrowSplitUp": "arrow-split-up, rules, direction, split",
2025
2032
  "IconArrowsRepeat": "arrows-repeat, repost",
2026
2033
  "IconArrowsRepeatCircle": "arrows-repeat-circle, repost",
2027
2034
  "IconArrowsRepeatRightLeft": "arrows-repeat-right-left, repost",
@@ -2847,7 +2854,7 @@
2847
2854
  "IconLayoutWindow": "layout-window, grid, window",
2848
2855
  "IconLeaderboard": "leaderboard, winner, stats, graph",
2849
2856
  "IconLemonsqueezy": "lemonsqueezy",
2850
- "IconLibrary": "library",
2857
+ "IconLibrary": "library, stuff, vinyl-records",
2851
2858
  "IconLifeVest": "life-vest, vest",
2852
2859
  "IconLightBulb": "light-bulb, idea, light",
2853
2860
  "IconLightbulbGlow": "lightbulb-glow, idea, reasoning, think",
@@ -2865,6 +2872,7 @@
2865
2872
  "IconLinkedin": "linkedin",
2866
2873
  "IconLinktree": "linktree",
2867
2874
  "IconLiquidGlass": "liquid-glass, glass-effect",
2875
+ "IconListAdd": "list-add, list-plus, new-list",
2868
2876
  "IconListBullets": "list-bullets",
2869
2877
  "IconListBulletsSquare": "list-bullets-square",
2870
2878
  "IconListSparkle": "list-sparkle, ai text, text generation",
package/index.d.ts CHANGED
@@ -120,8 +120,11 @@ export { IconArrowRotateRightLeft, default as IconArrowRotateRightLeftDefault, }
120
120
  export { IconArrowRounded, default as IconArrowRoundedDefault, } from "./IconArrowRounded";
121
121
  export { IconArrowShareLeft, default as IconArrowShareLeftDefault, } from "./IconArrowShareLeft";
122
122
  export { IconArrowShareRight, default as IconArrowShareRightDefault, } from "./IconArrowShareRight";
123
- export { IconArrowSplit, default as IconArrowSplitDefault, } from "./IconArrowSplit";
124
123
  export { IconArrowSplitDown, default as IconArrowSplitDownDefault, } from "./IconArrowSplitDown";
124
+ export { IconArrowSplitDown1, default as IconArrowSplitDown1Default, } from "./IconArrowSplitDown1";
125
+ export { IconArrowSplitLeft, default as IconArrowSplitLeftDefault, } from "./IconArrowSplitLeft";
126
+ export { IconArrowSplitRight, default as IconArrowSplitRightDefault, } from "./IconArrowSplitRight";
127
+ export { IconArrowSplitUp, default as IconArrowSplitUpDefault, } from "./IconArrowSplitUp";
125
128
  export { IconArrowTopBottom, default as IconArrowTopBottomDefault, } from "./IconArrowTopBottom";
126
129
  export { IconArrowTriangleBottom, default as IconArrowTriangleBottomDefault, } from "./IconArrowTriangleBottom";
127
130
  export { IconArrowTriangleLeft, default as IconArrowTriangleLeftDefault, } from "./IconArrowTriangleLeft";
@@ -967,6 +970,7 @@ export { IconLinebreak, default as IconLinebreakDefault, } from "./IconLinebreak
967
970
  export { IconLinkedin, default as IconLinkedinDefault } from "./IconLinkedin";
968
971
  export { IconLinktree, default as IconLinktreeDefault } from "./IconLinktree";
969
972
  export { IconLiquidGlass, default as IconLiquidGlassDefault, } from "./IconLiquidGlass";
973
+ export { IconListAdd, default as IconListAddDefault } from "./IconListAdd";
970
974
  export { IconListBullets, default as IconListBulletsDefault, } from "./IconListBullets";
971
975
  export { IconListBulletsSquare, default as IconListBulletsSquareDefault, } from "./IconListBulletsSquare";
972
976
  export { IconListSparkle, default as IconListSparkleDefault, } from "./IconListSparkle";