@central-icons-react-native/round-outlined-radius-1-stroke-1 1.1.147 → 1.1.148
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconBananas/index.d.ts +4 -0
- package/IconBananas/index.js +2 -0
- package/IconBananas/index.js.map +1 -0
- package/IconBananas/index.mjs +2 -0
- package/IconBananas/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +7 -0
|
@@ -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"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -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\"/>",
|
package/icons/index.d.ts
CHANGED
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.
|
|
3
|
+
"version": "1.1.148",
|
|
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":
|
|
14
|
+
"totalIcons": 1831,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 70,
|
|
@@ -748,12 +748,13 @@
|
|
|
748
748
|
]
|
|
749
749
|
},
|
|
750
750
|
"Food": {
|
|
751
|
-
"count":
|
|
751
|
+
"count": 44,
|
|
752
752
|
"icons": [
|
|
753
753
|
"IconAppleNewton",
|
|
754
754
|
"IconApples",
|
|
755
755
|
"IconAvocado",
|
|
756
756
|
"IconBanana",
|
|
757
|
+
"IconBananas",
|
|
757
758
|
"IconBirthdayCake",
|
|
758
759
|
"IconBottle",
|
|
759
760
|
"IconBreakfast",
|
|
@@ -2220,6 +2221,7 @@
|
|
|
2220
2221
|
"IconBag3": "bag-3, luggage, suitcase, work",
|
|
2221
2222
|
"IconBalloon": "balloon, birthday",
|
|
2222
2223
|
"IconBanana": "banana, fruit",
|
|
2224
|
+
"IconBananas": "bananas, fruits",
|
|
2223
2225
|
"IconBank": "bank",
|
|
2224
2226
|
"IconBank2": "bank-2, library, gov",
|
|
2225
2227
|
"IconBanknote1": "banknote-1, money, bill",
|
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";
|