@central-icons-react-native/round-outlined-radius-2-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.
- package/IconCompassPointerSquare/index.d.ts +4 -0
- package/IconCompassPointerSquare/index.js +3 -0
- package/IconCompassPointerSquare/index.js.map +11 -0
- package/IconCompassPointerSquare/index.mjs +3 -0
- package/IconCompassPointerSquare/index.mjs.map +11 -0
- package/README.md +1 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +1 -0
- package/index.js +3 -0
- package/index.mjs +1 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var k=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:l,getOwnPropertyDescriptor:S}=Object,f=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,y,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var i=o?h??=new WeakMap:y??=new WeakMap,u=i.get(r);if(u)return u}e=r!=null?k(v(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let s of l(r))if(!f.call(C,s))t(C,s,{get:d.bind(r,s),enumerable:!0});if(n)i.set(r,C);return C},I=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of l(r))if(!f.call(o,n))t(o,n,{get:d.bind(r,n),enumerable:!(e=S(r,n))||e.enumerable})}return c.set(r,o),o},c;var F=(r)=>r;function b(r,o){this[r]=F.bind(null,o)}var L=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var j={};L(j,{CentralIconBase:()=>a});module.exports=I(j);var P=B(require("react")),x=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(x.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 w={};L(w,{default:()=>H,IconCompassPointerSquare:()=>g});module.exports=I(w);var p=B(require("react"));var m=require("react-native-svg"),g=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M20.5 17.3V6.7C20.5 5.5799 20.5 5.01984 20.282 4.59202C20.0903 4.21569 19.7843 3.90973 19.408 3.71799C18.9802 3.5 18.4201 3.5 17.3 3.5H6.7C5.5799 3.5 5.01984 3.5 4.59202 3.71799C4.21569 3.90973 3.90973 4.21569 3.71799 4.59202C3.5 5.01984 3.5 5.5799 3.5 6.7V17.3C3.5 18.4201 3.5 18.9802 3.71799 19.408C3.90973 19.7843 4.21569 20.0903 4.59202 20.282C5.01984 20.5 5.5799 20.5 6.7 20.5H17.3C18.4201 20.5 18.9802 20.5 19.408 20.282C19.7843 20.0903 20.0903 19.7843 20.282 19.408C20.5 18.9802 20.5 18.4201 20.5 17.3Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(m.Path,{d:"M7.86591 15.3808L11.5531 8.03226C11.7376 7.66458 12.2624 7.66458 12.4469 8.03226L16.1341 15.3808C16.3434 15.798 15.9176 16.249 15.4891 16.0641L12.1981 14.6438C12.0717 14.5892 11.9283 14.5892 11.8019 14.6438L8.51094 16.0641C8.08238 16.249 7.65658 15.798 7.86591 15.3808Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},H=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=0D5D51080E5D8BF364756E2164756E21
|
|
@@ -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 17.3V6.7C20.5 5.5799 20.5 5.01984 20.282 4.59202C20.0903 4.21569 19.7843 3.90973 19.408 3.71799C18.9802 3.5 18.4201 3.5 17.3 3.5H6.7C5.5799 3.5 5.01984 3.5 4.59202 3.71799C4.21569 3.90973 3.90973 4.21569 3.71799 4.59202C3.5 5.01984 3.5 5.5799 3.5 6.7V17.3C3.5 18.4201 3.5 18.9802 3.71799 19.408C3.90973 19.7843 4.21569 20.0903 4.59202 20.282C5.01984 20.5 5.5799 20.5 6.7 20.5H17.3C18.4201 20.5 18.9802 20.5 19.408 20.282C19.7843 20.0903 20.0903 19.7843 20.282 19.408C20.5 18.9802 20.5 18.4201 20.5 17.3Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.86591 15.3808L11.5531 8.03226C11.7376 7.66458 12.2624 7.66458 12.4469 8.03226L16.1341 15.3808C16.3434 15.798 15.9176 16.249 15.4891 16.0641L12.1981 14.6438C12.0717 14.5892 11.9283 14.5892 11.8019 14.6438L8.51094 16.0641C8.08238 16.249 7.65658 15.798 7.86591 15.3808Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAs8B,EAAt8B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,ggBAAggB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gRAAgR,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGh8B",
|
|
9
|
+
"debugId": "0D5D51080E5D8BF364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...C})=>{return p.createElement(s,{...C,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 t}from"react-native-svg";var a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M20.5 17.3V6.7C20.5 5.5799 20.5 5.01984 20.282 4.59202C20.0903 4.21569 19.7843 3.90973 19.408 3.71799C18.9802 3.5 18.4201 3.5 17.3 3.5H6.7C5.5799 3.5 5.01984 3.5 4.59202 3.71799C4.21569 3.90973 3.90973 4.21569 3.71799 4.59202C3.5 5.01984 3.5 5.5799 3.5 6.7V17.3C3.5 18.4201 3.5 18.9802 3.71799 19.408C3.90973 19.7843 4.21569 20.0903 4.59202 20.282C5.01984 20.5 5.5799 20.5 6.7 20.5H17.3C18.4201 20.5 18.9802 20.5 19.408 20.282C19.7843 20.0903 20.0903 19.7843 20.282 19.408C20.5 18.9802 20.5 18.4201 20.5 17.3Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M7.86591 15.3808L11.5531 8.03226C11.7376 7.66458 12.2624 7.66458 12.4469 8.03226L16.1341 15.3808C16.3434 15.798 15.9176 16.249 15.4891 16.0641L12.1981 14.6438C12.0717 14.5892 11.9283 14.5892 11.8019 14.6438L8.51094 16.0641C8.08238 16.249 7.65658 15.798 7.86591 15.3808Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},P=a;export{P as default,a as IconCompassPointerSquare};
|
|
2
|
+
|
|
3
|
+
//# debugId=862C938542E821D564756E2164756E21
|
|
@@ -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 17.3V6.7C20.5 5.5799 20.5 5.01984 20.282 4.59202C20.0903 4.21569 19.7843 3.90973 19.408 3.71799C18.9802 3.5 18.4201 3.5 17.3 3.5H6.7C5.5799 3.5 5.01984 3.5 4.59202 3.71799C4.21569 3.90973 3.90973 4.21569 3.71799 4.59202C3.5 5.01984 3.5 5.5799 3.5 6.7V17.3C3.5 18.4201 3.5 18.9802 3.71799 19.408C3.90973 19.7843 4.21569 20.0903 4.59202 20.282C5.01984 20.5 5.5799 20.5 6.7 20.5H17.3C18.4201 20.5 18.9802 20.5 19.408 20.282C19.7843 20.0903 20.0903 19.7843 20.282 19.408C20.5 18.9802 20.5 18.4201 20.5 17.3Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.86591 15.3808L11.5531 8.03226C11.7376 7.66458 12.2624 7.66458 12.4469 8.03226L16.1341 15.3808C16.3434 15.798 15.9176 16.249 15.4891 16.0641L12.1981 14.6438C12.0717 14.5892 11.9283 14.5892 11.8019 14.6438L8.51094 16.0641C8.08238 16.249 7.65658 15.798 7.86591 15.3808Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAs8B,EAAt8B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,ggBAAggB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gRAAgR,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGh8B",
|
|
9
|
+
"debugId": "862C938542E821D564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|