@central-icons-react-native/round-filled-radius-1-stroke-1 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:"M18.9189 3C19.1825 2.99999 19.4104 3.00032 19.5977 3.01563C19.7951 3.03177 19.9917 3.06688 20.1807 3.16309C20.4629 3.3069 20.6931 3.53709 20.8369 3.81934C20.9331 4.00834 20.9682 4.20487 20.9844 4.40234C20.9997 4.58963 21 4.81748 21 5.08105V18.9189C21 19.1825 20.9997 19.4104 20.9844 19.5977C20.9682 19.7951 20.9331 19.9917 20.8369 20.1807C20.6931 20.4629 20.4629 20.6931 20.1807 20.8369C19.9917 20.9331 19.7951 20.9682 19.5977 20.9844C19.4104 20.9997 19.1825 21 18.9189 21H5.08105C4.81748 21 4.58963 20.9997 4.40234 20.9844C4.20487 20.9682 4.00834 20.9331 3.81934 20.8369C3.53709 20.6931 3.3069 20.4629 3.16309 20.1807C3.06688 19.9917 3.03177 19.7951 3.01563 19.5977C3.00032 19.4104 2.99999 19.1825 3 18.9189V5.08105C2.99999 4.81748 3.00032 4.58963 3.01563 4.40234C3.03177 4.20487 3.06688 4.00834 3.16309 3.81934C3.3069 3.53709 3.53709 3.3069 3.81934 3.16309C4.00834 3.06688 4.20487 3.03177 4.40234 3.01563C4.58963 3.00032 4.81748 2.99999 5.08105 3H18.9189ZM12.6699 7.6123C12.4103 7.09579 11.7032 7.06361 11.3877 7.51562L11.3301 7.6123L7.34863 15.5449C7.03906 16.1618 7.65703 16.8345 8.29785 16.5781L12 15.0967L15.7021 16.5781C16.343 16.8345 16.9609 16.1618 16.6514 15.5449L12.6699 7.6123Z",fill:"currentColor"}))},V=g;
2
+
3
+ //# debugId=C5EABB29379F4C9F64756E2164756E21
@@ -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=\"M18.9189 3C19.1825 2.99999 19.4104 3.00032 19.5977 3.01563C19.7951 3.03177 19.9917 3.06688 20.1807 3.16309C20.4629 3.3069 20.6931 3.53709 20.8369 3.81934C20.9331 4.00834 20.9682 4.20487 20.9844 4.40234C20.9997 4.58963 21 4.81748 21 5.08105V18.9189C21 19.1825 20.9997 19.4104 20.9844 19.5977C20.9682 19.7951 20.9331 19.9917 20.8369 20.1807C20.6931 20.4629 20.4629 20.6931 20.1807 20.8369C19.9917 20.9331 19.7951 20.9682 19.5977 20.9844C19.4104 20.9997 19.1825 21 18.9189 21H5.08105C4.81748 21 4.58963 20.9997 4.40234 20.9844C4.20487 20.9682 4.00834 20.9331 3.81934 20.8369C3.53709 20.6931 3.3069 20.4629 3.16309 20.1807C3.06688 19.9917 3.03177 19.7951 3.01563 19.5977C3.00032 19.4104 2.99999 19.1825 3 18.9189V5.08105C2.99999 4.81748 3.00032 4.58963 3.01563 4.40234C3.03177 4.20487 3.06688 4.00834 3.16309 3.81934C3.3069 3.53709 3.53709 3.3069 3.81934 3.16309C4.00834 3.06688 4.20487 3.03177 4.40234 3.01563C4.58963 3.00032 4.81748 2.99999 5.08105 3H18.9189ZM12.6699 7.6123C12.4103 7.09579 11.7032 7.06361 11.3877 7.51562L11.3301 7.6123L7.34863 15.5449C7.03906 16.1618 7.65703 16.8345 8.29785 16.5781L12 15.0967L15.7021 16.5781C16.343 16.8345 16.9609 16.1618 16.6514 15.5449L12.6699 7.6123Z\" 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,wBAAywC,EAAzwC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wqCAAwqC,KAAK,eAAc,CAAI,GAGnwC",
9
+ "debugId": "C5EABB29379F4C9F64756E2164756E21",
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:"M18.9189 3C19.1825 2.99999 19.4104 3.00032 19.5977 3.01563C19.7951 3.03177 19.9917 3.06688 20.1807 3.16309C20.4629 3.3069 20.6931 3.53709 20.8369 3.81934C20.9331 4.00834 20.9682 4.20487 20.9844 4.40234C20.9997 4.58963 21 4.81748 21 5.08105V18.9189C21 19.1825 20.9997 19.4104 20.9844 19.5977C20.9682 19.7951 20.9331 19.9917 20.8369 20.1807C20.6931 20.4629 20.4629 20.6931 20.1807 20.8369C19.9917 20.9331 19.7951 20.9682 19.5977 20.9844C19.4104 20.9997 19.1825 21 18.9189 21H5.08105C4.81748 21 4.58963 20.9997 4.40234 20.9844C4.20487 20.9682 4.00834 20.9331 3.81934 20.8369C3.53709 20.6931 3.3069 20.4629 3.16309 20.1807C3.06688 19.9917 3.03177 19.7951 3.01563 19.5977C3.00032 19.4104 2.99999 19.1825 3 18.9189V5.08105C2.99999 4.81748 3.00032 4.58963 3.01563 4.40234C3.03177 4.20487 3.06688 4.00834 3.16309 3.81934C3.3069 3.53709 3.53709 3.3069 3.81934 3.16309C4.00834 3.06688 4.20487 3.03177 4.40234 3.01563C4.58963 3.00032 4.81748 2.99999 5.08105 3H18.9189ZM12.6699 7.6123C12.4103 7.09579 11.7032 7.06361 11.3877 7.51562L11.3301 7.6123L7.34863 15.5449C7.03906 16.1618 7.65703 16.8345 8.29785 16.5781L12 15.0967L15.7021 16.5781C16.343 16.8345 16.9609 16.1618 16.6514 15.5449L12.6699 7.6123Z",fill:"currentColor"}))},v=a;export{v as default,a as IconCompassPointerSquare};
2
+
3
+ //# debugId=34A9AB43D80FF54B64756E2164756E21
@@ -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=\"M18.9189 3C19.1825 2.99999 19.4104 3.00032 19.5977 3.01563C19.7951 3.03177 19.9917 3.06688 20.1807 3.16309C20.4629 3.3069 20.6931 3.53709 20.8369 3.81934C20.9331 4.00834 20.9682 4.20487 20.9844 4.40234C20.9997 4.58963 21 4.81748 21 5.08105V18.9189C21 19.1825 20.9997 19.4104 20.9844 19.5977C20.9682 19.7951 20.9331 19.9917 20.8369 20.1807C20.6931 20.4629 20.4629 20.6931 20.1807 20.8369C19.9917 20.9331 19.7951 20.9682 19.5977 20.9844C19.4104 20.9997 19.1825 21 18.9189 21H5.08105C4.81748 21 4.58963 20.9997 4.40234 20.9844C4.20487 20.9682 4.00834 20.9331 3.81934 20.8369C3.53709 20.6931 3.3069 20.4629 3.16309 20.1807C3.06688 19.9917 3.03177 19.7951 3.01563 19.5977C3.00032 19.4104 2.99999 19.1825 3 18.9189V5.08105C2.99999 4.81748 3.00032 4.58963 3.01563 4.40234C3.03177 4.20487 3.06688 4.00834 3.16309 3.81934C3.3069 3.53709 3.53709 3.3069 3.81934 3.16309C4.00834 3.06688 4.20487 3.03177 4.40234 3.01563C4.58963 3.00032 4.81748 2.99999 5.08105 3H18.9189ZM12.6699 7.6123C12.4103 7.09579 11.7032 7.06361 11.3877 7.51562L11.3301 7.6123L7.34863 15.5449C7.03906 16.1618 7.65703 16.8345 8.29785 16.5781L12 15.0967L15.7021 16.5781C16.343 16.8345 16.9609 16.1618 16.6514 15.5449L12.6699 7.6123Z\" 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,gBAAywC,EAAzwC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wqCAAwqC,KAAK,eAAc,CAAI,GAGnwC",
9
+ "debugId": "34A9AB43D80FF54B64756E2164756E21",
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