@central-icons-react-native/round-outlined-radius-3-stroke-1 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 L=Object.create;var{getPrototypeOf:v,defineProperty:i,getOwnPropertyNames:h,getOwnPropertyDescriptor:w}=Object,P=Object.prototype.hasOwnProperty;function c(r){return this[r]}var y,F,u=(r,o,t)=>{var n=r!=null&&typeof r==="object";if(n){var a=o?y??=new WeakMap:F??=new WeakMap,m=a.get(r);if(m)return m}t=r!=null?L(v(r)):{};let C=o||!r||!r.__esModule?i(t,"default",{value:r,enumerable:!0}):t;for(let l of h(r))if(!P.call(C,l))i(C,l,{get:c.bind(r,l),enumerable:!0});if(n)a.set(r,C);return C},B=(r)=>{var o=(f??=new WeakMap).get(r),t;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of h(r))if(!P.call(o,n))i(o,n,{get:c.bind(r,n),enumerable:!(t=w(r,n))||t.enumerable})}return f.set(r,o),o},f;var S=(r)=>r;function _(r,o){this[r]=S.bind(null,o)}var I=(r,o)=>{for(var t in o)i(r,t,{get:o[t],enumerable:!0,configurable:!0,set:_.bind(o,t)})};var b={};I(b,{CentralIconBase:()=>s});module.exports=B(b);var d=u(require("react")),g=require("react-native-svg"),s=({children:r,size:o=24,...t})=>{return d.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 k={};I(k,{default:()=>D,IconCompassPointer:()=>x});module.exports=B(k);var p=u(require("react"));var e=require("react-native-svg"),x=(r)=>{return p.default.createElement(s,{...r},p.default.createElement(e.G,{ClipPath:"url(#clip0_15506_27861)"},p.default.createElement(e.Path,{d:"M3.80915 17.4741L10.1842 3.667C10.8993 2.11819 13.1007 2.11819 13.8158 3.667L20.1909 17.4741C21.001 19.2286 19.0986 20.9978 17.4074 20.0627L12.9677 17.6081C12.3655 17.2752 11.6345 17.2752 11.0323 17.6081L6.59266 20.0627C4.90143 20.9978 2.99905 19.2286 3.80915 17.4741Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),p.default.createElement(e.Defs,null,p.default.createElement(e.ClipPath,{id:"clip0_15506_27861"},p.default.createElement(e.Rect,{width:"24",height:"24",fill:"white"}))))},D=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=829073D5D953DCDE64756E2164756E21
|
|
@@ -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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconCompassPointer: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><G ClipPath=\"url(#clip0_15506_27861)\"><Path d=\"M3.80915 17.4741L10.1842 3.667C10.8993 2.11819 13.1007 2.11819 13.8158 3.667L20.1909 17.4741C21.001 19.2286 19.0986 20.9978 17.4074 20.0627L12.9677 17.6081C12.3655 17.2752 11.6345 17.2752 11.0323 17.6081L6.59266 20.0627C4.90143 20.9978 2.99905 19.2286 3.80915 17.4741Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></G><Defs><ClipPath id=\"clip0_15506_27861\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></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,sBAE8C,IAA9C,8BAEa,EAA+C,CAAC,IAAU,CACrE,OAAO,wBAAugB,EAAvgB,IAAqB,GAAO,wBAAmY,IAAnY,CAAG,SAAS,2BAA0B,wBAAC,OAAD,CAAM,EAAE,+QAA+Q,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAAE,wBAA+F,OAA/F,KAAM,wBAA8E,WAA9E,CAAU,GAAG,qBAAoB,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,GAGjgB",
|
|
9
|
+
"debugId": "829073D5D953DCDE64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as i}from"react-native-svg";var e=({children:t,size:r=24,...n})=>{return p.createElement(i,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{ClipPath as C,Defs as l,G as s,Path as a,Rect as m}from"react-native-svg";var f=(t)=>{return o.createElement(e,{...t},o.createElement(s,{ClipPath:"url(#clip0_15506_27861)"},o.createElement(a,{d:"M3.80915 17.4741L10.1842 3.667C10.8993 2.11819 13.1007 2.11819 13.8158 3.667L20.1909 17.4741C21.001 19.2286 19.0986 20.9978 17.4074 20.0627L12.9677 17.6081C12.3655 17.2752 11.6345 17.2752 11.0323 17.6081L6.59266 20.0627C4.90143 20.9978 2.99905 19.2286 3.80915 17.4741Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),o.createElement(l,null,o.createElement(C,{id:"clip0_15506_27861"},o.createElement(m,{width:"24",height:"24",fill:"white"}))))},v=f;export{v as default,f as IconCompassPointer};
|
|
2
|
+
|
|
3
|
+
//# debugId=67FD2AD6D00BB75A64756E2164756E21
|
|
@@ -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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconCompassPointer: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><G ClipPath=\"url(#clip0_15506_27861)\"><Path d=\"M3.80915 17.4741L10.1842 3.667C10.8993 2.11819 13.1007 2.11819 13.8158 3.667L20.1909 17.4741C21.001 19.2286 19.0986 20.9978 17.4074 20.0627L12.9677 17.6081C12.3655 17.2752 11.6345 17.2752 11.0323 17.6081L6.59266 20.0627C4.90143 20.9978 2.99905 19.2286 3.80915 17.4741Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></G><Defs><ClipPath id=\"clip0_15506_27861\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></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,mBAAS,UAAU,OAAM,UAAG,UAAM,yBAE3B,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAugB,EAAvgB,IAAqB,GAAO,gBAAmY,EAAnY,CAAG,SAAS,2BAA0B,gBAAC,EAAD,CAAM,EAAE,+QAA+Q,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAAE,gBAA+F,EAA/F,KAAM,gBAA8E,EAA9E,CAAU,GAAG,qBAAoB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,GAGjgB",
|
|
9
|
+
"debugId": "67FD2AD6D00BB75A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var L=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:d,getOwnPropertyDescriptor:y}=Object,m=Object.prototype.hasOwnProperty;function k(r){return this[r]}var F,M,f=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var u=o?F??=new WeakMap:M??=new WeakMap,i=u.get(r);if(i)return i}e=r!=null?L(v(r)):{};let s=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let c of d(r))if(!m.call(s,c))p(s,c,{get:k.bind(r,c),enumerable:!0});if(C)u.set(r,s);return s},x=(r)=>{var o=(a??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of d(r))if(!m.call(o,C))p(o,C,{get:k.bind(r,C),enumerable:!(e=y(r,C))||e.enumerable})}return a.set(r,o),o},a;var h=(r)=>r;function H(r,o){this[r]=h.bind(null,o)}var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var S={};B(S,{CentralIconBase:()=>l});module.exports=x(S);var I=f(require("react")),P=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return I.default.createElement(P.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 V={};B(V,{default:()=>b,IconPinFocus:()=>g});module.exports=x(V);var n=f(require("react"));var t=require("react-native-svg"),g=(r)=>{return n.default.createElement(l,{...r},n.default.createElement(t.Path,{d:"M3.5 8V6.5C3.5 4.84315 4.84315 3.5 6.5 3.5H8",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M16 3.5H17.5C19.1569 3.5 20.5 4.84315 20.5 6.5V8",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M3.5 16V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H8",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M20.5 16V17.5C20.5 19.1569 19.1569 20.5 17.5 20.5H16",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Circle,{cx:"12",cy:"11",r:"0.75",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M15.75 10.9375C15.75 12.8811 13.6653 15.0534 12.6046 16.0329C12.2594 16.3517 11.7406 16.3517 11.3954 16.0329C10.3347 15.0534 8.25 12.8811 8.25 10.9375C8.25 8.86643 9.92893 7.1875 12 7.1875C14.0711 7.1875 15.75 8.86643 15.75 10.9375Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},b=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=29FABC0E74D4C1FD64756E2164756E21
|
|
@@ -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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 8V6.5C3.5 4.84315 4.84315 3.5 6.5 3.5H8\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M16 3.5H17.5C19.1569 3.5 20.5 4.84315 20.5 6.5V8\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M3.5 16V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H8\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M20.5 16V17.5C20.5 19.1569 19.1569 20.5 17.5 20.5H16\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Circle cx=\"12\" cy=\"11\" r=\"0.75\" fill=\"currentColor\"/><Path d=\"M15.75 10.9375C15.75 12.8811 13.6653 15.0534 12.6046 16.0329C12.2594 16.3517 11.7406 16.3517 11.3954 16.0329C10.3347 15.0534 8.25 12.8811 8.25 10.9375C8.25 8.86643 9.92893 7.1875 12 7.1875C14.0711 7.1875 15.75 8.86643 15.75 10.9375Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,sBAE6B,IAA7B,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAA2yB,EAA3yB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+CAA+C,OAAO,eAAe,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mDAAmD,OAAO,eAAe,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mDAAmD,OAAO,eAAe,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uDAAuD,OAAO,eAAe,cAAc,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,2OAA2O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGryB",
|
|
9
|
+
"debugId": "29FABC0E74D4C1FD64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var t=({children:n,size:o=24,...C})=>{return p.createElement(s,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Circle as c,Path as e}from"react-native-svg";var l=(n)=>{return r.createElement(t,{...n},r.createElement(e,{d:"M3.5 8V6.5C3.5 4.84315 4.84315 3.5 6.5 3.5H8",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(e,{d:"M16 3.5H17.5C19.1569 3.5 20.5 4.84315 20.5 6.5V8",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(e,{d:"M3.5 16V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H8",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(e,{d:"M20.5 16V17.5C20.5 19.1569 19.1569 20.5 17.5 20.5H16",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(c,{cx:"12",cy:"11",r:"0.75",fill:"currentColor"}),r.createElement(e,{d:"M15.75 10.9375C15.75 12.8811 13.6653 15.0534 12.6046 16.0329C12.2594 16.3517 11.7406 16.3517 11.3954 16.0329C10.3347 15.0534 8.25 12.8811 8.25 10.9375C8.25 8.86643 9.92893 7.1875 12 7.1875C14.0711 7.1875 15.75 8.86643 15.75 10.9375Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},P=l;export{P as default,l as IconPinFocus};
|
|
2
|
+
|
|
3
|
+
//# debugId=44A650C2132E429464756E2164756E21
|
|
@@ -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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 8V6.5C3.5 4.84315 4.84315 3.5 6.5 3.5H8\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M16 3.5H17.5C19.1569 3.5 20.5 4.84315 20.5 6.5V8\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M3.5 16V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H8\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M20.5 16V17.5C20.5 19.1569 19.1569 20.5 17.5 20.5H16\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Circle cx=\"12\" cy=\"11\" r=\"0.75\" fill=\"currentColor\"/><Path d=\"M15.75 10.9375C15.75 12.8811 13.6653 15.0534 12.6046 16.0329C12.2594 16.3517 11.7406 16.3517 11.3954 16.0329C10.3347 15.0534 8.25 12.8811 8.25 10.9375C8.25 8.86643 9.92893 7.1875 12 7.1875C14.0711 7.1875 15.75 8.86643 15.75 10.9375Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,iBAAS,UAAQ,yBAEV,IAAM,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAA2yB,EAA3yB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+CAA+C,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,mDAAmD,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,mDAAmD,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uDAAuD,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2OAA2O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGryB",
|
|
9
|
+
"debugId": "44A650C2132E429464756E2164756E21",
|
|
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
|
|