@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.164 → 1.1.165
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/IconMapPin2/index.d.ts +4 -0
- package/IconMapPin2/index.js +2 -0
- package/IconMapPin2/index.js.map +1 -0
- package/IconMapPin2/index.mjs +2 -0
- package/IconMapPin2/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 t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var v=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of I(r))!d.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(p=B(r,n))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(P(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(t({},"__esModule",{value:!0}),o);var h={};v(h,{IconMapPin2:()=>i,default:()=>g});module.exports=x(h);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C16.4446 2 20 5.6982 20 10.2002C19.9999 12.7333 18.5706 14.8093 17.1367 16.5537C16.772 16.9974 16.3953 17.4328 16.0312 17.8535C15.6643 18.2776 15.31 18.6866 14.9756 19.0938C14.3024 19.9134 13.7496 20.6777 13.3887 21.4316L13.1162 22H10.8838L10.6123 21.4316C10.2514 20.6777 9.69853 19.9144 9.02539 19.0947C8.6909 18.6874 8.33683 18.2777 7.96973 17.8535C7.60559 17.4328 7.22899 16.9974 6.86426 16.5537C5.43022 14.8093 4.00007 12.7335 4 10.2002C4 5.6982 7.55535 2 12 2ZM12 6.5C10.067 6.5 8.5 8.067 8.5 10C8.5 11.933 10.067 13.5 12 13.5C13.933 13.5 15.5 11.933 15.5 10C15.5 8.067 13.933 6.5 12 6.5Z",fill:"currentColor"})),g=i;0&&(module.exports={IconMapPin2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMapPin2/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 IconMapPin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C16.4446 2 20 5.6982 20 10.2002C19.9999 12.7333 18.5706 14.8093 17.1367 16.5537C16.772 16.9974 16.3953 17.4328 16.0312 17.8535C15.6643 18.2776 15.31 18.6866 14.9756 19.0938C14.3024 19.9134 13.7496 20.6777 13.3887 21.4316L13.1162 22H10.8838L10.6123 21.4316C10.2514 20.6777 9.69853 19.9144 9.02539 19.0947C8.6909 18.6874 8.33683 18.2777 7.96973 17.8535C7.60559 17.4328 7.22899 16.9974 6.86426 16.5537C5.43022 14.8093 4.00007 12.7335 4 10.2002C4 5.6982 7.55535 2 12 2ZM12 6.5C10.067 6.5 8.5 8.067 8.5 10C8.5 11.933 10.067 13.5 12 13.5C13.933 13.5 15.5 11.933 15.5 10C15.5 8.067 13.933 6.5 12 6.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapPin2;\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,SAAS,UACT,SAAS,UACT,EAAE,ylBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconMapPin2_exports","__export","IconMapPin2","IconMapPin2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMapPin2","props","React","CentralIconBase","IconMapPin2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>C.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C16.4446 2 20 5.6982 20 10.2002C19.9999 12.7333 18.5706 14.8093 17.1367 16.5537C16.772 16.9974 16.3953 17.4328 16.0312 17.8535C15.6643 18.2776 15.31 18.6866 14.9756 19.0938C14.3024 19.9134 13.7496 20.6777 13.3887 21.4316L13.1162 22H10.8838L10.6123 21.4316C10.2514 20.6777 9.69853 19.9144 9.02539 19.0947C8.6909 18.6874 8.33683 18.2777 7.96973 17.8535C7.60559 17.4328 7.22899 16.9974 6.86426 16.5537C5.43022 14.8093 4.00007 12.7335 4 10.2002C4 5.6982 7.55535 2 12 2ZM12 6.5C10.067 6.5 8.5 8.067 8.5 10C8.5 11.933 10.067 13.5 12 13.5C13.933 13.5 15.5 11.933 15.5 10C15.5 8.067 13.933 6.5 12 6.5Z",fill:"currentColor"})),d=a;export{a as IconMapPin2,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMapPin2/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 IconMapPin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C16.4446 2 20 5.6982 20 10.2002C19.9999 12.7333 18.5706 14.8093 17.1367 16.5537C16.772 16.9974 16.3953 17.4328 16.0312 17.8535C15.6643 18.2776 15.31 18.6866 14.9756 19.0938C14.3024 19.9134 13.7496 20.6777 13.3887 21.4316L13.1162 22H10.8838L10.6123 21.4316C10.2514 20.6777 9.69853 19.9144 9.02539 19.0947C8.6909 18.6874 8.33683 18.2777 7.96973 17.8535C7.60559 17.4328 7.22899 16.9974 6.86426 16.5537C5.43022 14.8093 4.00007 12.7335 4 10.2002C4 5.6982 7.55535 2 12 2ZM12 6.5C10.067 6.5 8.5 8.067 8.5 10C8.5 11.933 10.067 13.5 12 13.5C13.933 13.5 15.5 11.933 15.5 10C15.5 8.067 13.933 6.5 12 6.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMapPin2;\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,SAAS,UACT,SAAS,UACT,EAAE,ylBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMapPin2","props","React","CentralIconBase","IconMapPin2_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -15190,6 +15190,20 @@
|
|
|
15190
15190
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
15191
15191
|
"componentName": "IconMapPin"
|
|
15192
15192
|
},
|
|
15193
|
+
{
|
|
15194
|
+
"category": "Location",
|
|
15195
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C16.4446 2 20 5.6982 20 10.2002C19.9999 12.7333 18.5706 14.8093 17.1367 16.5537C16.772 16.9974 16.3953 17.4328 16.0312 17.8535C15.6643 18.2776 15.31 18.6866 14.9756 19.0938C14.3024 19.9134 13.7496 20.6777 13.3887 21.4316L13.1162 22H10.8838L10.6123 21.4316C10.2514 20.6777 9.69853 19.9144 9.02539 19.0947C8.6909 18.6874 8.33683 18.2777 7.96973 17.8535C7.60559 17.4328 7.22899 16.9974 6.86426 16.5537C5.43022 14.8093 4.00007 12.7335 4 10.2002C4 5.6982 7.55535 2 12 2ZM12 6.5C10.067 6.5 8.5 8.067 8.5 10C8.5 11.933 10.067 13.5 12 13.5C13.933 13.5 15.5 11.933 15.5 10C15.5 8.067 13.933 6.5 12 6.5Z\" fill=\"currentColor\"/>",
|
|
15196
|
+
"iconName": "map-pin-2, location",
|
|
15197
|
+
"variant": {
|
|
15198
|
+
"join": "square",
|
|
15199
|
+
"filled": "on",
|
|
15200
|
+
"radius": "0",
|
|
15201
|
+
"stroke": "2"
|
|
15202
|
+
},
|
|
15203
|
+
"createdAt": "2026-03-17T23:01:01.401723+00:00",
|
|
15204
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
15205
|
+
"componentName": "IconMapPin2"
|
|
15206
|
+
},
|
|
15193
15207
|
{
|
|
15194
15208
|
"category": "Location",
|
|
15195
15209
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19 19H5.5C4.67 19 4 18.33 4 17.5C4 16.67 4.67 16 5.5 16H8V8H11V6H8V3H5.5C3.57 3 2 4.57 2 6.5V17.5C2 19.43 3.57 21 5.5 21H21V13H19V19Z\" fill=\"currentColor\"/><path d=\"M18.01 11.58C18.33 11.38 18.75 11.08 19.18 10.69C20.01 9.93 21 8.68 21 7.02C21 4.81 19.21 3.02 17 3.02C14.79 3.02 13 4.81 13 7.02C13 8.68 13.99 9.93 14.82 10.69C15.25 11.08 15.67 11.38 15.99 11.58C16.316 11.7838 16.6539 11.9439 17 12.11L17.035 12.0932C17.3671 11.9339 17.6975 11.7753 18.01 11.58Z\" 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/square-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.165",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-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": 1880,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 70,
|
|
@@ -1175,7 +1175,7 @@
|
|
|
1175
1175
|
]
|
|
1176
1176
|
},
|
|
1177
1177
|
"Location": {
|
|
1178
|
-
"count":
|
|
1178
|
+
"count": 18,
|
|
1179
1179
|
"icons": [
|
|
1180
1180
|
"IconDirection1",
|
|
1181
1181
|
"IconDirection2",
|
|
@@ -1186,6 +1186,7 @@
|
|
|
1186
1186
|
"IconLocation",
|
|
1187
1187
|
"IconMap",
|
|
1188
1188
|
"IconMapPin",
|
|
1189
|
+
"IconMapPin2",
|
|
1189
1190
|
"IconMapPinFlat",
|
|
1190
1191
|
"IconPinCircle",
|
|
1191
1192
|
"IconPinFlag",
|
|
@@ -3166,6 +3167,7 @@
|
|
|
3166
3167
|
"IconManusAi": "manus-ai",
|
|
3167
3168
|
"IconMap": "map, paper",
|
|
3168
3169
|
"IconMapPin": "map-pin, location",
|
|
3170
|
+
"IconMapPin2": "map-pin-2, location",
|
|
3169
3171
|
"IconMapPinFlat": "map-pin-flat, route",
|
|
3170
3172
|
"IconMarkdown": "markdown",
|
|
3171
3173
|
"IconMarker": "marker, highlight",
|
package/index.d.ts
CHANGED
|
@@ -1083,6 +1083,7 @@ export { IconMall, default as IconMallDefault } from "./IconMall";
|
|
|
1083
1083
|
export { IconManusAi, default as IconManusAiDefault } from "./IconManusAi";
|
|
1084
1084
|
export { IconMap, default as IconMapDefault } from "./IconMap";
|
|
1085
1085
|
export { IconMapPin, default as IconMapPinDefault } from "./IconMapPin";
|
|
1086
|
+
export { IconMapPin2, default as IconMapPin2Default } from "./IconMapPin2";
|
|
1086
1087
|
export { IconMapPinFlat, default as IconMapPinFlatDefault, } from "./IconMapPinFlat";
|
|
1087
1088
|
export { IconMarkdown, default as IconMarkdownDefault } from "./IconMarkdown";
|
|
1088
1089
|
export { IconMarker, default as IconMarkerDefault } from "./IconMarker";
|