@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.224 → 1.1.225
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/IconMapEditFlat/index.d.ts +4 -0
- package/IconMapEditFlat/index.js +2 -0
- package/IconMapEditFlat/index.js.map +1 -0
- package/IconMapEditFlat/index.mjs +2 -0
- package/IconMapEditFlat/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/skills/central-icons-react-native/SKILL.md +2 -1
- package/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=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 i=(r,o,e)=>(e=r!=null?m(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,{IconMapEditFlat:()=>d,default:()=>P});module.exports=x(g);var n=i(require("react"));var u=i(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...e})=>u.default.createElement(l.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"),d=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M12.5 6.5H7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M20.5 11.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=d;0&&(module.exports={IconMapEditFlat});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMapEditFlat/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 IconMapEditFlat: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 6.5H7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 11.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapEditFlat;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2JACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0HACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconMapEditFlat_exports","__export","IconMapEditFlat","IconMapEditFlat_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMapEditFlat","props","React","CentralIconBase","IconMapEditFlat_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
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:"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(e,{d:"M12.5 6.5H7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M20.5 11.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=a;export{a as IconMapEditFlat,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMapEditFlat/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 IconMapEditFlat: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 6.5H7.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 11.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapEditFlat;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2JACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0HACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMapEditFlat","props","React","CentralIconBase","IconMapEditFlat_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -15974,6 +15974,20 @@
|
|
|
15974
15974
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
15975
15975
|
"componentName": "IconMap"
|
|
15976
15976
|
},
|
|
15977
|
+
{
|
|
15978
|
+
"category": "Location",
|
|
15979
|
+
"svg": "<path d=\"M13.5 12.5002V10.1668L17.75 5.91684C18.3943 5.27251 19.439 5.27251 20.0833 5.91684C20.7277 6.56118 20.7277 7.60584 20.0833 8.25018L15.8333 12.5002H13.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M12.5 6.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 11.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5C3.61929 20.5 2.5 19.3807 2.5 18C2.5 16.6193 3.61929 15.5 5 15.5H7\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5 3.5H7.5V15.5H5C3.61929 15.5 2.5 16.6193 2.5 18V6C2.5 4.61929 3.61929 3.5 5 3.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
15980
|
+
"iconName": "map-edit-flat, route, plan",
|
|
15981
|
+
"variant": {
|
|
15982
|
+
"join": "round",
|
|
15983
|
+
"filled": "off",
|
|
15984
|
+
"radius": "2",
|
|
15985
|
+
"stroke": "1"
|
|
15986
|
+
},
|
|
15987
|
+
"createdAt": "2026-05-05T09:01:52.83652+00:00",
|
|
15988
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
15989
|
+
"componentName": "IconMapEditFlat"
|
|
15990
|
+
},
|
|
15977
15991
|
{
|
|
15978
15992
|
"category": "Location",
|
|
15979
15993
|
"svg": "<path d=\"M14.4978 10C14.4978 11.3807 13.3785 12.5 11.9978 12.5C10.6171 12.5 9.4978 11.3807 9.4978 10C9.4978 8.61929 10.6171 7.5 11.9978 7.5C13.3785 7.5 14.4978 8.61929 14.4978 10Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M19.5 10C19.5 14.6901 15.1968 18.8732 13.1095 20.6264C12.46 21.1719 11.54 21.1719 10.8905 20.6264C8.80318 18.8732 4.5 14.6901 4.5 10C4.5 5.75 7.85786 2.5 12 2.5C16.1421 2.5 19.5 5.75 19.5 10Z\" stroke=\"currentColor\" 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-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.225",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-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": 1984,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -1236,7 +1236,7 @@
|
|
|
1236
1236
|
]
|
|
1237
1237
|
},
|
|
1238
1238
|
"Location": {
|
|
1239
|
-
"count":
|
|
1239
|
+
"count": 19,
|
|
1240
1240
|
"icons": [
|
|
1241
1241
|
"IconDirection1",
|
|
1242
1242
|
"IconDirection2",
|
|
@@ -1246,6 +1246,7 @@
|
|
|
1246
1246
|
"IconInitiatives",
|
|
1247
1247
|
"IconLocation",
|
|
1248
1248
|
"IconMap",
|
|
1249
|
+
"IconMapEditFlat",
|
|
1249
1250
|
"IconMapPin",
|
|
1250
1251
|
"IconMapPin2",
|
|
1251
1252
|
"IconMapPinFlat",
|
|
@@ -3325,6 +3326,7 @@
|
|
|
3325
3326
|
"IconMall": "mall, store, shop, business",
|
|
3326
3327
|
"IconManusAi": "manus-ai",
|
|
3327
3328
|
"IconMap": "map, paper",
|
|
3329
|
+
"IconMapEditFlat": "map-edit-flat, route, plan",
|
|
3328
3330
|
"IconMapPin": "map-pin, location",
|
|
3329
3331
|
"IconMapPin2": "map-pin-2, location",
|
|
3330
3332
|
"IconMapPinFlat": "map-pin-flat, route",
|
package/index.d.ts
CHANGED
|
@@ -1139,6 +1139,7 @@ export { IconMakeItPop, default as IconMakeItPopDefault, } from "./IconMakeItPop
|
|
|
1139
1139
|
export { IconMall, default as IconMallDefault } from "./IconMall";
|
|
1140
1140
|
export { IconManusAi, default as IconManusAiDefault } from "./IconManusAi";
|
|
1141
1141
|
export { IconMap, default as IconMapDefault } from "./IconMap";
|
|
1142
|
+
export { IconMapEditFlat, default as IconMapEditFlatDefault, } from "./IconMapEditFlat";
|
|
1142
1143
|
export { IconMapPin, default as IconMapPinDefault } from "./IconMapPin";
|
|
1143
1144
|
export { IconMapPin2, default as IconMapPin2Default } from "./IconMapPin2";
|
|
1144
1145
|
export { IconMapPinFlat, default as IconMapPinFlatDefault, } from "./IconMapPinFlat";
|