@central-icons-react-native/round-outlined-radius-3-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 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 m=r?F??=new WeakMap:S??=new WeakMap,l=m.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)m.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:()=>C});module.exports=I(w);var x=B(require("react")),g=require("react-native-svg"),C=({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 a=B(require("react"));var d=require("react-native-svg"),h=(o)=>{return a.default.createElement(C,{...o},a.default.createElement(d.Path,{d:"M3.78657 17.7091L10.195 4.28182C10.9196 2.76377 13.0804 2.76377 13.805 4.28183L20.2134 17.7091C21.0081 19.3742 19.3164 21.1356 17.6206 20.4088L12.7878 18.3376C12.2847 18.122 11.7153 18.122 11.2122 18.3376L6.37937 20.4088C4.68357 21.1356 2.99188 19.3742 3.78657 17.7091Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))},j=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=C5F4D207A06B664664756E2164756E21
|
|
@@ -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=\"M3.78657 17.7091L10.195 4.28182C10.9196 2.76377 13.0804 2.76377 13.805 4.28183L20.2134 17.7091C21.0081 19.3742 19.3164 21.1356 17.6206 20.4088L12.7878 18.3376C12.2847 18.122 11.7153 18.122 11.2122 18.3376L6.37937 20.4088C4.68357 21.1356 2.99188 19.3742 3.78657 17.7091Z\" 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,wBAAoX,EAApX,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gRAAgR,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAG9W",
|
|
9
|
+
"debugId": "C5F4D207A06B664664756E2164756E21",
|
|
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 C}from"react-native-svg";var a=(r)=>{return e.createElement(t,{...r},e.createElement(C,{d:"M3.78657 17.7091L10.195 4.28182C10.9196 2.76377 13.0804 2.76377 13.805 4.28183L20.2134 17.7091C21.0081 19.3742 19.3164 21.1356 17.6206 20.4088L12.7878 18.3376C12.2847 18.122 11.7153 18.122 11.2122 18.3376L6.37937 20.4088C4.68357 21.1356 2.99188 19.3742 3.78657 17.7091Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))},g=a;export{g as default,a as IconCompassPointer};
|
|
2
|
+
|
|
3
|
+
//# debugId=90A49EFF30D8455064756E2164756E21
|
|
@@ -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=\"M3.78657 17.7091L10.195 4.28182C10.9196 2.76377 13.0804 2.76377 13.805 4.28183L20.2134 17.7091C21.0081 19.3742 19.3164 21.1356 17.6206 20.4088L12.7878 18.3376C12.2847 18.122 11.7153 18.122 11.2122 18.3376L6.37937 20.4088C4.68357 21.1356 2.99188 19.3742 3.78657 17.7091Z\" 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,gBAAoX,EAApX,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gRAAgR,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAG9W",
|
|
9
|
+
"debugId": "90A49EFF30D8455064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:v}=Object,a=Object.prototype.hasOwnProperty;function m(r){return this[r]}var y,F,f=(r,o,e)=>{var s=r!=null&&typeof r==="object";if(s){var l=o?y??=new WeakMap:F??=new WeakMap,u=l.get(r);if(u)return u}e=r!=null?g(L(r)):{};let C=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let i of k(r))if(!a.call(C,i))p(C,i,{get:m.bind(r,i),enumerable:!0});if(s)l.set(r,C);return C},h=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of k(r))if(!a.call(o,s))p(o,s,{get:m.bind(r,s),enumerable:!(e=v(r,s))||e.enumerable})}return d.set(r,o),o},d;var M=(r)=>r;function W(r,o){this[r]=M.bind(null,o)}var x=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:W.bind(o,e)})};var H={};x(H,{CentralIconBase:()=>c});module.exports=h(H);var B=f(require("react")),I=require("react-native-svg"),c=({children:r,size:o=24,...e})=>{return B.default.createElement(I.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 S={};x(S,{default:()=>V,IconPinFocus:()=>P});module.exports=h(S);var t=f(require("react"));var n=require("react-native-svg"),P=(r)=>{return t.default.createElement(c,{...r},t.default.createElement(n.Path,{d:"M4 8V7C4 5.34315 5.34315 4 7 4H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M16 4H17C18.6569 4 20 5.34315 20 7V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M4 16V17C4 18.6569 5.34315 20 7 20H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M20 16V17C20 18.6569 18.6569 20 17 20H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M15.5 11C15.5 13.433 12 16.25 12 16.25C12 16.25 8.5 13.433 8.5 11C8.5 9.067 10.067 7.5 12 7.5C13.933 7.5 15.5 9.067 15.5 11Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Circle,{cx:"12",cy:"11",r:"1",fill:"currentColor"}))},V=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=117D49D77EA42AC064756E2164756E21
|
|
@@ -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=\"M4 8V7C4 5.34315 5.34315 4 7 4H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M16 4H17C18.6569 4 20 5.34315 20 7V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4 16V17C4 18.6569 5.34315 20 7 20H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M20 16V17C20 18.6569 18.6569 20 17 20H16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M15.5 11C15.5 13.433 12 16.25 12 16.25C12 16.25 8.5 13.433 8.5 11C8.5 9.067 10.067 7.5 12 7.5C13.933 7.5 15.5 9.067 15.5 11Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"11\" r=\"1\" 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,sBAE6B,IAA7B,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAA4tB,EAA5tB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mCAAmC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2CAA2C,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+HAA+H,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,CAAI,GAGttB",
|
|
9
|
+
"debugId": "117D49D77EA42AC064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:o=24,...s})=>{return p.createElement(C,{...s,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t)};import r from"react";import{Circle as i,Path as e}from"react-native-svg";var c=(t)=>{return r.createElement(n,{...t},r.createElement(e,{d:"M4 8V7C4 5.34315 5.34315 4 7 4H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{d:"M16 4H17C18.6569 4 20 5.34315 20 7V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{d:"M4 16V17C4 18.6569 5.34315 20 7 20H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{d:"M20 16V17C20 18.6569 18.6569 20 17 20H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{d:"M15.5 11C15.5 13.433 12 16.25 12 16.25C12 16.25 8.5 13.433 8.5 11C8.5 9.067 10.067 7.5 12 7.5C13.933 7.5 15.5 9.067 15.5 11Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(i,{cx:"12",cy:"11",r:"1",fill:"currentColor"}))},I=c;export{I as default,c as IconPinFocus};
|
|
2
|
+
|
|
3
|
+
//# debugId=BE193A97BFDC325664756E2164756E21
|
|
@@ -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=\"M4 8V7C4 5.34315 5.34315 4 7 4H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M16 4H17C18.6569 4 20 5.34315 20 7V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4 16V17C4 18.6569 5.34315 20 7 20H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M20 16V17C20 18.6569 18.6569 20 17 20H16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M15.5 11C15.5 13.433 12 16.25 12 16.25C12 16.25 8.5 13.433 8.5 11C8.5 9.067 10.067 7.5 12 7.5C13.933 7.5 15.5 9.067 15.5 11Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"11\" r=\"1\" 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,iBAAS,UAAQ,yBAEV,IAAM,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAA4tB,EAA5tB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mCAAmC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,2CAA2C,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,+HAA+H,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,CAAI,GAGttB",
|
|
9
|
+
"debugId": "BE193A97BFDC325664756E2164756E21",
|
|
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
|
|