@central-icons-react-native/round-outlined-radius-2-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.87444 18.0637L10.6457 3.84401C11.1886 2.70388 12.8114 2.70388 13.3543 3.84401L20.1256 18.0637C20.7391 19.352 19.3768 20.6884 18.1005 20.0502L12.6708 17.3354C12.2485 17.1243 11.7515 17.1243 11.3292 17.3354L5.89955 20.0502C4.62324 20.6884 3.26094 19.352 3.87444 18.0637Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))},j=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=572FA1F8C0F60E2164756E2164756E21
|
|
@@ -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.87444 18.0637L10.6457 3.84401C11.1886 2.70388 12.8114 2.70388 13.3543 3.84401L20.1256 18.0637C20.7391 19.352 19.3768 20.6884 18.1005 20.0502L12.6708 17.3354C12.2485 17.1243 11.7515 17.1243 11.3292 17.3354L5.89955 20.0502C4.62324 20.6884 3.26094 19.352 3.87444 18.0637Z\" 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,wBAAsX,EAAtX,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kRAAkR,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAGhX",
|
|
9
|
+
"debugId": "572FA1F8C0F60E2164756E2164756E21",
|
|
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.87444 18.0637L10.6457 3.84401C11.1886 2.70388 12.8114 2.70388 13.3543 3.84401L20.1256 18.0637C20.7391 19.352 19.3768 20.6884 18.1005 20.0502L12.6708 17.3354C12.2485 17.1243 11.7515 17.1243 11.3292 17.3354L5.89955 20.0502C4.62324 20.6884 3.26094 19.352 3.87444 18.0637Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))},g=a;export{g as default,a as IconCompassPointer};
|
|
2
|
+
|
|
3
|
+
//# debugId=55E05D7BFED7FAD364756E2164756E21
|
|
@@ -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.87444 18.0637L10.6457 3.84401C11.1886 2.70388 12.8114 2.70388 13.3543 3.84401L20.1256 18.0637C20.7391 19.352 19.3768 20.6884 18.1005 20.0502L12.6708 17.3354C12.2485 17.1243 11.7515 17.1243 11.3292 17.3354L5.89955 20.0502C4.62324 20.6884 3.26094 19.352 3.87444 18.0637Z\" 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,gBAAsX,EAAtX,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kRAAkR,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAGhX",
|
|
9
|
+
"debugId": "55E05D7BFED7FAD364756E2164756E21",
|
|
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 16.8V7.2C20 6.07989 20 5.51984 19.782 5.09202C19.5903 4.71569 19.2843 4.40973 18.908 4.21799C18.4802 4 17.9201 4 16.8 4H7.2C6.0799 4 5.51984 4 5.09202 4.21799C4.71569 4.40973 4.40973 4.71569 4.21799 5.09202C4 5.51984 4 6.07989 4 7.2V16.8C4 17.9201 4 18.4802 4.21799 18.908C4.40973 19.2843 4.71569 19.5903 5.09202 19.782C5.51984 20 6.0799 20 7.2 20H16.8C17.9201 20 18.4802 20 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C20 18.4802 20 17.9201 20 16.8Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(i.Path,{d:"M8.58207 14.699L11.5532 8.78156C11.7377 8.41403 12.2623 8.41403 12.4468 8.78156L15.4179 14.699C15.6232 15.1079 15.217 15.5549 14.7904 15.3896L12.1807 14.3783C12.0644 14.3332 11.9356 14.3332 11.8193 14.3783L9.20957 15.3896C8.78296 15.5549 8.37678 15.1079 8.58207 14.699Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},H=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=2C882BC4180E447A64756E2164756E21
|
|
@@ -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 16.8V7.2C20 6.07989 20 5.51984 19.782 5.09202C19.5903 4.71569 19.2843 4.40973 18.908 4.21799C18.4802 4 17.9201 4 16.8 4H7.2C6.0799 4 5.51984 4 5.09202 4.21799C4.71569 4.40973 4.40973 4.71569 4.21799 5.09202C4 5.51984 4 6.07989 4 7.2V16.8C4 17.9201 4 18.4802 4.21799 18.908C4.40973 19.2843 4.71569 19.5903 5.09202 19.782C5.51984 20 6.0799 20 7.2 20H16.8C17.9201 20 18.4802 20 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C20 18.4802 20 17.9201 20 16.8Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.58207 14.699L11.5532 8.78156C11.7377 8.41403 12.2623 8.41403 12.4468 8.78156L15.4179 14.699C15.6232 15.1079 15.217 15.5549 14.7904 15.3896L12.1807 14.3783C12.0644 14.3332 11.9356 14.3332 11.8193 14.3783L9.20957 15.3896C8.78296 15.5549 8.37678 15.1079 8.58207 14.699Z\" 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,wBAA87B,EAA97B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,wdAAwd,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gRAAgR,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGx7B",
|
|
9
|
+
"debugId": "2C882BC4180E447A64756E2164756E21",
|
|
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 16.8V7.2C20 6.07989 20 5.51984 19.782 5.09202C19.5903 4.71569 19.2843 4.40973 18.908 4.21799C18.4802 4 17.9201 4 16.8 4H7.2C6.0799 4 5.51984 4 5.09202 4.21799C4.71569 4.40973 4.40973 4.71569 4.21799 5.09202C4 5.51984 4 6.07989 4 7.2V16.8C4 17.9201 4 18.4802 4.21799 18.908C4.40973 19.2843 4.71569 19.5903 5.09202 19.782C5.51984 20 6.0799 20 7.2 20H16.8C17.9201 20 18.4802 20 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C20 18.4802 20 17.9201 20 16.8Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(n,{d:"M8.58207 14.699L11.5532 8.78156C11.7377 8.41403 12.2623 8.41403 12.4468 8.78156L15.4179 14.699C15.6232 15.1079 15.217 15.5549 14.7904 15.3896L12.1807 14.3783C12.0644 14.3332 11.9356 14.3332 11.8193 14.3783L9.20957 15.3896C8.78296 15.5549 8.37678 15.1079 8.58207 14.699Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},L=a;export{L as default,a as IconCompassPointerSquare};
|
|
2
|
+
|
|
3
|
+
//# debugId=F8DC5487348F790864756E2164756E21
|
|
@@ -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 16.8V7.2C20 6.07989 20 5.51984 19.782 5.09202C19.5903 4.71569 19.2843 4.40973 18.908 4.21799C18.4802 4 17.9201 4 16.8 4H7.2C6.0799 4 5.51984 4 5.09202 4.21799C4.71569 4.40973 4.40973 4.71569 4.21799 5.09202C4 5.51984 4 6.07989 4 7.2V16.8C4 17.9201 4 18.4802 4.21799 18.908C4.40973 19.2843 4.71569 19.5903 5.09202 19.782C5.51984 20 6.0799 20 7.2 20H16.8C17.9201 20 18.4802 20 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C20 18.4802 20 17.9201 20 16.8Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.58207 14.699L11.5532 8.78156C11.7377 8.41403 12.2623 8.41403 12.4468 8.78156L15.4179 14.699C15.6232 15.1079 15.217 15.5549 14.7904 15.3896L12.1807 14.3783C12.0644 14.3332 11.9356 14.3332 11.8193 14.3783L9.20957 15.3896C8.78296 15.5549 8.37678 15.1079 8.58207 14.699Z\" 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,gBAA87B,EAA97B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,wdAAwd,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gRAAgR,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGx7B",
|
|
9
|
+
"debugId": "F8DC5487348F790864756E2164756E21",
|
|
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
|
|