@central-icons-react-native/round-outlined-radius-3-stroke-2 1.1.283 → 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/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/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 +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:h,defineProperty:n,getOwnPropertyNames:l,getOwnPropertyDescriptor:v}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var S,y,k=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?S??=new WeakMap:y??=new WeakMap,u=m.get(r);if(u)return u}e=r!=null?g(h(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let s of l(r))if(!d.call(C,s))n(C,s,{get:f.bind(r,s),enumerable:!0});if(t)m.set(r,C);return C},B=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of l(r))if(!d.call(o,t))n(o,t,{get:f.bind(r,t),enumerable:!(e=v(r,t))||e.enumerable})}return c.set(r,o),o},c;var F=(r)=>r;function b(r,o){this[r]=F.bind(null,o)}var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var j={};I(j,{CentralIconBase:()=>a});module.exports=B(j);var L=k(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return L.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 w={};I(w,{default:()=>H,IconCompassPointerSquare:()=>x});module.exports=B(w);var p=k(require("react"));var i=require("react-native-svg"),x=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(i.Path,{d:"M20 15.2V8.8C20 7.11984 20 6.27976 19.673 5.63803C19.3854 5.07354 18.9265 4.6146 18.362 4.32698C17.7202 4 16.8802 4 15.2 4H8.8C7.11984 4 6.27976 4 5.63803 4.32698C5.07354 4.6146 4.6146 5.07354 4.32698 5.63803C4 6.27976 4 7.11984 4 8.8V15.2C4 16.8802 4 17.7202 4.32698 18.362C4.6146 18.9265 5.07354 19.3854 5.63803 19.673C6.27976 20 7.11984 20 8.8 20H15.2C16.8802 20 17.7202 20 18.362 19.673C18.9265 19.3854 19.3854 18.9265 19.673 18.362C20 17.7202 20 16.8802 20 15.2Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(i.Path,{d:"M8.60866 14.6841L11.5561 8.99797C11.7426 8.63811 12.2574 8.63811 12.4439 8.99797L15.3913 14.6841C15.6034 15.0931 15.1963 15.5468 14.7668 15.3804L12.1807 14.3783C12.0644 14.3332 11.9356 14.3332 11.8193 14.3783L9.23322 15.3804C8.80366 15.5468 8.39665 15.0931 8.60866 14.6841Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},H=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=A38C65EDF8FBC65B64756E2164756E21
|
|
@@ -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 15.2V8.8C20 7.11984 20 6.27976 19.673 5.63803C19.3854 5.07354 18.9265 4.6146 18.362 4.32698C17.7202 4 16.8802 4 15.2 4H8.8C7.11984 4 6.27976 4 5.63803 4.32698C5.07354 4.6146 4.6146 5.07354 4.32698 5.63803C4 6.27976 4 7.11984 4 8.8V15.2C4 16.8802 4 17.7202 4.32698 18.362C4.6146 18.9265 5.07354 19.3854 5.63803 19.673C6.27976 20 7.11984 20 8.8 20H15.2C16.8802 20 17.7202 20 18.362 19.673C18.9265 19.3854 19.3854 18.9265 19.673 18.362C20 17.7202 20 16.8802 20 15.2Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.60866 14.6841L11.5561 8.99797C11.7426 8.63811 12.2574 8.63811 12.4439 8.99797L15.3913 14.6841C15.6034 15.0931 15.1963 15.5468 14.7668 15.3804L12.1807 14.3783C12.0644 14.3332 11.9356 14.3332 11.8193 14.3783L9.23322 15.3804C8.80366 15.5468 8.39665 15.0931 8.60866 14.6841Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAAg8B,EAAh8B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sdAAsd,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oRAAoR,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG17B",
|
|
9
|
+
"debugId": "A38C65EDF8FBC65B64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var t=({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 n}from"react-native-svg";var a=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M20 15.2V8.8C20 7.11984 20 6.27976 19.673 5.63803C19.3854 5.07354 18.9265 4.6146 18.362 4.32698C17.7202 4 16.8802 4 15.2 4H8.8C7.11984 4 6.27976 4 5.63803 4.32698C5.07354 4.6146 4.6146 5.07354 4.32698 5.63803C4 6.27976 4 7.11984 4 8.8V15.2C4 16.8802 4 17.7202 4.32698 18.362C4.6146 18.9265 5.07354 19.3854 5.63803 19.673C6.27976 20 7.11984 20 8.8 20H15.2C16.8802 20 17.7202 20 18.362 19.673C18.9265 19.3854 19.3854 18.9265 19.673 18.362C20 17.7202 20 16.8802 20 15.2Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(n,{d:"M8.60866 14.6841L11.5561 8.99797C11.7426 8.63811 12.2574 8.63811 12.4439 8.99797L15.3913 14.6841C15.6034 15.0931 15.1963 15.5468 14.7668 15.3804L12.1807 14.3783C12.0644 14.3332 11.9356 14.3332 11.8193 14.3783L9.23322 15.3804C8.80366 15.5468 8.39665 15.0931 8.60866 14.6841Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},L=a;export{L as default,a as IconCompassPointerSquare};
|
|
2
|
+
|
|
3
|
+
//# debugId=EF1D572743B742A864756E2164756E21
|
|
@@ -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 15.2V8.8C20 7.11984 20 6.27976 19.673 5.63803C19.3854 5.07354 18.9265 4.6146 18.362 4.32698C17.7202 4 16.8802 4 15.2 4H8.8C7.11984 4 6.27976 4 5.63803 4.32698C5.07354 4.6146 4.6146 5.07354 4.32698 5.63803C4 6.27976 4 7.11984 4 8.8V15.2C4 16.8802 4 17.7202 4.32698 18.362C4.6146 18.9265 5.07354 19.3854 5.63803 19.673C6.27976 20 7.11984 20 8.8 20H15.2C16.8802 20 17.7202 20 18.362 19.673C18.9265 19.3854 19.3854 18.9265 19.673 18.362C20 17.7202 20 16.8802 20 15.2Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.60866 14.6841L11.5561 8.99797C11.7426 8.63811 12.2574 8.63811 12.4439 8.99797L15.3913 14.6841C15.6034 15.0931 15.1963 15.5468 14.7668 15.3804L12.1807 14.3783C12.0644 14.3332 11.9356 14.3332 11.8193 14.3783L9.23322 15.3804C8.80366 15.5468 8.39665 15.0931 8.60866 14.6841Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAAg8B,EAAh8B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sdAAsd,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,oRAAoR,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG17B",
|
|
9
|
+
"debugId": "EF1D572743B742A864756E2164756E21",
|
|
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
|
|
|
@@ -1397,6 +1398,7 @@ Below is a complete list of available icons:
|
|
|
1397
1398
|
- IconMapPin2
|
|
1398
1399
|
- IconMapEditFlat
|
|
1399
1400
|
- IconPinFocus
|
|
1401
|
+
- IconCompassPointerSquare
|
|
1400
1402
|
|
|
1401
1403
|
### Nature & Energy
|
|
1402
1404
|
|