@central-icons-react-native/round-filled-radius-2-stroke-2 1.1.284 → 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 IconCompassPointerSquare: FC<CentralIconBaseProps>;
4
+ export default IconCompassPointerSquare;
@@ -0,0 +1,3 @@
1
+ var L=Object.create;var{getPrototypeOf:S,defineProperty:t,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var y,F,B=(o,r,C)=>{var e=o!=null&&typeof o==="object";if(e){var m=r?y??=new WeakMap:F??=new WeakMap,s=m.get(o);if(s)return s}C=o!=null?L(S(o)):{};let n=r||!o||!o.__esModule?t(C,"default",{value:o,enumerable:!0}):C;for(let p of f(o))if(!i.call(n,p))t(n,p,{get:u.bind(o,p),enumerable:!0});if(e)m.set(o,n);return n},I=(o)=>{var r=(c??=new WeakMap).get(o),C;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of f(o))if(!i.call(r,e))t(r,e,{get:u.bind(o,e),enumerable:!(C=h(o,e))||C.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function w(o,r){this[o]=b.bind(null,r)}var P=(o,r)=>{for(var C in r)t(o,C,{get:r[C],enumerable:!0,configurable:!0,set:w.bind(r,C)})};var H={};P(H,{CentralIconBase:()=>l});module.exports=I(H);var d=B(require("react")),v=require("react-native-svg"),l=({children:o,size:r=24,...C})=>{return d.default.createElement(v.Svg,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var M={};P(M,{default:()=>V,IconCompassPointerSquare:()=>g});module.exports=I(M);var a=B(require("react"));var x=require("react-native-svg"),g=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.8389 3C17.3659 2.99998 17.8208 2.99968 18.1953 3.03028C18.5906 3.06259 18.984 3.1344 19.3623 3.32715C19.9265 3.61472 20.3853 4.07347 20.6729 4.6377C20.8656 5.01599 20.9374 5.40943 20.9697 5.80469C21.0003 6.17918 21 6.63412 21 7.16113V16.8389C21 17.3659 21.0003 17.8208 20.9697 18.1953C20.9374 18.5906 20.8656 18.984 20.6729 19.3623C20.3853 19.9265 19.9265 20.3853 19.3623 20.6729C18.984 20.8656 18.5906 20.9374 18.1953 20.9697C17.8208 21.0003 17.3659 21 16.8389 21H7.16113C6.63412 21 6.17918 21.0003 5.80469 20.9697C5.40943 20.9374 5.01599 20.8656 4.6377 20.6729C4.07348 20.3853 3.61472 19.9265 3.32715 19.3623C3.1344 18.984 3.06259 18.5906 3.03028 18.1953C2.99968 17.8208 2.99998 17.3659 3 16.8389V7.16113C2.99998 6.63412 2.99968 6.17918 3.03028 5.80469C3.06259 5.40943 3.1344 5.01599 3.32715 4.6377C3.61472 4.07347 4.07347 3.61472 4.6377 3.32715C5.01599 3.1344 5.40943 3.06259 5.80469 3.03028C6.17918 2.99968 6.63413 2.99998 7.16113 3H16.8389ZM13.2764 8.43945C12.6958 7.49095 11.3042 7.49095 10.7236 8.43945L10.668 8.53809L7.7207 14.2236C7.08468 15.4506 8.30605 16.8119 9.59473 16.3125L12 15.3799L14.4053 16.3125C15.694 16.8119 16.9153 15.4506 16.2793 14.2236L13.332 8.53809L13.2764 8.43945Z",fill:"currentColor"}))},V=g;
2
+
3
+ //# debugId=E97D5E24AA79DECF64756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.8389 3C17.3659 2.99998 17.8208 2.99968 18.1953 3.03028C18.5906 3.06259 18.984 3.1344 19.3623 3.32715C19.9265 3.61472 20.3853 4.07347 20.6729 4.6377C20.8656 5.01599 20.9374 5.40943 20.9697 5.80469C21.0003 6.17918 21 6.63412 21 7.16113V16.8389C21 17.3659 21.0003 17.8208 20.9697 18.1953C20.9374 18.5906 20.8656 18.984 20.6729 19.3623C20.3853 19.9265 19.9265 20.3853 19.3623 20.6729C18.984 20.8656 18.5906 20.9374 18.1953 20.9697C17.8208 21.0003 17.3659 21 16.8389 21H7.16113C6.63412 21 6.17918 21.0003 5.80469 20.9697C5.40943 20.9374 5.01599 20.8656 4.6377 20.6729C4.07348 20.3853 3.61472 19.9265 3.32715 19.3623C3.1344 18.984 3.06259 18.5906 3.03028 18.1953C2.99968 17.8208 2.99998 17.3659 3 16.8389V7.16113C2.99998 6.63412 2.99968 6.17918 3.03028 5.80469C3.06259 5.40943 3.1344 5.01599 3.32715 4.6377C3.61472 4.07347 4.07347 3.61472 4.6377 3.32715C5.01599 3.1344 5.40943 3.06259 5.80469 3.03028C6.17918 2.99968 6.63413 2.99998 7.16113 3H16.8389ZM13.2764 8.43945C12.6958 7.49095 11.3042 7.49095 10.7236 8.43945L10.668 8.53809L7.7207 14.2236C7.08468 15.4506 8.30605 16.8119 9.59473 16.3125L12 15.3799L14.4053 16.3125C15.694 16.8119 16.9153 15.4506 16.2793 14.2236L13.332 8.53809L13.2764 8.43945Z\" fill=\"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,wBAAixC,EAAjxC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,grCAAgrC,KAAK,eAAc,CAAI,GAG3wC",
9
+ "debugId": "E97D5E24AA79DECF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import n from"react";import{Svg as p}from"react-native-svg";var C=({children:r,size:o=24,...t})=>{return n.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 e from"react";import{Path as l}from"react-native-svg";var a=(r)=>{return e.createElement(C,{...r},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.8389 3C17.3659 2.99998 17.8208 2.99968 18.1953 3.03028C18.5906 3.06259 18.984 3.1344 19.3623 3.32715C19.9265 3.61472 20.3853 4.07347 20.6729 4.6377C20.8656 5.01599 20.9374 5.40943 20.9697 5.80469C21.0003 6.17918 21 6.63412 21 7.16113V16.8389C21 17.3659 21.0003 17.8208 20.9697 18.1953C20.9374 18.5906 20.8656 18.984 20.6729 19.3623C20.3853 19.9265 19.9265 20.3853 19.3623 20.6729C18.984 20.8656 18.5906 20.9374 18.1953 20.9697C17.8208 21.0003 17.3659 21 16.8389 21H7.16113C6.63412 21 6.17918 21.0003 5.80469 20.9697C5.40943 20.9374 5.01599 20.8656 4.6377 20.6729C4.07348 20.3853 3.61472 19.9265 3.32715 19.3623C3.1344 18.984 3.06259 18.5906 3.03028 18.1953C2.99968 17.8208 2.99998 17.3659 3 16.8389V7.16113C2.99998 6.63412 2.99968 6.17918 3.03028 5.80469C3.06259 5.40943 3.1344 5.01599 3.32715 4.6377C3.61472 4.07347 4.07347 3.61472 4.6377 3.32715C5.01599 3.1344 5.40943 3.06259 5.80469 3.03028C6.17918 2.99968 6.63413 2.99998 7.16113 3H16.8389ZM13.2764 8.43945C12.6958 7.49095 11.3042 7.49095 10.7236 8.43945L10.668 8.53809L7.7207 14.2236C7.08468 15.4506 8.30605 16.8119 9.59473 16.3125L12 15.3799L14.4053 16.3125C15.694 16.8119 16.9153 15.4506 16.2793 14.2236L13.332 8.53809L13.2764 8.43945Z",fill:"currentColor"}))},v=a;export{v as default,a as IconCompassPointerSquare};
2
+
3
+ //# debugId=32101DD0C23B222A64756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.8389 3C17.3659 2.99998 17.8208 2.99968 18.1953 3.03028C18.5906 3.06259 18.984 3.1344 19.3623 3.32715C19.9265 3.61472 20.3853 4.07347 20.6729 4.6377C20.8656 5.01599 20.9374 5.40943 20.9697 5.80469C21.0003 6.17918 21 6.63412 21 7.16113V16.8389C21 17.3659 21.0003 17.8208 20.9697 18.1953C20.9374 18.5906 20.8656 18.984 20.6729 19.3623C20.3853 19.9265 19.9265 20.3853 19.3623 20.6729C18.984 20.8656 18.5906 20.9374 18.1953 20.9697C17.8208 21.0003 17.3659 21 16.8389 21H7.16113C6.63412 21 6.17918 21.0003 5.80469 20.9697C5.40943 20.9374 5.01599 20.8656 4.6377 20.6729C4.07348 20.3853 3.61472 19.9265 3.32715 19.3623C3.1344 18.984 3.06259 18.5906 3.03028 18.1953C2.99968 17.8208 2.99998 17.3659 3 16.8389V7.16113C2.99998 6.63412 2.99968 6.17918 3.03028 5.80469C3.06259 5.40943 3.1344 5.01599 3.32715 4.6377C3.61472 4.07347 4.07347 3.61472 4.6377 3.32715C5.01599 3.1344 5.40943 3.06259 5.80469 3.03028C6.17918 2.99968 6.63413 2.99998 7.16113 3H16.8389ZM13.2764 8.43945C12.6958 7.49095 11.3042 7.49095 10.7236 8.43945L10.668 8.53809L7.7207 14.2236C7.08468 15.4506 8.30605 16.8119 9.59473 16.3125L12 15.3799L14.4053 16.3125C15.694 16.8119 16.9153 15.4506 16.2793 14.2236L13.332 8.53809L13.2764 8.43945Z\" fill=\"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,gBAAixC,EAAjxC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,grCAAgrC,KAAK,eAAc,CAAI,GAG3wC",
9
+ "debugId": "32101DD0C23B222A64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1398,6 +1398,7 @@ Below is a complete list of available icons:
1398
1398
  - IconMapPin2
1399
1399
  - IconMapEditFlat
1400
1400
  - IconPinFocus
1401
+ - IconCompassPointerSquare
1401
1402
 
1402
1403
  ### Nature & Energy
1403
1404