@central-icons-react-native/square-outlined-radius-0-stroke-2 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 g=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:y}=Object,m=Object.prototype.hasOwnProperty;function d(r){return this[r]}var F,M,f=(r,o,e)=>{var s=r!=null&&typeof r==="object";if(s){var c=o?F??=new WeakMap:M??=new WeakMap,i=c.get(r);if(i)return i}e=r!=null?g(v(r)):{};let C=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let l of k(r))if(!m.call(C,l))p(C,l,{get:d.bind(r,l),enumerable:!0});if(s)c.set(r,C);return C},h=(r)=>{var o=(u??=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(!m.call(o,s))p(o,s,{get:d.bind(r,s),enumerable:!(e=y(r,s))||e.enumerable})}return u.set(r,o),o},u;var W=(r)=>r;function q(r,o){this[r]=W.bind(null,o)}var x=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:q.bind(o,e)})};var H={};x(H,{CentralIconBase:()=>a});module.exports=h(H);var B=f(require("react")),I=require("react-native-svg"),a=({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 L={};x(L,{default:()=>S,IconPinFocus:()=>P});module.exports=h(L);var t=f(require("react"));var n=require("react-native-svg"),P=(r)=>{return t.default.createElement(a,{...r},t.default.createElement(n.Path,{d:"M4 8V4H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M16 4H20V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M8 20H4V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M16 20H20V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Circle,{cx:"12",cy:"11",r:"1",fill:"currentColor"}),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"}))},S=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=55962B443EE212AA64756E2164756E21
|
|
@@ -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 8V4H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M16 4H20V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M8 20H4V16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M16 20H20V16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Circle cx=\"12\" cy=\"11\" r=\"1\" fill=\"currentColor\"/><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\"/></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,wBAA2kB,EAA3kB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+HAA+H,OAAO,eAAe,YAAY,IAAG,CAAI,GAGrkB",
|
|
9
|
+
"debugId": "55962B443EE212AA64756E2164756E21",
|
|
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:"M4 8V4H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(e,{d:"M16 4H20V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(e,{d:"M8 20H4V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(e,{d:"M16 20H20V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(l,{cx:"12",cy:"11",r:"1",fill:"currentColor"}),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"}))},I=a;export{I as default,a as IconPinFocus};
|
|
2
|
+
|
|
3
|
+
//# debugId=4459F1531AAF8EC764756E2164756E21
|
|
@@ -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 8V4H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M16 4H20V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M8 20H4V16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M16 20H20V16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Circle cx=\"12\" cy=\"11\" r=\"1\" fill=\"currentColor\"/><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\"/></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,gBAA2kB,EAA3kB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+HAA+H,OAAO,eAAe,YAAY,IAAG,CAAI,GAGrkB",
|
|
9
|
+
"debugId": "4459F1531AAF8EC764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:d,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function k(r){return this[r]}var M,W,f=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var i=o?M??=new WeakMap:W??=new WeakMap,m=i.get(r);if(m)return m}t=r!=null?g(v(r)):{};let C=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let l of d(r))if(!u.call(C,l))p(C,l,{get:k.bind(r,l),enumerable:!0});if(e)i.set(r,C);return C},h=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of d(r))if(!u.call(o,e))p(o,e,{get:k.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return c.set(r,o),o},c;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var B=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};var V={};B(V,{CentralIconBase:()=>a});module.exports=h(V);var I=f(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return I.default.createElement(P.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 b={};B(b,{default:()=>H,IconPresentationAnalytics:()=>x});module.exports=h(b);var n=f(require("react"));var s=require("react-native-svg"),x=(r)=>{return n.default.createElement(a,{...r},n.default.createElement(s.Path,{d:"M4 8V4H21V19H14",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M8.75 12.5C8.75 13.4665 7.9665 14.25 7 14.25C6.0335 14.25 5.25 13.4665 5.25 12.5C5.25 11.5335 6.0335 10.75 7 10.75C7.9665 10.75 8.75 11.5335 8.75 12.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M17 8V15",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M13 11V15",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M7 17C8.86384 17 10.43 18.2748 10.874 20H3.12598C3.57002 18.2748 5.13616 17 7 17Z",stroke:"currentColor",strokeWidth:"2"}))},H=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=CD2D730C6A5B1ACE64756E2164756E21
|
|
@@ -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=\"M4 8V4H21V19H14\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8.75 12.5C8.75 13.4665 7.9665 14.25 7 14.25C6.0335 14.25 5.25 13.4665 5.25 12.5C5.25 11.5335 6.0335 10.75 7 10.75C7.9665 10.75 8.75 11.5335 8.75 12.5Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M17 8V15\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M13 11V15\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M7 17C8.86384 17 10.43 18.2748 10.874 20H3.12598C3.57002 18.2748 5.13616 17 7 17Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAAujB,EAAvjB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,oFAAoF,OAAO,eAAe,YAAY,IAAG,CAAI,GAGjjB",
|
|
9
|
+
"debugId": "CD2D730C6A5B1ACE64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...s})=>{return p.createElement(C,{...s,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:"M4 8V4H21V19H14",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M8.75 12.5C8.75 13.4665 7.9665 14.25 7 14.25C6.0335 14.25 5.25 13.4665 5.25 12.5C5.25 11.5335 6.0335 10.75 7 10.75C7.9665 10.75 8.75 11.5335 8.75 12.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M17 8V15",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M13 11V15",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M7 17C8.86384 17 10.43 18.2748 10.874 20H3.12598C3.57002 18.2748 5.13616 17 7 17Z",stroke:"currentColor",strokeWidth:"2"}))},I=l;export{I as default,l as IconPresentationAnalytics};
|
|
2
|
+
|
|
3
|
+
//# debugId=F418D9C00B25757564756E2164756E21
|
|
@@ -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=\"M4 8V4H21V19H14\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8.75 12.5C8.75 13.4665 7.9665 14.25 7 14.25C6.0335 14.25 5.25 13.4665 5.25 12.5C5.25 11.5335 6.0335 10.75 7 10.75C7.9665 10.75 8.75 11.5335 8.75 12.5Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M17 8V15\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M13 11V15\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M7 17C8.86384 17 10.43 18.2748 10.874 20H3.12598C3.57002 18.2748 5.13616 17 7 17Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAAujB,EAAvjB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,oFAAoF,OAAO,eAAe,YAAY,IAAG,CAAI,GAGjjB",
|
|
9
|
+
"debugId": "F418D9C00B25757564756E2164756E21",
|
|
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
|
|