@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.282 → 1.1.284

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCompassPointer: FC<CentralIconBaseProps>;
4
+ export default IconCompassPointer;
@@ -0,0 +1,3 @@
1
+ var y=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:L}=Object,B=Object.prototype.hasOwnProperty;function I(r){return this[r]}var S,b,P=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var C=o?S??=new WeakMap:b??=new WeakMap,l=C.get(r);if(l)return l}t=r!=null?y(F(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let a of f(r))if(!B.call(p,a))n(p,a,{get:I.bind(r,a),enumerable:!0});if(e)C.set(r,p);return p},i=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!B.call(o,e))n(o,e,{get:I.bind(r,e),enumerable:!(t=L(r,e))||t.enumerable})}return c.set(r,o),o},c;var d=(r)=>r;function w(r,o){this[r]=d.bind(null,o)}var u=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:w.bind(o,t)})};var $={};u($,{CentralIconBase:()=>s});module.exports=i($);var x=P(require("react")),g=require("react-native-svg"),s=({children:r,size:o=24,...t})=>{return x.default.createElement(g.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 k={};u(k,{default:()=>M,IconCompassPointer:()=>h});module.exports=i(k);var m=P(require("react"));var v=require("react-native-svg"),h=(r)=>{return m.default.createElement(s,{...r},m.default.createElement(v.Path,{d:"M4 20L12 3.25L20 20L12 17L4 20Z",stroke:"currentColor"}))},M=h;
2
+
3
+ //# debugId=9001F199EC0ACA5364756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointer/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCompassPointer: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 20L12 3.25L20 20L12 17L4 20Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointer;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,8ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA+C,CAAC,IAAU,CACrE,OAAO,wBAA+F,EAA/F,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kCAAkC,OAAO,eAAc,CAAI,GAGzF",
9
+ "debugId": "9001F199EC0ACA5364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return p.createElement(a,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as s}from"react-native-svg";var m=(o)=>{return e.createElement(t,{...o},e.createElement(s,{d:"M4 20L12 3.25L20 20L12 17L4 20Z",stroke:"currentColor"}))},g=m;export{g as default,m as IconCompassPointer};
2
+
3
+ //# debugId=9A6B7D27EF5A7B8A64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointer/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCompassPointer: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 20L12 3.25L20 20L12 17L4 20Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointer;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAA+F,EAA/F,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kCAAkC,OAAO,eAAc,CAAI,GAGzF",
9
+ "debugId": "9A6B7D27EF5A7B8A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPinFocus: FC<CentralIconBaseProps>;
4
+ export default IconPinFocus;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:y,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:F}=Object,f=Object.prototype.hasOwnProperty;function k(r){return this[r]}var M,h,x=(r,o,e)=>{var s=r!=null&&typeof r==="object";if(s){var c=o?M??=new WeakMap:h??=new WeakMap,u=c.get(r);if(u)return u}e=r!=null?v(y(r)):{};let C=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let l of m(r))if(!f.call(C,l))p(C,l,{get:k.bind(r,l),enumerable:!0});if(s)c.set(r,C);return C},B=(r)=>{var o=(i??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of m(r))if(!f.call(o,s))p(o,s,{get:k.bind(r,s),enumerable:!(e=F(r,s))||e.enumerable})}return i.set(r,o),o},i;var q=(r)=>r;function H(r,o){this[r]=q.bind(null,o)}var I=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var L={};I(L,{CentralIconBase:()=>a});module.exports=B(L);var P=x(require("react")),d=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(d.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 S={};I(S,{default:()=>V,IconPinFocus:()=>g});module.exports=B(S);var t=x(require("react"));var n=require("react-native-svg"),g=(r)=>{return t.default.createElement(a,{...r},t.default.createElement(n.Path,{d:"M3.5 8V3.5H8",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M16 3.5H20.5V8",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M3.5 16V20.5H8",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M20.5 16V20.5H16",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Circle,{cx:"12",cy:"11",r:"0.75",fill:"currentColor"}),t.default.createElement(n.Path,{d:"M15.75 10.9375C15.75 13.5443 12 16.5625 12 16.5625C12 16.5625 8.25 13.5443 8.25 10.9375C8.25 8.86643 9.92893 7.1875 12 7.1875C14.0711 7.1875 15.75 8.86643 15.75 10.9375Z",stroke:"currentColor"}))},V=g;
2
+
3
+ //# debugId=00D9432FBADA73EF64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconPinFocus/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 8V3.5H8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M16 3.5H20.5V8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.5 16V20.5H8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M20.5 16V20.5H16\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Circle cx=\"12\" cy=\"11\" r=\"0.75\" fill=\"currentColor\"/><Path d=\"M15.75 10.9375C15.75 13.5443 12 16.5625 12 16.5625C12 16.5625 8.25 13.5443 8.25 10.9375C8.25 8.86643 9.92893 7.1875 12 7.1875C14.0711 7.1875 15.75 8.86643 15.75 10.9375Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinFocus;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,wECvBoB,IAA1B,sBAE6B,IAA7B,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAA2jB,EAA3jB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4KAA4K,OAAO,eAAc,CAAI,GAGrjB",
9
+ "debugId": "00D9432FBADA73EF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:o=24,...s})=>{return p.createElement(C,{...s,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t)};import r from"react";import{Circle as l,Path as e}from"react-native-svg";var a=(t)=>{return r.createElement(n,{...t},r.createElement(e,{d:"M3.5 8V3.5H8",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(e,{d:"M16 3.5H20.5V8",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(e,{d:"M3.5 16V20.5H8",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(e,{d:"M20.5 16V20.5H16",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(l,{cx:"12",cy:"11",r:"0.75",fill:"currentColor"}),r.createElement(e,{d:"M15.75 10.9375C15.75 13.5443 12 16.5625 12 16.5625C12 16.5625 8.25 13.5443 8.25 10.9375C8.25 8.86643 9.92893 7.1875 12 7.1875C14.0711 7.1875 15.75 8.86643 15.75 10.9375Z",stroke:"currentColor"}))},d=a;export{d as default,a as IconPinFocus};
2
+
3
+ //# debugId=97C1C9893643BEB264756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconPinFocus/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 8V3.5H8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M16 3.5H20.5V8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.5 16V20.5H8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M20.5 16V20.5H16\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Circle cx=\"12\" cy=\"11\" r=\"0.75\" fill=\"currentColor\"/><Path d=\"M15.75 10.9375C15.75 13.5443 12 16.5625 12 16.5625C12 16.5625 8.25 13.5443 8.25 10.9375C8.25 8.86643 9.92893 7.1875 12 7.1875C14.0711 7.1875 15.75 8.86643 15.75 10.9375Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinFocus;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,iBAAS,UAAQ,yBAEV,IAAM,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAA2jB,EAA3jB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4KAA4K,OAAO,eAAc,CAAI,GAGrjB",
9
+ "debugId": "97C1C9893643BEB264756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -394,6 +394,7 @@ Below is a complete list of available icons:
394
394
  - IconChevronTriangleLeftMedium
395
395
  - IconChevronTriangleDownMedium
396
396
  - IconChevronTriangleUpMedium
397
+ - IconCompassPointer
397
398
 
398
399
  ### Augmented Reality
399
400
 
@@ -1396,6 +1397,7 @@ Below is a complete list of available icons:
1396
1397
  - IconStandingGlobe
1397
1398
  - IconMapPin2
1398
1399
  - IconMapEditFlat
1400
+ - IconPinFocus
1399
1401
 
1400
1402
  ### Nature & Energy
1401
1403