@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.283 → 1.1.285

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 IconCompassPointerSquare: FC<CentralIconBaseProps>;
4
+ export default IconCompassPointerSquare;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:S,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,L=Object.prototype.hasOwnProperty;function i(r){return this[r]}var y,F,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var l=o?y??=new WeakMap:F??=new WeakMap,c=l.get(r);if(c)return c}e=r!=null?v(S(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let s of f(r))if(!L.call(p,s))n(p,s,{get:i.bind(r,s),enumerable:!0});if(t)l.set(r,p);return p},I=(r)=>{var o=(u??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of f(r))if(!L.call(o,t))n(o,t,{get:i.bind(r,t),enumerable:!(e=h(r,t))||e.enumerable})}return u.set(r,o),o},u;var b=(r)=>r;function k(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:k.bind(o,e)})};var w={};P(w,{CentralIconBase:()=>m});module.exports=I(w);var x=B(require("react")),g=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return x.default.createElement(g.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 M={};P(M,{default:()=>Z,IconCompassPointerSquare:()=>d});module.exports=I(M);var a=B(require("react"));var C=require("react-native-svg"),d=(r)=>{return a.default.createElement(m,{...r},a.default.createElement(C.Path,{d:"M20.5 3.5L3.5 3.5L3.5 20.5L20.5 20.5L20.5 3.5Z",stroke:"currentColor",strokeLinecap:"round"}),a.default.createElement(C.Path,{d:"M8.25 15.8583L12 8.1416L15.75 15.8583L12 14.5583L8.25 15.8583Z",stroke:"currentColor"}))},Z=d;
2
+
3
+ //# debugId=DC6318BFC7D9021164756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/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 IconCompassPointerSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 3.5L3.5 3.5L3.5 20.5L20.5 20.5L20.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M8.25 15.8583L12 8.1416L15.75 15.8583L12 14.5583L8.25 15.8583Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\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,oFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqD,CAAC,IAAU,CAC3E,OAAO,wBAAoO,EAApO,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iEAAiE,OAAO,eAAc,CAAI,GAG9N",
9
+ "debugId": "DC6318BFC7D9021164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import a from"react";import{Svg as s}from"react-native-svg";var t=({children:o,size:r=24,...p})=>{return a.createElement(s,{...p,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 n}from"react-native-svg";var m=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M20.5 3.5L3.5 3.5L3.5 20.5L20.5 20.5L20.5 3.5Z",stroke:"currentColor",strokeLinecap:"round"}),e.createElement(n,{d:"M8.25 15.8583L12 8.1416L15.75 15.8583L12 14.5583L8.25 15.8583Z",stroke:"currentColor"}))},x=m;export{x as default,m as IconCompassPointerSquare};
2
+
3
+ //# debugId=40720FAD95A6FE1F64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/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 IconCompassPointerSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 3.5L3.5 3.5L3.5 20.5L20.5 20.5L20.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M8.25 15.8583L12 8.1416L15.75 15.8583L12 14.5583L8.25 15.8583Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAoO,EAApO,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iEAAiE,OAAO,eAAc,CAAI,GAG9N",
9
+ "debugId": "40720FAD95A6FE1F64756E2164756E21",
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
 
@@ -1397,6 +1398,7 @@ Below is a complete list of available icons:
1397
1398
  - IconMapPin2
1398
1399
  - IconMapEditFlat
1399
1400
  - IconPinFocus
1401
+ - IconCompassPointerSquare
1400
1402
 
1401
1403
  ### Nature & Energy
1402
1404