@central-icons-react-native/round-outlined-radius-0-stroke-2 1.1.283 → 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 v=Object.create;var{getPrototypeOf:L,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function u(o){return this[o]}var F,S,B=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var C=r?F??=new WeakMap:S??=new WeakMap,l=C.get(o);if(l)return l}t=o!=null?v(L(o)):{};let p=r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t;for(let s of i(o))if(!f.call(p,s))n(p,s,{get:u.bind(o,s),enumerable:!0});if(e)C.set(o,p);return p},I=(o)=>{var r=(c??=new WeakMap).get(o),t;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of i(o))if(!f.call(r,e))n(r,e,{get:u.bind(o,e),enumerable:!(t=y(o,e))||t.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function k(o,r){this[o]=b.bind(null,r)}var P=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0,configurable:!0,set:k.bind(r,t)})};var w={};P(w,{CentralIconBase:()=>a});module.exports=I(w);var x=B(require("react")),g=require("react-native-svg"),a=({children:o,size:r=24,...t})=>{return x.default.createElement(g.Svg,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var $={};P($,{default:()=>j,IconCompassPointer:()=>h});module.exports=I($);var m=B(require("react"));var d=require("react-native-svg"),h=(o)=>{return m.default.createElement(a,{...o},m.default.createElement(d.Path,{d:"M4 20L12 3L20 20L12 17L4 20Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))},j=h;
2
+
3
+ //# debugId=C8B69237D7D2904464756E2164756E21
@@ -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 3L20 20L12 17L4 20Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></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,wBAAmI,EAAnI,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+BAA+B,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAG7H",
9
+ "debugId": "C8B69237D7D2904464756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as s}from"react-native-svg";var t=({children:r,size:o=24,...n})=>{return p.createElement(s,{...n,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 a}from"react-native-svg";var m=(r)=>{return e.createElement(t,{...r},e.createElement(a,{d:"M4 20L12 3L20 20L12 17L4 20Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))},g=m;export{g as default,m as IconCompassPointer};
2
+
3
+ //# debugId=4968CBB6D1D9D8B364756E2164756E21
@@ -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 3L20 20L12 17L4 20Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/></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,gBAAmI,EAAnI,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+BAA+B,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAG7H",
9
+ "debugId": "4968CBB6D1D9D8B364756E2164756E21",
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