@central-icons-react-native/round-outlined-radius-1-stroke-1 1.1.147 → 1.1.149

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.
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var s=(r,o,e)=>(e=r!=null?u(x(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>C(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconArrowsRepeatCircle:()=>f,default:()=>d});module.exports=L(v);var p=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...e})=>m.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 i=require("react-native-svg"),f=r=>p.default.createElement(l,{...r},p.default.createElement(i.Path,{d:"M11.5 1.5L14.5 4.5L11.5 7.5M12.5 16.5L9.5 19.5L12.5 22.5M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 5.99999M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),d=f;0&&(module.exports={IconArrowsRepeatCircle});
1
+ "use strict";var d=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of L(o))!B.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(C=k(o,t))||C.enumerable});return r};var u=(r,o,e)=>(e=r!=null?d(f(r)):{},a(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(s({},"__esModule",{value:!0}),r);var g={};I(g,{IconArrowsRepeatCircle:()=>m,default:()=>P});module.exports=x(g);var n=u(require("react"));var c=u(require("react")),i=require("react-native-svg"),l=({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 p=require("react-native-svg"),m=r=>n.default.createElement(l,{...r},n.default.createElement(p.Path,{d:"M11.5 1.5L14.5 4.5L11.5 7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M12.5 16.5L9.5 19.5L12.5 22.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 6",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(p.Path,{d:"M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18",stroke:"currentColor",strokeLinecap:"round"})),P=m;0&&(module.exports={IconArrowsRepeatCircle});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArrowsRepeatCircle/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 IconArrowsRepeatCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5 1.5L14.5 4.5L11.5 7.5M12.5 16.5L9.5 19.5L12.5 22.5M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 5.99999M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsRepeatCircle;\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,4BAAAE,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,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mOACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconArrowsRepeatCircle_exports","__export","IconArrowsRepeatCircle","IconArrowsRepeatCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowsRepeatCircle","props","React","CentralIconBase","IconArrowsRepeatCircle_default"]}
1
+ {"version":3,"sources":["../src/IconArrowsRepeatCircle/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 IconArrowsRepeatCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5 1.5L14.5 4.5L11.5 7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 16.5L9.5 19.5L12.5 22.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 6\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsRepeatCircle;\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,4BAAAE,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,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8BACF,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,qFACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconArrowsRepeatCircle_exports","__export","IconArrowsRepeatCircle","IconArrowsRepeatCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowsRepeatCircle","props","React","CentralIconBase","IconArrowsRepeatCircle_default"]}
@@ -1,2 +1,2 @@
1
- import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as C}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(C,{d:"M11.5 1.5L14.5 4.5L11.5 7.5M12.5 16.5L9.5 19.5L12.5 22.5M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 5.99999M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=s;export{s as IconArrowsRepeatCircle,P as default};
1
+ import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var a=n=>o.createElement(t,{...n},o.createElement(e,{d:"M11.5 1.5L14.5 4.5L11.5 7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M12.5 16.5L9.5 19.5L12.5 22.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 6",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(e,{d:"M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18",stroke:"currentColor",strokeLinecap:"round"})),B=a;export{a as IconArrowsRepeatCircle,B as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArrowsRepeatCircle/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 IconArrowsRepeatCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5 1.5L14.5 4.5L11.5 7.5M12.5 16.5L9.5 19.5L12.5 22.5M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 5.99999M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsRepeatCircle;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mOACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowsRepeatCircle","props","React","CentralIconBase","IconArrowsRepeatCircle_default"]}
1
+ {"version":3,"sources":["../src/IconArrowsRepeatCircle/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 IconArrowsRepeatCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.5 1.5L14.5 4.5L11.5 7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 16.5L9.5 19.5L12.5 22.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 6\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsRepeatCircle;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8BACF,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,qFACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mFACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowsRepeatCircle","props","React","CentralIconBase","IconArrowsRepeatCircle_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBananas: FC<CentralIconBaseProps>;
4
+ export default IconBananas;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0})},s=(r,o,n,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!x.call(r,e)&&e!==n&&t(r,e,{get:()=>o[e],enumerable:!(a=B(o,e))||a.enumerable});return r};var m=(r,o,n)=>(n=r!=null?f(I(r)):{},s(o||!r||!r.__esModule?t(n,"default",{value:r,enumerable:!0}):n,r)),g=r=>s(t({},"__esModule",{value:!0}),r);var L={};P(L,{IconBananas:()=>u,default:()=>k});module.exports=g(L);var C=m(require("react"));var c=m(require("react")),i=require("react-native-svg"),l=({children:r,size:o=24,...n})=>c.default.createElement(i.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 p=require("react-native-svg"),u=r=>C.default.createElement(l,{...r},C.default.createElement(p.Path,{d:"M6.5 4.68042C6.5 4.06249 5.94514 3.59244 5.33561 3.69403L4.33549 3.86071C3.8533 3.94107 3.49988 4.35826 3.49988 4.8471V7.41866C3.49988 7.62964 3.43017 7.83368 3.3183 8.01255C1.00656 11.7084 3.91543 18.3613 10.0457 19.9164C16.0634 21.4429 21.0623 17.4189 21.4727 14.1592C21.5067 13.8887 21.3885 13.6276 21.1916 13.439L21.1085 13.3594C20.8 13.0639 20.3387 12.9996 19.952 13.181C14.201 15.8795 7.31069 15.5453 6.5 7.74325V4.68042Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M17.5016 14.1C18.7207 12.8809 19.1719 11.4081 19.3854 10.5149C19.46 10.2026 19.3361 9.87594 19.0792 9.68326C18.7496 9.43604 18.2837 9.47079 17.9611 9.72713C16.4259 10.947 11.8119 13.6989 6.60156 8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),k=u;0&&(module.exports={IconBananas});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBananas/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 IconBananas: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.5 4.68042C6.5 4.06249 5.94514 3.59244 5.33561 3.69403L4.33549 3.86071C3.8533 3.94107 3.49988 4.35826 3.49988 4.8471V7.41866C3.49988 7.62964 3.43017 7.83368 3.3183 8.01255C1.00656 11.7084 3.91543 18.3613 10.0457 19.9164C16.0634 21.4429 21.0623 17.4189 21.4727 14.1592C21.5067 13.8887 21.3885 13.6276 21.1916 13.439L21.1085 13.3594C20.8 13.0639 20.3387 12.9996 19.952 13.181C14.201 15.8795 7.31069 15.5453 6.5 7.74325V4.68042Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5016 14.1C18.7207 12.8809 19.1719 11.4081 19.3854 10.5149C19.46 10.2026 19.3361 9.87594 19.0792 9.68326C18.7496 9.43604 18.2837 9.47079 17.9611 9.72713C16.4259 10.947 11.8119 13.6989 6.60156 8\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBananas;\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,8aACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uMACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconBananas_exports","__export","IconBananas","IconBananas_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBananas","props","React","CentralIconBase","IconBananas_default"]}
@@ -0,0 +1,2 @@
1
+ import n from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(a,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var s=o=>n.createElement(e,{...o},n.createElement(t,{d:"M6.5 4.68042C6.5 4.06249 5.94514 3.59244 5.33561 3.69403L4.33549 3.86071C3.8533 3.94107 3.49988 4.35826 3.49988 4.8471V7.41866C3.49988 7.62964 3.43017 7.83368 3.3183 8.01255C1.00656 11.7084 3.91543 18.3613 10.0457 19.9164C16.0634 21.4429 21.0623 17.4189 21.4727 14.1592C21.5067 13.8887 21.3885 13.6276 21.1916 13.439L21.1085 13.3594C20.8 13.0639 20.3387 12.9996 19.952 13.181C14.201 15.8795 7.31069 15.5453 6.5 7.74325V4.68042Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement(t,{d:"M17.5016 14.1C18.7207 12.8809 19.1719 11.4081 19.3854 10.5149C19.46 10.2026 19.3361 9.87594 19.0792 9.68326C18.7496 9.43604 18.2837 9.47079 17.9611 9.72713C16.4259 10.947 11.8119 13.6989 6.60156 8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=s;export{s as IconBananas,x as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBananas/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 IconBananas: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.5 4.68042C6.5 4.06249 5.94514 3.59244 5.33561 3.69403L4.33549 3.86071C3.8533 3.94107 3.49988 4.35826 3.49988 4.8471V7.41866C3.49988 7.62964 3.43017 7.83368 3.3183 8.01255C1.00656 11.7084 3.91543 18.3613 10.0457 19.9164C16.0634 21.4429 21.0623 17.4189 21.4727 14.1592C21.5067 13.8887 21.3885 13.6276 21.1916 13.439L21.1085 13.3594C20.8 13.0639 20.3387 12.9996 19.952 13.181C14.201 15.8795 7.31069 15.5453 6.5 7.74325V4.68042Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5016 14.1C18.7207 12.8809 19.1719 11.4081 19.3854 10.5149C19.46 10.2026 19.3361 9.87594 19.0792 9.68326C18.7496 9.43604 18.2837 9.47079 17.9611 9.72713C16.4259 10.947 11.8119 13.6989 6.60156 8\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBananas;\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,8aACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uMACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBananas","props","React","CentralIconBase","IconBananas_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconMergeConflict: FC<CentralIconBaseProps>;
4
+ export default IconMergeConflict;
@@ -0,0 +1,2 @@
1
+ "use strict";var k=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},c=(r,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!x.call(r,s)&&s!==n&&p(r,s,{get:()=>o[s],enumerable:!(i=m(o,s))||i.enumerable});return r};var u=(r,o,n)=>(n=r!=null?k(f(r)):{},c(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>c(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconMergeConflict:()=>d,default:()=>g});module.exports=I(P);var e=u(require("react"));var C=u(require("react")),l=require("react-native-svg"),a=({children:r,size:o=24,...n})=>C.default.createElement(l.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"),d=r=>e.default.createElement(a,{...r},e.default.createElement(t.Circle,{cx:"6.5",cy:"17.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Circle,{cx:"17.5",cy:"17.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M6.5 10.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M10.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M4.5 4.5L8.5 8.5M8.5 4.5L4.5 8.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=d;0&&(module.exports={IconMergeConflict});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconMergeConflict/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconMergeConflict: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"6.5\"\n cy=\"17.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"17.5\"\n cy=\"17.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 10.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.5 4.5L8.5 8.5M8.5 4.5L4.5 8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMergeConflict;\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,uBAAAE,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,EAA6B,4BAEhBC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UACC,GAAG,MACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,OACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconMergeConflict_exports","__export","IconMergeConflict","IconMergeConflict_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMergeConflict","props","React","CentralIconBase","IconMergeConflict_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import i from"react";import{Svg as c}from"react-native-svg";var t=({children:n,size:r=24,...p})=>i.createElement(c,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as s,Path as e}from"react-native-svg";var u=n=>o.createElement(t,{...n},o.createElement(s,{cx:"6.5",cy:"17.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(s,{cx:"17.5",cy:"17.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M6.5 10.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M10.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M4.5 4.5L8.5 8.5M8.5 4.5L4.5 8.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconMergeConflict,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconMergeConflict/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconMergeConflict: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"6.5\"\n cy=\"17.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"17.5\"\n cy=\"17.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 10.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.5 4.5L8.5 8.5M8.5 4.5L4.5 8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMergeConflict;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CACC,GAAG,MACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,GAAG,OACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconMergeConflict","props","React","CentralIconBase","IconMergeConflict_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconMerged: FC<CentralIconBaseProps>;
4
+ export default IconMerged;
@@ -0,0 +1,2 @@
1
+ "use strict";var k=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,c)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of x(o))!f.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(c=m(o,s))||c.enumerable});return r};var u=(r,o,e)=>(e=r!=null?k(L(r)):{},i(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>i(p({},"__esModule",{value:!0}),r);var y={};B(y,{IconMerged:()=>d,default:()=>g});module.exports=I(y);var n=u(require("react"));var C=u(require("react")),a=require("react-native-svg"),l=({children:r,size:o=24,...e})=>C.default.createElement(a.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 t=require("react-native-svg"),d=r=>n.default.createElement(l,{...r},n.default.createElement(t.Circle,{cx:"6.5",cy:"17.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"6.5",cy:"6.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"17.5",cy:"17.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M6.5 8.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=d;0&&(module.exports={IconMerged});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconMerged/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconMerged: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"6.5\"\n cy=\"17.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"6.5\"\n cy=\"6.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"17.5\"\n cy=\"17.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 8.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMerged;\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,gBAAAE,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,EAA6B,4BAEhBC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UACC,GAAG,MACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,MACH,GAAG,MACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,OACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconMerged_exports","__export","IconMerged","IconMerged_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMerged","props","React","CentralIconBase","IconMerged_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import c from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:r=24,...p})=>c.createElement(i,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as n,Path as s}from"react-native-svg";var u=e=>o.createElement(t,{...e},o.createElement(n,{cx:"6.5",cy:"17.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{cx:"6.5",cy:"6.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{cx:"17.5",cy:"17.5",r:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(s,{d:"M6.5 8.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(s,{d:"M8.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconMerged,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconMerged/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconMerged: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"6.5\"\n cy=\"17.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"6.5\"\n cy=\"6.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"17.5\"\n cy=\"17.5\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 8.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMerged;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CACC,GAAG,MACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,GAAG,MACH,GAAG,MACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,GAAG,OACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconMerged","props","React","CentralIconBase","IconMerged_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!P.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(p=d(o,n))||p.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(t({},"__esModule",{value:!0}),r);var y={};v(y,{IconPlayCircle:()=>i,default:()=>g});module.exports=x(y);var C=m(require("react"));var c=m(require("react")),f=require("react-native-svg"),s=({children:r,size:o=24,...e})=>c.default.createElement(f.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 l=require("react-native-svg"),i=r=>C.default.createElement(s,{...r},C.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z",fill:"currentColor"}),C.default.createElement(l.Path,{d:"M10 14.8039V9.19607C10 8.79436 10.4498 8.55666 10.7817 8.78296L14.8941 11.5869C15.1852 11.7854 15.1852 12.2146 14.8941 12.4131L10.7817 15.217C10.4498 15.4433 10 15.2056 10 14.8039Z",fill:"currentColor"})),g=i;0&&(module.exports={IconPlayCircle});
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=B(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(P(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var d={};g(d,{IconPlayCircle:()=>i,default:()=>y});module.exports=v(d);var p=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>s.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 C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M10 14.804V9.19617C10 8.79446 10.4498 8.55675 10.7817 8.78305L14.8941 11.587C15.1852 11.7855 15.1852 12.2147 14.8941 12.4132L10.7817 15.2171C10.4498 15.4434 10 15.2057 10 14.804Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor"})),y=i;0&&(module.exports={IconPlayCircle});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconPlayCircle/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 IconPlayCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 14.8039V9.19607C10 8.79436 10.4498 8.55666 10.7817 8.78296L14.8941 11.5869C15.1852 11.7854 15.1852 12.2146 14.8941 12.4131L10.7817 15.217C10.4498 15.4433 10 15.2056 10 14.8039Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPlayCircle;\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,SAAS,UACT,SAAS,UACT,EAAE,mOACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPlayCircle_exports","__export","IconPlayCircle","IconPlayCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPlayCircle","props","React","CentralIconBase","IconPlayCircle_default"]}
1
+ {"version":3,"sources":["../src/IconPlayCircle/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 IconPlayCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 14.804V9.19617C10 8.79446 10.4498 8.55675 10.7817 8.78305L14.8941 11.587C15.1852 11.7855 15.1852 12.2147 14.8941 12.4132L10.7817 15.2171C10.4498 15.4434 10 15.2057 10 14.804Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPlayCircle;\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,qLACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8IACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconPlayCircle_exports","__export","IconPlayCircle","IconPlayCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPlayCircle","props","React","CentralIconBase","IconPlayCircle_default"]}
@@ -1,2 +1,2 @@
1
- import e from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:o,size:r=24,...C})=>l.createElement(p,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z",fill:"currentColor"}),e.createElement(t,{d:"M10 14.8039V9.19607C10 8.79436 10.4498 8.55666 10.7817 8.78296L14.8941 11.5869C15.1852 11.7854 15.1852 12.2146 14.8941 12.4131L10.7817 15.217C10.4498 15.4433 10 15.2056 10 14.8039Z",fill:"currentColor"})),P=a;export{a as IconPlayCircle,P as default};
1
+ import t from"react";import C from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M10 14.804V9.19617C10 8.79446 10.4498 8.55675 10.7817 8.78305L14.8941 11.587C15.1852 11.7855 15.1852 12.2147 14.8941 12.4132L10.7817 15.2171C10.4498 15.4434 10 15.2057 10 14.804Z",fill:"currentColor"}),t.createElement(n,{d:"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z",stroke:"currentColor"})),x=a;export{a as IconPlayCircle,x as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconPlayCircle/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 IconPlayCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 14.8039V9.19607C10 8.79436 10.4498 8.55666 10.7817 8.78296L14.8941 11.5869C15.1852 11.7854 15.1852 12.2146 14.8941 12.4131L10.7817 15.217C10.4498 15.4433 10 15.2056 10 14.8039Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPlayCircle;\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,SAAS,UACT,SAAS,UACT,EAAE,mOACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPlayCircle","props","React","CentralIconBase","IconPlayCircle_default"]}
1
+ {"version":3,"sources":["../src/IconPlayCircle/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 IconPlayCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 14.804V9.19617C10 8.79446 10.4498 8.55675 10.7817 8.78305L14.8941 11.587C15.1852 11.7855 15.1852 12.2147 14.8941 12.4132L10.7817 15.2171C10.4498 15.4434 10 15.2057 10 14.804Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPlayCircle;\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,qLACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8IACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPlayCircle","props","React","CentralIconBase","IconPlayCircle_default"]}
package/README.md CHANGED
@@ -462,6 +462,8 @@ Below is a complete list of available icons:
462
462
  - IconHammer2
463
463
  - IconHook
464
464
  - IconLadybug
465
+ - IconMergeConflict
466
+ - IconMerged
465
467
  - IconPullRequest
466
468
  - IconPush
467
469
  - IconRequestClosed
@@ -856,6 +858,7 @@ Below is a complete list of available icons:
856
858
  - IconApples
857
859
  - IconAvocado
858
860
  - IconBanana
861
+ - IconBananas
859
862
  - IconBirthdayCake
860
863
  - IconBottle
861
864
  - IconBreakfast
@@ -1878,7 +1878,7 @@
1878
1878
  },
1879
1879
  {
1880
1880
  "category": "Arrows",
1881
- "svg": "<path d=\"M11.5 1.5L14.5 4.5L11.5 7.5M12.5 16.5L9.5 19.5L12.5 22.5M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 5.99999M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1881
+ "svg": "<path d=\"M11.5 1.5L14.5 4.5L11.5 7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 16.5L9.5 19.5L12.5 22.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 19.5H14C18.1421 19.5 21.5 16.1421 21.5 12C21.5 9.5466 20.322 7.36834 18.5007 6\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M14 4.5H10C5.85786 4.5 2.5 7.85786 2.5 12C2.5 14.4534 3.67801 16.6317 5.49927 18\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
1882
1882
  "iconName": "arrows-repeat-circle, repost",
1883
1883
  "variant": {
1884
1884
  "join": "round",
@@ -2632,6 +2632,20 @@
2632
2632
  "packageName": "round-outlined-radius-1-stroke-1",
2633
2633
  "componentName": "IconBanana"
2634
2634
  },
2635
+ {
2636
+ "category": "Food",
2637
+ "svg": "<path d=\"M6.5 4.68042C6.5 4.06249 5.94514 3.59244 5.33561 3.69403L4.33549 3.86071C3.8533 3.94107 3.49988 4.35826 3.49988 4.8471V7.41866C3.49988 7.62964 3.43017 7.83368 3.3183 8.01255C1.00656 11.7084 3.91543 18.3613 10.0457 19.9164C16.0634 21.4429 21.0623 17.4189 21.4727 14.1592C21.5067 13.8887 21.3885 13.6276 21.1916 13.439L21.1085 13.3594C20.8 13.0639 20.3387 12.9996 19.952 13.181C14.201 15.8795 7.31069 15.5453 6.5 7.74325V4.68042Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5016 14.1C18.7207 12.8809 19.1719 11.4081 19.3854 10.5149C19.46 10.2026 19.3361 9.87594 19.0792 9.68326C18.7496 9.43604 18.2837 9.47079 17.9611 9.72713C16.4259 10.947 11.8119 13.6989 6.60156 8\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
2638
+ "iconName": "bananas, fruits",
2639
+ "variant": {
2640
+ "join": "round",
2641
+ "filled": "off",
2642
+ "radius": "1",
2643
+ "stroke": "1"
2644
+ },
2645
+ "createdAt": "2026-02-26T11:00:43.869424+00:00",
2646
+ "packageName": "round-outlined-radius-1-stroke-1",
2647
+ "componentName": "IconBananas"
2648
+ },
2635
2649
  {
2636
2650
  "category": "Building",
2637
2651
  "svg": "<path d=\"M12.501 2.29009C12.1911 2.11066 11.8089 2.11066 11.499 2.29009L2.99896 7.21114C2.69015 7.38993 2.5 7.71973 2.5 8.07657V8.50002C2.5 9.0523 2.94772 9.50002 3.5 9.50002H20.5C21.0523 9.50002 21.5 9.0523 21.5 8.50002V8.07657C21.5 7.71973 21.3099 7.38993 21.001 7.21114L12.501 2.29009Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M21.0613 19.1838C21.2772 19.8313 20.7952 20.5 20.1126 20.5H3.88749C3.20493 20.5 2.72296 19.8313 2.9388 19.1838L3.27214 18.1838C3.40825 17.7754 3.79039 17.5 4.22082 17.5H19.7793C20.2097 17.5 20.5919 17.7754 20.728 18.1838L21.0613 19.1838Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M19.5 9.5V17.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M15.5 17.5V9.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M4.5 9.5V17.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.5 17.5V9.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
@@ -15246,6 +15260,34 @@
15246
15260
  "packageName": "round-outlined-radius-1-stroke-1",
15247
15261
  "componentName": "IconMegaphone2"
15248
15262
  },
15263
+ {
15264
+ "category": "Code",
15265
+ "svg": "<circle cx=\"6.5\" cy=\"17.5\" r=\"2\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17.5\" cy=\"17.5\" r=\"2\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 10.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 4.5L8.5 8.5M8.5 4.5L4.5 8.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
15266
+ "iconName": "merge-conflict",
15267
+ "variant": {
15268
+ "join": "round",
15269
+ "filled": "off",
15270
+ "radius": "1",
15271
+ "stroke": "1"
15272
+ },
15273
+ "createdAt": "2026-03-02T07:00:55.097871+00:00",
15274
+ "packageName": "round-outlined-radius-1-stroke-1",
15275
+ "componentName": "IconMergeConflict"
15276
+ },
15277
+ {
15278
+ "category": "Code",
15279
+ "svg": "<circle cx=\"6.5\" cy=\"17.5\" r=\"2\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"6.5\" cy=\"6.5\" r=\"2\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17.5\" cy=\"17.5\" r=\"2\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 8.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 6.5H16.5C17.0523 6.5 17.5 6.94772 17.5 7.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
15280
+ "iconName": "merged",
15281
+ "variant": {
15282
+ "join": "round",
15283
+ "filled": "off",
15284
+ "radius": "1",
15285
+ "stroke": "1"
15286
+ },
15287
+ "createdAt": "2026-03-02T07:00:55.097871+00:00",
15288
+ "packageName": "round-outlined-radius-1-stroke-1",
15289
+ "componentName": "IconMerged"
15290
+ },
15249
15291
  {
15250
15292
  "category": "Sound & Music",
15251
15293
  "svg": "<path d=\"M11.9999 19.5C15.4494 19.5 18.3551 17.1712 19.2303 14M11.9999 19.5C8.55038 19.5 5.64478 17.1712 4.76953 14M11.9999 19.5V21.5M11.9999 16.5C9.51463 16.5 7.49991 14.4853 7.49991 12V7C7.49991 4.51472 9.51463 2.5 11.9999 2.5C14.4852 2.5 16.4999 4.51472 16.4999 7V12C16.4999 14.4853 14.4852 16.5 11.9999 16.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
@@ -18104,7 +18146,7 @@
18104
18146
  },
18105
18147
  {
18106
18148
  "category": "Sound & Music",
18107
- "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z\" fill=\"currentColor\"/><path d=\"M10 14.8039V9.19607C10 8.79436 10.4498 8.55666 10.7817 8.78296L14.8941 11.5869C15.1852 11.7854 15.1852 12.2146 14.8941 12.4131L10.7817 15.217C10.4498 15.4433 10 15.2056 10 14.8039Z\" fill=\"currentColor\"/>",
18149
+ "svg": "<path d=\"M10 14.804V9.19617C10 8.79446 10.4498 8.55675 10.7817 8.78305L14.8941 11.587C15.1852 11.7855 15.1852 12.2147 14.8941 12.4132L10.7817 15.2171C10.4498 15.4434 10 15.2057 10 14.804Z\" fill=\"currentColor\"/><path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\"/>",
18108
18150
  "iconName": "play-circle",
18109
18151
  "variant": {
18110
18152
  "join": "round",
package/icons/index.d.ts CHANGED
@@ -187,6 +187,7 @@ export type CentralIconName =
187
187
  | "IconBag3"
188
188
  | "IconBalloon"
189
189
  | "IconBanana"
190
+ | "IconBananas"
190
191
  | "IconBank"
191
192
  | "IconBank2"
192
193
  | "IconBanknote1"
@@ -1088,6 +1089,8 @@ export type CentralIconName =
1088
1089
  | "IconMedium"
1089
1090
  | "IconMegaphone"
1090
1091
  | "IconMegaphone2"
1092
+ | "IconMergeConflict"
1093
+ | "IconMerged"
1091
1094
  | "IconMicrophone"
1092
1095
  | "IconMicrophoneOff"
1093
1096
  | "IconMicrophoneSparkle"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-1-stroke-1",
3
- "version": "1.1.147",
3
+ "version": "1.1.149",
4
4
  "style": "round-outlined-radius-1-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-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": 1830,
14
+ "totalIcons": 1833,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 70,
@@ -299,7 +299,7 @@
299
299
  ]
300
300
  },
301
301
  "Code": {
302
- "count": 54,
302
+ "count": 56,
303
303
  "icons": [
304
304
  "IconAgent",
305
305
  "IconAgenticCoding",
@@ -344,6 +344,8 @@
344
344
  "IconHammer2",
345
345
  "IconHook",
346
346
  "IconLadybug",
347
+ "IconMergeConflict",
348
+ "IconMerged",
347
349
  "IconPullRequest",
348
350
  "IconPush",
349
351
  "IconRequestClosed",
@@ -748,12 +750,13 @@
748
750
  ]
749
751
  },
750
752
  "Food": {
751
- "count": 43,
753
+ "count": 44,
752
754
  "icons": [
753
755
  "IconAppleNewton",
754
756
  "IconApples",
755
757
  "IconAvocado",
756
758
  "IconBanana",
759
+ "IconBananas",
757
760
  "IconBirthdayCake",
758
761
  "IconBottle",
759
762
  "IconBreakfast",
@@ -2220,6 +2223,7 @@
2220
2223
  "IconBag3": "bag-3, luggage, suitcase, work",
2221
2224
  "IconBalloon": "balloon, birthday",
2222
2225
  "IconBanana": "banana, fruit",
2226
+ "IconBananas": "bananas, fruits",
2223
2227
  "IconBank": "bank",
2224
2228
  "IconBank2": "bank-2, library, gov",
2225
2229
  "IconBanknote1": "banknote-1, money, bill",
@@ -3121,6 +3125,8 @@
3121
3125
  "IconMedium": "medium",
3122
3126
  "IconMegaphone": "megaphone, loud, speak, promote, feedback",
3123
3127
  "IconMegaphone2": "megaphone-2, loud, speak, promote, feedback",
3128
+ "IconMergeConflict": "merge-conflict",
3129
+ "IconMerged": "merged",
3124
3130
  "IconMicrophone": "microphone, mic, sound, podcast",
3125
3131
  "IconMicrophoneOff": "microphone-off",
3126
3132
  "IconMicrophoneSparkle": "microphone-sparkle, mic, sound, podcast",
package/index.d.ts CHANGED
@@ -186,6 +186,7 @@ export { IconBag2Sparkle, default as IconBag2SparkleDefault, } from "./IconBag2S
186
186
  export { IconBag3, default as IconBag3Default } from "./IconBag3";
187
187
  export { IconBalloon, default as IconBalloonDefault } from "./IconBalloon";
188
188
  export { IconBanana, default as IconBananaDefault } from "./IconBanana";
189
+ export { IconBananas, default as IconBananasDefault } from "./IconBananas";
189
190
  export { IconBank, default as IconBankDefault } from "./IconBank";
190
191
  export { IconBank2, default as IconBank2Default } from "./IconBank2";
191
192
  export { IconBanknote1, default as IconBanknote1Default, } from "./IconBanknote1";
@@ -1087,6 +1088,8 @@ export { IconMedicineTablett, default as IconMedicineTablettDefault, } from "./I
1087
1088
  export { IconMedium, default as IconMediumDefault } from "./IconMedium";
1088
1089
  export { IconMegaphone, default as IconMegaphoneDefault, } from "./IconMegaphone";
1089
1090
  export { IconMegaphone2, default as IconMegaphone2Default, } from "./IconMegaphone2";
1091
+ export { IconMergeConflict, default as IconMergeConflictDefault, } from "./IconMergeConflict";
1092
+ export { IconMerged, default as IconMergedDefault } from "./IconMerged";
1090
1093
  export { IconMicrophone, default as IconMicrophoneDefault, } from "./IconMicrophone";
1091
1094
  export { IconMicrophoneOff, default as IconMicrophoneOffDefault, } from "./IconMicrophoneOff";
1092
1095
  export { IconMicrophoneSparkle, default as IconMicrophoneSparkleDefault, } from "./IconMicrophoneSparkle";