@central-icons-react-native/round-outlined-radius-3-stroke-2 1.1.60 → 1.1.61
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/IconPropeller/index.d.ts +4 -0
- package/IconPropeller/index.js +2 -0
- package/IconPropeller/index.js.map +1 -0
- package/IconPropeller/index.mjs +2 -0
- package/IconPropeller/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 u=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of h(o))!B.call(r,n)&&n!==t&&p(r,n,{get:()=>o[n],enumerable:!(s=f(o,n))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(k(r)):{},l(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>l(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconPropeller:()=>i,default:()=>x});module.exports=P(g);var e=m(require("react"));var a=m(require("react")),c=require("react-native-svg"),d=({children:r,size:o=24,...t})=>a.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=>e.default.createElement(d,{...r},e.default.createElement(C.Path,{d:"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(C.Path,{d:"M10.4984 9.5C10.4984 9.5 8.96546 7.1531 9.10687 5.4553C9.52315 0.459907 19.7474 4.24111 18.4157 6.6695C17.7141 7.94877 14.9985 7.5 13.7107 9.04415",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(C.Path,{d:"M10.5828 14.5501C10.5828 14.5501 9.31681 17.0511 7.77577 17.7775C3.24149 19.9147 1.40397 9.16961 4.17286 9.10869C5.63156 9.0767 6.6007 11.6528 8.58188 11.996",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(C.Path,{d:"M14.9167 11.9513C14.9167 11.9513 17.7156 11.7972 19.1152 12.7686C23.2332 15.6268 14.8465 22.5907 13.4093 20.2232C12.6522 18.9759 14.3986 16.8486 13.7053 14.9612",stroke:"currentColor",strokeWidth:"2"})),x=i;0&&(module.exports={IconPropeller});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPropeller/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 IconPropeller: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M10.4984 9.5C10.4984 9.5 8.96546 7.1531 9.10687 5.4553C9.52315 0.459907 19.7474 4.24111 18.4157 6.6695C17.7141 7.94877 14.9985 7.5 13.7107 9.04415\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M10.5828 14.5501C10.5828 14.5501 9.31681 17.0511 7.77577 17.7775C3.24149 19.9147 1.40397 9.16961 4.17286 9.10869C5.63156 9.0767 6.6007 11.6528 8.58188 11.996\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M14.9167 11.9513C14.9167 11.9513 17.7156 11.7972 19.1152 12.7686C23.2332 15.6268 14.8465 22.5907 13.4093 20.2232C12.6522 18.9759 14.3986 16.8486 13.7053 14.9612\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPropeller;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oHACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qJACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gKACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconPropeller_exports","__export","IconPropeller","IconPropeller_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPropeller","props","React","CentralIconBase","IconPropeller_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(s,{...C,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:"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M10.4984 9.5C10.4984 9.5 8.96546 7.1531 9.10687 5.4553C9.52315 0.459907 19.7474 4.24111 18.4157 6.6695C17.7141 7.94877 14.9985 7.5 13.7107 9.04415",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M10.5828 14.5501C10.5828 14.5501 9.31681 17.0511 7.77577 17.7775C3.24149 19.9147 1.40397 9.16961 4.17286 9.10869C5.63156 9.0767 6.6007 11.6528 8.58188 11.996",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M14.9167 11.9513C14.9167 11.9513 17.7156 11.7972 19.1152 12.7686C23.2332 15.6268 14.8465 22.5907 13.4093 20.2232C12.6522 18.9759 14.3986 16.8486 13.7053 14.9612",stroke:"currentColor",strokeWidth:"2"})),B=l;export{l as IconPropeller,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPropeller/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 IconPropeller: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M10.4984 9.5C10.4984 9.5 8.96546 7.1531 9.10687 5.4553C9.52315 0.459907 19.7474 4.24111 18.4157 6.6695C17.7141 7.94877 14.9985 7.5 13.7107 9.04415\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M10.5828 14.5501C10.5828 14.5501 9.31681 17.0511 7.77577 17.7775C3.24149 19.9147 1.40397 9.16961 4.17286 9.10869C5.63156 9.0767 6.6007 11.6528 8.58188 11.996\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M14.9167 11.9513C14.9167 11.9513 17.7156 11.7972 19.1152 12.7686C23.2332 15.6268 14.8465 22.5907 13.4093 20.2232C12.6522 18.9759 14.3986 16.8486 13.7053 14.9612\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPropeller;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oHACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qJACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gKACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mKACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPropeller","props","React","CentralIconBase","IconPropeller_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -16506,6 +16506,20 @@
|
|
|
16506
16506
|
"packageName": "round-outlined-radius-3-stroke-2",
|
|
16507
16507
|
"componentName": "IconPromptTextToVideo"
|
|
16508
16508
|
},
|
|
16509
|
+
{
|
|
16510
|
+
"category": "Things",
|
|
16511
|
+
"svg": "<path d=\"M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M10.4984 9.5C10.4984 9.5 8.96546 7.1531 9.10687 5.4553C9.52315 0.459907 19.7474 4.24111 18.4157 6.6695C17.7141 7.94877 14.9985 7.5 13.7107 9.04415\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M10.5828 14.5501C10.5828 14.5501 9.31681 17.0511 7.77577 17.7775C3.24149 19.9147 1.40397 9.16961 4.17286 9.10869C5.63156 9.0767 6.6007 11.6528 8.58188 11.996\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M14.9167 11.9513C14.9167 11.9513 17.7156 11.7972 19.1152 12.7686C23.2332 15.6268 14.8465 22.5907 13.4093 20.2232C12.6522 18.9759 14.3986 16.8486 13.7053 14.9612\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
16512
|
+
"iconName": "propeller, flight, test, wind",
|
|
16513
|
+
"variant": {
|
|
16514
|
+
"join": "round",
|
|
16515
|
+
"filled": "off",
|
|
16516
|
+
"radius": "3",
|
|
16517
|
+
"stroke": "2"
|
|
16518
|
+
},
|
|
16519
|
+
"createdAt": "2025-12-09T10:02:22.990229+00:00",
|
|
16520
|
+
"packageName": "round-outlined-radius-3-stroke-2",
|
|
16521
|
+
"componentName": "IconPropeller"
|
|
16522
|
+
},
|
|
16509
16523
|
{
|
|
16510
16524
|
"category": "Code",
|
|
16511
16525
|
"svg": "<circle cx=\"6\" cy=\"6\" r=\"2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"6\" cy=\"18\" r=\"2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"18\" cy=\"18\" r=\"2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 8V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 6H15C16.6569 6 18 7.34315 18 9V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 4L12 6L14 8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" 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-3-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.61",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-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":
|
|
14
|
+
"totalIcons": 1629,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 63,
|
|
@@ -1521,7 +1521,7 @@
|
|
|
1521
1521
|
]
|
|
1522
1522
|
},
|
|
1523
1523
|
"Things": {
|
|
1524
|
-
"count":
|
|
1524
|
+
"count": 127,
|
|
1525
1525
|
"icons": [
|
|
1526
1526
|
"IconAlien",
|
|
1527
1527
|
"IconAnvil",
|
|
@@ -1606,6 +1606,7 @@
|
|
|
1606
1606
|
"IconPlugin2",
|
|
1607
1607
|
"IconPokeball",
|
|
1608
1608
|
"IconPoop",
|
|
1609
|
+
"IconPropeller",
|
|
1609
1610
|
"IconPushTheButton",
|
|
1610
1611
|
"IconPuzzle",
|
|
1611
1612
|
"IconReadingList",
|
|
@@ -2997,6 +2998,7 @@
|
|
|
2997
2998
|
"IconPromptSuggestion": "prompt-suggestion, auto-prompt",
|
|
2998
2999
|
"IconPromptTextToImage": "prompt-text-to-image",
|
|
2999
3000
|
"IconPromptTextToVideo": "prompt-text-to-video",
|
|
3001
|
+
"IconPropeller": "propeller, flight, test, wind",
|
|
3000
3002
|
"IconPullRequest": "pull-request",
|
|
3001
3003
|
"IconPumpjack": "pumpjack, oil",
|
|
3002
3004
|
"IconPush": "push, launch, rocket",
|
package/index.d.ts
CHANGED
|
@@ -1177,6 +1177,7 @@ export { IconPrompt1, default as IconPrompt1Default } from "./IconPrompt1";
|
|
|
1177
1177
|
export { IconPromptSuggestion, default as IconPromptSuggestionDefault, } from "./IconPromptSuggestion";
|
|
1178
1178
|
export { IconPromptTextToImage, default as IconPromptTextToImageDefault, } from "./IconPromptTextToImage";
|
|
1179
1179
|
export { IconPromptTextToVideo, default as IconPromptTextToVideoDefault, } from "./IconPromptTextToVideo";
|
|
1180
|
+
export { IconPropeller, default as IconPropellerDefault, } from "./IconPropeller";
|
|
1180
1181
|
export { IconPullRequest, default as IconPullRequestDefault, } from "./IconPullRequest";
|
|
1181
1182
|
export { IconPumpjack, default as IconPumpjackDefault } from "./IconPumpjack";
|
|
1182
1183
|
export { IconPush, default as IconPushDefault } from "./IconPush";
|