@central-icons-react-native/round-filled-radius-2-stroke-2 1.1.282 → 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.
- package/IconCompassPointer/index.d.ts +4 -0
- package/IconCompassPointer/index.js +3 -0
- package/IconCompassPointer/index.js.map +11 -0
- package/IconCompassPointer/index.mjs +3 -0
- package/IconCompassPointer/index.mjs.map +11 -0
- package/IconPinFocus/index.d.ts +4 -0
- package/IconPinFocus/index.js +3 -0
- package/IconPinFocus/index.js.map +11 -0
- package/IconPinFocus/index.mjs +3 -0
- package/IconPinFocus/index.mjs.map +11 -0
- package/README.md +2 -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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:L}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var S,b,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?S??=new WeakMap:b??=new WeakMap,l=s.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 C of f(r))if(!i.call(p,C))n(p,C,{get:B.bind(r,C),enumerable:!0});if(e)s.set(r,p);return p},P=(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(!i.call(o,e))n(o,e,{get:B.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:()=>a});module.exports=P($);var x=I(require("react")),g=require("react-native-svg"),a=({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 M={};u(M,{default:()=>Z,IconCompassPointer:()=>h});module.exports=P(M);var m=I(require("react"));var v=require("react-native-svg"),h=(r)=>{return m.default.createElement(a,{...r},m.default.createElement(v.Path,{d:"M9.7431 3.4141C10.6481 1.51432 13.3518 1.5143 14.2568 3.4141L21.0283 17.6338C22.0508 19.7811 19.7804 22.008 17.6533 20.9444L12.2236 18.2295C12.0829 18.1593 11.917 18.1593 11.7763 18.2295L6.34662 20.9444C4.21943 22.008 1.94912 19.7811 2.97162 17.6338L9.7431 3.4141Z",fill:"currentColor"}))},Z=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=C8688614F675180C64756E2164756E21
|
|
@@ -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=\"M9.7431 3.4141C10.6481 1.51432 13.3518 1.5143 14.2568 3.4141L21.0283 17.6338C22.0508 19.7811 19.7804 22.008 17.6533 20.9444L12.2236 18.2295C12.0829 18.1593 11.917 18.1593 11.7763 18.2295L6.34662 20.9444C4.21943 22.008 1.94912 19.7811 2.97162 17.6338L9.7431 3.4141Z\" fill=\"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,wBAAsU,EAAtU,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2QAA2Q,KAAK,eAAc,CAAI,GAGhU",
|
|
9
|
+
"debugId": "C8688614F675180C64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return p.createElement(C,{...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 a}from"react-native-svg";var m=(o)=>{return e.createElement(t,{...o},e.createElement(a,{d:"M9.7431 3.4141C10.6481 1.51432 13.3518 1.5143 14.2568 3.4141L21.0283 17.6338C22.0508 19.7811 19.7804 22.008 17.6533 20.9444L12.2236 18.2295C12.0829 18.1593 11.917 18.1593 11.7763 18.2295L6.34662 20.9444C4.21943 22.008 1.94912 19.7811 2.97162 17.6338L9.7431 3.4141Z",fill:"currentColor"}))},g=m;export{g as default,m as IconCompassPointer};
|
|
2
|
+
|
|
3
|
+
//# debugId=7144EAD0C0B3387764756E2164756E21
|
|
@@ -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=\"M9.7431 3.4141C10.6481 1.51432 13.3518 1.5143 14.2568 3.4141L21.0283 17.6338C22.0508 19.7811 19.7804 22.008 17.6533 20.9444L12.2236 18.2295C12.0829 18.1593 11.917 18.1593 11.7763 18.2295L6.34662 20.9444C4.21943 22.008 1.94912 19.7811 2.97162 17.6338L9.7431 3.4141Z\" fill=\"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,gBAAsU,EAAtU,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2QAA2Q,KAAK,eAAc,CAAI,GAGhU",
|
|
9
|
+
"debugId": "7144EAD0C0B3387764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:g,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:M}=Object,a=Object.prototype.hasOwnProperty;function d(C){return this[C]}var Z,F,B=(C,r,o)=>{var e=C!=null&&typeof C==="object";if(e){var u=r?Z??=new WeakMap:F??=new WeakMap,m=u.get(C);if(m)return m}o=C!=null?x(g(C)):{};let p=r||!C||!C.__esModule?t(o,"default",{value:C,enumerable:!0}):o;for(let f of c(C))if(!a.call(p,f))t(p,f,{get:d.bind(C,f),enumerable:!0});if(e)u.set(C,p);return p},H=(C)=>{var r=(s??=new WeakMap).get(C),o;if(r)return r;if(r=t({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var e of c(C))if(!a.call(r,e))t(r,e,{get:d.bind(C,e),enumerable:!(o=M(C,e))||o.enumerable})}return s.set(C,r),r},s;var L=(C)=>C;function h(C,r){this[C]=L.bind(null,r)}var I=(C,r)=>{for(var o in r)t(C,o,{get:r[o],enumerable:!0,configurable:!0,set:h.bind(r,o)})};var y={};I(y,{CentralIconBase:()=>i});module.exports=H(y);var P=B(require("react")),V=require("react-native-svg"),i=({children:C,size:r=24,...o})=>{return P.default.createElement(V.Svg,{...o,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};var S={};I(S,{default:()=>b,IconPinFocus:()=>v});module.exports=H(S);var n=B(require("react"));var l=require("react-native-svg"),v=(C)=>{return n.default.createElement(i,{...C},n.default.createElement(l.Path,{d:"M4 15C4.55228 15 5 15.4477 5 16V18C5 18.5523 5.44772 19 6 19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H6C4.34315 21 3 19.6569 3 18V16C3 15.4477 3.44772 15 4 15Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20 15C20.5523 15 21 15.4477 21 16V18C21 19.6569 19.6569 21 18 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H18C18.5523 19 19 18.5523 19 18V16C19 15.4477 19.4477 15 20 15Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 6.75C14.3472 6.75 16.25 8.65279 16.25 11C16.25 11.7806 15.9719 12.5397 15.6123 13.2041C15.2494 13.8745 14.7751 14.5007 14.3164 15.0293C13.8557 15.5602 13.397 16.0081 13.0547 16.3232C12.8831 16.4813 12.7396 16.6073 12.6377 16.6943C12.5867 16.7379 12.546 16.7723 12.5176 16.7959C12.5035 16.8076 12.4923 16.8168 12.4844 16.8232C12.4804 16.8265 12.4769 16.8292 12.4746 16.8311L12.4717 16.833L12.4707 16.834C12.2305 17.0273 11.9003 17.0521 11.6377 16.9072L11.5293 16.834L11.5283 16.833L11.5254 16.8311C11.5231 16.8292 11.5196 16.8265 11.5156 16.8232C11.5077 16.8168 11.4965 16.8076 11.4824 16.7959C11.454 16.7723 11.4133 16.7379 11.3623 16.6943C11.2604 16.6073 11.1169 16.4813 10.9453 16.3232C10.603 16.0081 10.1443 15.5602 9.68359 15.0293C9.22492 14.5007 8.75063 13.8745 8.3877 13.2041C8.02808 12.5397 7.75 11.7806 7.75 11C7.75 8.65279 9.65279 6.75 12 6.75ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H6C5.44772 5 5 5.44772 5 6V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V6C3 4.34315 4.34315 3 6 3H8Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M18 3C19.6569 3 21 4.34315 21 6V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V6C19 5.44772 18.5523 5 18 5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H18Z",fill:"currentColor"}))},b=v;
|
|
2
|
+
|
|
3
|
+
//# debugId=23E2AB05990BEABD64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPinFocus/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 IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 15C4.55228 15 5 15.4477 5 16V18C5 18.5523 5.44772 19 6 19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H6C4.34315 21 3 19.6569 3 18V16C3 15.4477 3.44772 15 4 15Z\" fill=\"currentColor\"/><Path d=\"M20 15C20.5523 15 21 15.4477 21 16V18C21 19.6569 19.6569 21 18 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H18C18.5523 19 19 18.5523 19 18V16C19 15.4477 19.4477 15 20 15Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 6.75C14.3472 6.75 16.25 8.65279 16.25 11C16.25 11.7806 15.9719 12.5397 15.6123 13.2041C15.2494 13.8745 14.7751 14.5007 14.3164 15.0293C13.8557 15.5602 13.397 16.0081 13.0547 16.3232C12.8831 16.4813 12.7396 16.6073 12.6377 16.6943C12.5867 16.7379 12.546 16.7723 12.5176 16.7959C12.5035 16.8076 12.4923 16.8168 12.4844 16.8232C12.4804 16.8265 12.4769 16.8292 12.4746 16.8311L12.4717 16.833L12.4707 16.834C12.2305 17.0273 11.9003 17.0521 11.6377 16.9072L11.5293 16.834L11.5283 16.833L11.5254 16.8311C11.5231 16.8292 11.5196 16.8265 11.5156 16.8232C11.5077 16.8168 11.4965 16.8076 11.4824 16.7959C11.454 16.7723 11.4133 16.7379 11.3623 16.6943C11.2604 16.6073 11.1169 16.4813 10.9453 16.3232C10.603 16.0081 10.1443 15.5602 9.68359 15.0293C9.22492 14.5007 8.75063 13.8745 8.3877 13.2041C8.02808 12.5397 7.75 11.7806 7.75 11C7.75 8.65279 9.65279 6.75 12 6.75ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10Z\" fill=\"currentColor\"/><Path d=\"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H6C5.44772 5 5 5.44772 5 6V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V6C3 4.34315 4.34315 3 6 3H8Z\" fill=\"currentColor\"/><Path d=\"M18 3C19.6569 3 21 4.34315 21 6V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V6C19 5.44772 18.5523 5 18 5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H18Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinFocus;\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,wECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAAo2D,EAAp2D,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m9BAAm9B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,CAAI,GAG91D",
|
|
9
|
+
"debugId": "23E2AB05990BEABD64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import t from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:C=24,...l})=>{return t.createElement(p,{...l,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{Path as o}from"react-native-svg";var f=(e)=>{return r.createElement(n,{...e},r.createElement(o,{d:"M4 15C4.55228 15 5 15.4477 5 16V18C5 18.5523 5.44772 19 6 19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H6C4.34315 21 3 19.6569 3 18V16C3 15.4477 3.44772 15 4 15Z",fill:"currentColor"}),r.createElement(o,{d:"M20 15C20.5523 15 21 15.4477 21 16V18C21 19.6569 19.6569 21 18 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H18C18.5523 19 19 18.5523 19 18V16C19 15.4477 19.4477 15 20 15Z",fill:"currentColor"}),r.createElement(o,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 6.75C14.3472 6.75 16.25 8.65279 16.25 11C16.25 11.7806 15.9719 12.5397 15.6123 13.2041C15.2494 13.8745 14.7751 14.5007 14.3164 15.0293C13.8557 15.5602 13.397 16.0081 13.0547 16.3232C12.8831 16.4813 12.7396 16.6073 12.6377 16.6943C12.5867 16.7379 12.546 16.7723 12.5176 16.7959C12.5035 16.8076 12.4923 16.8168 12.4844 16.8232C12.4804 16.8265 12.4769 16.8292 12.4746 16.8311L12.4717 16.833L12.4707 16.834C12.2305 17.0273 11.9003 17.0521 11.6377 16.9072L11.5293 16.834L11.5283 16.833L11.5254 16.8311C11.5231 16.8292 11.5196 16.8265 11.5156 16.8232C11.5077 16.8168 11.4965 16.8076 11.4824 16.7959C11.454 16.7723 11.4133 16.7379 11.3623 16.6943C11.2604 16.6073 11.1169 16.4813 10.9453 16.3232C10.603 16.0081 10.1443 15.5602 9.68359 15.0293C9.22492 14.5007 8.75063 13.8745 8.3877 13.2041C8.02808 12.5397 7.75 11.7806 7.75 11C7.75 8.65279 9.65279 6.75 12 6.75ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10Z",fill:"currentColor"}),r.createElement(o,{d:"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H6C5.44772 5 5 5.44772 5 6V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V6C3 4.34315 4.34315 3 6 3H8Z",fill:"currentColor"}),r.createElement(o,{d:"M18 3C19.6569 3 21 4.34315 21 6V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V6C19 5.44772 18.5523 5 18 5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H18Z",fill:"currentColor"}))},P=f;export{P as default,f as IconPinFocus};
|
|
2
|
+
|
|
3
|
+
//# debugId=8C0A486360B38E0364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPinFocus/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 IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 15C4.55228 15 5 15.4477 5 16V18C5 18.5523 5.44772 19 6 19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H6C4.34315 21 3 19.6569 3 18V16C3 15.4477 3.44772 15 4 15Z\" fill=\"currentColor\"/><Path d=\"M20 15C20.5523 15 21 15.4477 21 16V18C21 19.6569 19.6569 21 18 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H18C18.5523 19 19 18.5523 19 18V16C19 15.4477 19.4477 15 20 15Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 6.75C14.3472 6.75 16.25 8.65279 16.25 11C16.25 11.7806 15.9719 12.5397 15.6123 13.2041C15.2494 13.8745 14.7751 14.5007 14.3164 15.0293C13.8557 15.5602 13.397 16.0081 13.0547 16.3232C12.8831 16.4813 12.7396 16.6073 12.6377 16.6943C12.5867 16.7379 12.546 16.7723 12.5176 16.7959C12.5035 16.8076 12.4923 16.8168 12.4844 16.8232C12.4804 16.8265 12.4769 16.8292 12.4746 16.8311L12.4717 16.833L12.4707 16.834C12.2305 17.0273 11.9003 17.0521 11.6377 16.9072L11.5293 16.834L11.5283 16.833L11.5254 16.8311C11.5231 16.8292 11.5196 16.8265 11.5156 16.8232C11.5077 16.8168 11.4965 16.8076 11.4824 16.7959C11.454 16.7723 11.4133 16.7379 11.3623 16.6943C11.2604 16.6073 11.1169 16.4813 10.9453 16.3232C10.603 16.0081 10.1443 15.5602 9.68359 15.0293C9.22492 14.5007 8.75063 13.8745 8.3877 13.2041C8.02808 12.5397 7.75 11.7806 7.75 11C7.75 8.65279 9.65279 6.75 12 6.75ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10Z\" fill=\"currentColor\"/><Path d=\"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H6C5.44772 5 5 5.44772 5 6V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V6C3 4.34315 4.34315 3 6 3H8Z\" fill=\"currentColor\"/><Path d=\"M18 3C19.6569 3 21 4.34315 21 6V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V6C19 5.44772 18.5523 5 18 5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H18Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinFocus;\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,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAo2D,EAAp2D,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m9BAAm9B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,CAAI,GAG91D",
|
|
9
|
+
"debugId": "8C0A486360B38E0364756E2164756E21",
|
|
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
|
|
|
@@ -1396,6 +1397,7 @@ Below is a complete list of available icons:
|
|
|
1396
1397
|
- IconStandingGlobe
|
|
1397
1398
|
- IconMapPin2
|
|
1398
1399
|
- IconMapEditFlat
|
|
1400
|
+
- IconPinFocus
|
|
1399
1401
|
|
|
1400
1402
|
### Nature & Energy
|
|
1401
1403
|
|