@central-icons-react-native/round-filled-radius-3-stroke-2 1.1.121 → 1.1.122
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/IconSteeringWheel1/index.d.ts +4 -0
- package/IconSteeringWheel1/index.js +2 -0
- package/IconSteeringWheel1/index.js.map +1 -0
- package/IconSteeringWheel1/index.mjs +2 -0
- package/IconSteeringWheel1/index.mjs.map +1 -0
- package/README.md +4 -0
- package/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +7 -2
- 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 n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!g.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(d(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(n({},"__esModule",{value:!0}),r);var h={};v(h,{IconSteeringWheel1:()=>i,default:()=>P});module.exports=x(h);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(s.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 f=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z",fill:"currentColor"})),P=i;0&&(module.exports={IconSteeringWheel1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSteeringWheel1/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 IconSteeringWheel1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSteeringWheel1;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,wBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yhBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSteeringWheel1_exports","__export","IconSteeringWheel1","IconSteeringWheel1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSteeringWheel1","props","React","CentralIconBase","IconSteeringWheel1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>C.createElement(p,{...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 l}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z",fill:"currentColor"})),g=a;export{a as IconSteeringWheel1,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSteeringWheel1/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 IconSteeringWheel1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSteeringWheel1;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,yhBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSteeringWheel1","props","React","CentralIconBase","IconSteeringWheel1_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -21252,6 +21252,20 @@
|
|
|
21252
21252
|
"packageName": "round-filled-radius-3-stroke-2",
|
|
21253
21253
|
"componentName": "IconSteeringWheel"
|
|
21254
21254
|
},
|
|
21255
|
+
{
|
|
21256
|
+
"category": "Vehicles",
|
|
21257
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM9.75 17.3682C9.75 15.4383 7.81395 14.109 6.0127 14.8018L5.18066 15.1211C6.0584 17.0358 7.71668 18.5176 9.75 19.1562V17.3682ZM17.9873 14.8018C16.186 14.109 14.25 15.4383 14.25 17.3682V19.1562C16.2832 18.5176 17.9406 17.0356 18.8184 15.1211L17.9873 14.8018ZM12 4.5C8.25413 4.5 5.14956 7.2461 4.58984 10.835C7.33858 9.78337 9.66483 9.25 12 9.25C14.3349 9.25 16.6608 9.78358 19.4092 10.835C18.8494 7.24617 15.7458 4.5 12 4.5Z\" fill=\"currentColor\"/>",
|
|
21258
|
+
"iconName": "steering-wheel, autopilot, drive",
|
|
21259
|
+
"variant": {
|
|
21260
|
+
"join": "round",
|
|
21261
|
+
"filled": "on",
|
|
21262
|
+
"radius": "3",
|
|
21263
|
+
"stroke": "2"
|
|
21264
|
+
},
|
|
21265
|
+
"createdAt": "2026-02-09T16:00:58.002942+00:00",
|
|
21266
|
+
"packageName": "round-filled-radius-3-stroke-2",
|
|
21267
|
+
"componentName": "IconSteeringWheel1"
|
|
21268
|
+
},
|
|
21255
21269
|
{
|
|
21256
21270
|
"category": "Arrows",
|
|
21257
21271
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.70711 2.29289C8.09763 2.68342 8.09763 3.31658 7.70711 3.70711L6.41421 5H13.5C17.6421 5 21 8.35786 21 12.5C21 16.6421 17.6421 20 13.5 20H6C5.44772 20 5 19.5523 5 19C5 18.4477 5.44772 18 6 18H13.5C16.5376 18 19 15.5376 19 12.5C19 9.46243 16.5376 7 13.5 7H6.41421L7.70711 8.29289C8.09763 8.68342 8.09763 9.31658 7.70711 9.70711C7.31658 10.0976 6.68342 10.0976 6.29289 9.70711L3.29289 6.70711C2.90237 6.31658 2.90237 5.68342 3.29289 5.29289L6.29289 2.29289C6.68342 1.90237 7.31658 1.90237 7.70711 2.29289Z\" fill=\"currentColor\"/>",
|
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-filled-radius-3-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.122",
|
|
4
4
|
"style": "round-filled-radius-3-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-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": 1771,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 67,
|
|
@@ -1904,6 +1904,10 @@
|
|
|
1904
1904
|
"IconWrite"
|
|
1905
1905
|
]
|
|
1906
1906
|
},
|
|
1907
|
+
"Vehicles": {
|
|
1908
|
+
"count": 1,
|
|
1909
|
+
"icons": ["IconSteeringWheel1"]
|
|
1910
|
+
},
|
|
1907
1911
|
"Vehicles & Aircrafts": {
|
|
1908
1912
|
"count": 35,
|
|
1909
1913
|
"icons": [
|
|
@@ -3488,6 +3492,7 @@
|
|
|
3488
3492
|
"IconSteakSteamLines": "steak-steam-lines, t-bone",
|
|
3489
3493
|
"IconSteam": "steam",
|
|
3490
3494
|
"IconSteeringWheel": "steering-wheel, control, navigate, boot",
|
|
3495
|
+
"IconSteeringWheel1": "steering-wheel, autopilot, drive",
|
|
3491
3496
|
"IconStepBack": "step-back, undo",
|
|
3492
3497
|
"IconStepForwards": "step-forwards, continue",
|
|
3493
3498
|
"IconSteveJobs": "steve-jobs, professor, innovation",
|
package/index.d.ts
CHANGED
|
@@ -1516,6 +1516,7 @@ export { IconSteak, default as IconSteakDefault } from "./IconSteak";
|
|
|
1516
1516
|
export { IconSteakSteamLines, default as IconSteakSteamLinesDefault, } from "./IconSteakSteamLines";
|
|
1517
1517
|
export { IconSteam, default as IconSteamDefault } from "./IconSteam";
|
|
1518
1518
|
export { IconSteeringWheel, default as IconSteeringWheelDefault, } from "./IconSteeringWheel";
|
|
1519
|
+
export { IconSteeringWheel1, default as IconSteeringWheel1Default, } from "./IconSteeringWheel1";
|
|
1519
1520
|
export { IconStepBack, default as IconStepBackDefault } from "./IconStepBack";
|
|
1520
1521
|
export { IconStepForwards, default as IconStepForwardsDefault, } from "./IconStepForwards";
|
|
1521
1522
|
export { IconSteveJobs, default as IconSteveJobsDefault, } from "./IconSteveJobs";
|