@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.281 → 1.1.283
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/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/IconPresentationAnalytics/index.d.ts +4 -0
- package/IconPresentationAnalytics/index.js +3 -0
- package/IconPresentationAnalytics/index.js.map +11 -0
- package/IconPresentationAnalytics/index.mjs +3 -0
- package/IconPresentationAnalytics/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:y,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:F}=Object,f=Object.prototype.hasOwnProperty;function k(r){return this[r]}var M,h,x=(r,o,e)=>{var s=r!=null&&typeof r==="object";if(s){var c=o?M??=new WeakMap:h??=new WeakMap,u=c.get(r);if(u)return u}e=r!=null?v(y(r)):{};let C=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let l of m(r))if(!f.call(C,l))p(C,l,{get:k.bind(r,l),enumerable:!0});if(s)c.set(r,C);return C},B=(r)=>{var o=(i??=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 m(r))if(!f.call(o,s))p(o,s,{get:k.bind(r,s),enumerable:!(e=F(r,s))||e.enumerable})}return i.set(r,o),o},i;var q=(r)=>r;function H(r,o){this[r]=q.bind(null,o)}var I=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var L={};I(L,{CentralIconBase:()=>a});module.exports=B(L);var P=x(require("react")),d=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(d.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={};I(S,{default:()=>V,IconPinFocus:()=>g});module.exports=B(S);var t=x(require("react"));var n=require("react-native-svg"),g=(r)=>{return t.default.createElement(a,{...r},t.default.createElement(n.Path,{d:"M3.5 8V3.5H8",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M16 3.5H20.5V8",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M3.5 16V20.5H8",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M20.5 16V20.5H16",stroke:"currentColor",strokeLinecap:"square"}),t.default.createElement(n.Circle,{cx:"12",cy:"11",r:"0.75",fill:"currentColor"}),t.default.createElement(n.Path,{d:"M15.75 10.9375C15.75 13.5443 12 16.5625 12 16.5625C12 16.5625 8.25 13.5443 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"}))},V=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=00D9432FBADA73EF64756E2164756E21
|
|
@@ -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 8V3.5H8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M16 3.5H20.5V8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.5 16V20.5H8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M20.5 16V20.5H16\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Circle cx=\"12\" cy=\"11\" r=\"0.75\" fill=\"currentColor\"/><Path d=\"M15.75 10.9375C15.75 13.5443 12 16.5625 12 16.5625C12 16.5625 8.25 13.5443 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\"/></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,wBAA2jB,EAA3jB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4KAA4K,OAAO,eAAc,CAAI,GAGrjB",
|
|
9
|
+
"debugId": "00D9432FBADA73EF64756E2164756E21",
|
|
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 l,Path as e}from"react-native-svg";var a=(t)=>{return r.createElement(n,{...t},r.createElement(e,{d:"M3.5 8V3.5H8",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(e,{d:"M16 3.5H20.5V8",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(e,{d:"M3.5 16V20.5H8",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(e,{d:"M20.5 16V20.5H16",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(l,{cx:"12",cy:"11",r:"0.75",fill:"currentColor"}),r.createElement(e,{d:"M15.75 10.9375C15.75 13.5443 12 16.5625 12 16.5625C12 16.5625 8.25 13.5443 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"}))},d=a;export{d as default,a as IconPinFocus};
|
|
2
|
+
|
|
3
|
+
//# debugId=97C1C9893643BEB264756E2164756E21
|
|
@@ -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 8V3.5H8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M16 3.5H20.5V8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.5 16V20.5H8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M20.5 16V20.5H16\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Circle cx=\"12\" cy=\"11\" r=\"0.75\" fill=\"currentColor\"/><Path d=\"M15.75 10.9375C15.75 13.5443 12 16.5625 12 16.5625C12 16.5625 8.25 13.5443 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\"/></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,gBAA2jB,EAA3jB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4KAA4K,OAAO,eAAc,CAAI,GAGrjB",
|
|
9
|
+
"debugId": "97C1C9893643BEB264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:v,defineProperty:s,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function d(r){return this[r]}var M,F,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?M??=new WeakMap:F??=new WeakMap,c=m.get(r);if(c)return c}t=r!=null?h(v(r)):{};let C=o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t;for(let l of i(r))if(!f.call(C,l))s(C,l,{get:d.bind(r,l),enumerable:!0});if(e)m.set(r,C);return C},I=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of i(r))if(!f.call(o,e))s(o,e,{get:d.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return u.set(r,o),o},u;var S=(r)=>r;function V(r,o){this[r]=S.bind(null,o)}var P=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0,configurable:!0,set:V.bind(o,t)})};var b={};P(b,{CentralIconBase:()=>a});module.exports=I(b);var k=B(require("react")),x=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return k.default.createElement(x.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 H={};P(H,{default:()=>w,IconPresentationAnalytics:()=>g});module.exports=I(H);var n=B(require("react"));var p=require("react-native-svg"),g=(r)=>{return n.default.createElement(a,{...r},n.default.createElement(p.Path,{d:"M3.5 8.5V3.5H21.5V19.5H14",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M17.5 7.5V15.5",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M13.5 10.5V15.5",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M9 12.5C9 13.6046 8.10457 14.5 7 14.5C5.89543 14.5 5 13.6046 5 12.5C5 11.3954 5.89543 10.5 7 10.5C8.10457 10.5 9 11.3954 9 12.5Z",stroke:"currentColor",strokeWidth:"1.14286",strokeLinecap:"square"}),n.default.createElement(p.Path,{d:"M7 16.5C9.31624 16.5 11.2229 18.2501 11.4717 20.5H2.52832C2.77708 18.2501 4.68376 16.5 7 16.5Z",stroke:"currentColor"}))},w=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=8CA37C3C04CA5E4B64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPresentationAnalytics/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 IconPresentationAnalytics: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 8.5V3.5H21.5V19.5H14\" stroke=\"currentColor\"/><Path d=\"M17.5 7.5V15.5\" stroke=\"currentColor\"/><Path d=\"M13.5 10.5V15.5\" stroke=\"currentColor\"/><Path d=\"M9 12.5C9 13.6046 8.10457 14.5 7 14.5C5.89543 14.5 5 13.6046 5 12.5C5 11.3954 5.89543 10.5 7 10.5C8.10457 10.5 9 11.3954 9 12.5Z\" stroke=\"currentColor\" strokeWidth=\"1.14286\" strokeLinecap=\"square\"/><Path d=\"M7 16.5C9.31624 16.5 11.2229 18.2501 11.4717 20.5H2.52832C2.77708 18.2501 4.68376 16.5 7 16.5Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPresentationAnalytics;\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,qFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsD,CAAC,IAAU,CAC5E,OAAO,wBAAygB,EAAzgB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,4BAA4B,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mIAAmI,OAAO,eAAe,YAAY,UAAU,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,iGAAiG,OAAO,eAAc,CAAI,GAGngB",
|
|
9
|
+
"debugId": "8CA37C3C04CA5E4B64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...p})=>{return s.createElement(C,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as t}from"react-native-svg";var l=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M3.5 8.5V3.5H21.5V19.5H14",stroke:"currentColor"}),o.createElement(t,{d:"M17.5 7.5V15.5",stroke:"currentColor"}),o.createElement(t,{d:"M13.5 10.5V15.5",stroke:"currentColor"}),o.createElement(t,{d:"M9 12.5C9 13.6046 8.10457 14.5 7 14.5C5.89543 14.5 5 13.6046 5 12.5C5 11.3954 5.89543 10.5 7 10.5C8.10457 10.5 9 11.3954 9 12.5Z",stroke:"currentColor",strokeWidth:"1.14286",strokeLinecap:"square"}),o.createElement(t,{d:"M7 16.5C9.31624 16.5 11.2229 18.2501 11.4717 20.5H2.52832C2.77708 18.2501 4.68376 16.5 7 16.5Z",stroke:"currentColor"}))},k=l;export{k as default,l as IconPresentationAnalytics};
|
|
2
|
+
|
|
3
|
+
//# debugId=244D4181D43C70EB64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPresentationAnalytics/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 IconPresentationAnalytics: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 8.5V3.5H21.5V19.5H14\" stroke=\"currentColor\"/><Path d=\"M17.5 7.5V15.5\" stroke=\"currentColor\"/><Path d=\"M13.5 10.5V15.5\" stroke=\"currentColor\"/><Path d=\"M9 12.5C9 13.6046 8.10457 14.5 7 14.5C5.89543 14.5 5 13.6046 5 12.5C5 11.3954 5.89543 10.5 7 10.5C8.10457 10.5 9 11.3954 9 12.5Z\" stroke=\"currentColor\" strokeWidth=\"1.14286\" strokeLinecap=\"square\"/><Path d=\"M7 16.5C9.31624 16.5 11.2229 18.2501 11.4717 20.5H2.52832C2.77708 18.2501 4.68376 16.5 7 16.5Z\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPresentationAnalytics;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAygB,EAAzgB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,4BAA4B,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mIAAmI,OAAO,eAAe,YAAY,UAAU,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iGAAiG,OAAO,eAAc,CAAI,GAGngB",
|
|
9
|
+
"debugId": "244D4181D43C70EB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -1396,6 +1396,7 @@ Below is a complete list of available icons:
|
|
|
1396
1396
|
- IconStandingGlobe
|
|
1397
1397
|
- IconMapPin2
|
|
1398
1398
|
- IconMapEditFlat
|
|
1399
|
+
- IconPinFocus
|
|
1399
1400
|
|
|
1400
1401
|
### Nature & Energy
|
|
1401
1402
|
|
|
@@ -1478,6 +1479,7 @@ Below is a complete list of available icons:
|
|
|
1478
1479
|
- IconPeopleSparkles
|
|
1479
1480
|
- IconPeopleNoise
|
|
1480
1481
|
- IconPeopleIdCard2
|
|
1482
|
+
- IconPresentationAnalytics
|
|
1481
1483
|
|
|
1482
1484
|
### Photography & Video
|
|
1483
1485
|
|