@central-icons-react-native/round-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 g=Object.create;var{getPrototypeOf:j,defineProperty:p,getOwnPropertyNames:a,getOwnPropertyDescriptor:v}=Object,k=Object.prototype.hasOwnProperty;function m(r){return this[r]}var y,F,f=(r,o,n)=>{var s=r!=null&&typeof r==="object";if(s){var c=o?y??=new WeakMap:F??=new WeakMap,l=c.get(r);if(l)return l}n=r!=null?g(j(r)):{};let i=o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n;for(let u of a(r))if(!k.call(i,u))p(i,u,{get:m.bind(r,u),enumerable:!0});if(s)c.set(r,i);return i},L=(r)=>{var o=(d??=new WeakMap).get(r),n;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of a(r))if(!k.call(o,s))p(o,s,{get:m.bind(r,s),enumerable:!(n=v(r,s))||n.enumerable})}return d.set(r,o),o},d;var M=(r)=>r;function h(r,o){this[r]=M.bind(null,o)}var x=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0,configurable:!0,set:h.bind(o,n)})};var H={};x(H,{CentralIconBase:()=>C});module.exports=L(H);var B=f(require("react")),I=require("react-native-svg"),C=({children:r,size:o=24,...n})=>{return B.default.createElement(I.Svg,{...n,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=L(S);var e=f(require("react"));var t=require("react-native-svg"),P=(r)=>{return e.default.createElement(C,{...r},e.default.createElement(t.Path,{d:"M3.5 8V3.5H8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M16 3.5H20.5V8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M3.5 16V20.5H8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M20.5 16V20.5H16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Circle,{cx:"12",cy:"11",r:"0.75",fill:"currentColor"}),e.default.createElement(t.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",strokeLinecap:"round",strokeLinejoin:"round"}))},V=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=2738C47F7E726BD864756E2164756E21
|
|
@@ -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=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 3.5H20.5V8\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 16V20.5H8\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M20.5 16V20.5H16\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAgsB,EAAhsB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4KAA4K,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG1rB",
|
|
9
|
+
"debugId": "2738C47F7E726BD864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...s})=>{return p.createElement(i,{...s,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{Circle as u,Path as n}from"react-native-svg";var C=(e)=>{return r.createElement(t,{...e},r.createElement(n,{d:"M3.5 8V3.5H8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M16 3.5H20.5V8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M3.5 16V20.5H8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M20.5 16V20.5H16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(u,{cx:"12",cy:"11",r:"0.75",fill:"currentColor"}),r.createElement(n,{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",strokeLinecap:"round",strokeLinejoin:"round"}))},I=C;export{I as default,C as IconPinFocus};
|
|
2
|
+
|
|
3
|
+
//# debugId=10F268B022C59C0A64756E2164756E21
|
|
@@ -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=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 3.5H20.5V8\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 16V20.5H8\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M20.5 16V20.5H16\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAgsB,EAAhsB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4KAA4K,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG1rB",
|
|
9
|
+
"debugId": "10F268B022C59C0A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:l,getOwnPropertyDescriptor:y}=Object,k=Object.prototype.hasOwnProperty;function m(r){return this[r]}var M,h,f=(r,o,n)=>{var e=r!=null&&typeof r==="object";if(e){var a=o?M??=new WeakMap:h??=new WeakMap,c=a.get(r);if(c)return c}n=r!=null?g(v(r)):{};let C=o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n;for(let i of l(r))if(!k.call(C,i))p(C,i,{get:m.bind(r,i),enumerable:!0});if(e)a.set(r,C);return C},L=(r)=>{var o=(d??=new WeakMap).get(r),n;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of l(r))if(!k.call(o,e))p(o,e,{get:m.bind(r,e),enumerable:!(n=y(r,e))||n.enumerable})}return d.set(r,o),o},d;var j=(r)=>r;function F(r,o){this[r]=j.bind(null,o)}var B=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0,configurable:!0,set:F.bind(o,n)})};var S={};B(S,{CentralIconBase:()=>u});module.exports=L(S);var I=f(require("react")),P=require("react-native-svg"),u=({children:r,size:o=24,...n})=>{return I.default.createElement(P.Svg,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var V={};B(V,{default:()=>b,IconPresentationAnalytics:()=>x});module.exports=L(V);var t=f(require("react"));var s=require("react-native-svg"),x=(r)=>{return t.default.createElement(u,{...r},t.default.createElement(s.Path,{d:"M3.5 8.5V3.5H21.5V19.5H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M17.5 8V15",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M13.5 11V15",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M9.5 12.5C9.5 13.6046 8.60457 14.5 7.5 14.5C6.39543 14.5 5.5 13.6046 5.5 12.5C5.5 11.3954 6.39543 10.5 7.5 10.5C8.60457 10.5 9.5 11.3954 9.5 12.5Z",stroke:"currentColor",strokeLinecap:"round"}),t.default.createElement(s.Path,{d:"M7.49922 16.5C5.2312 16.5 3.32549 18.1997 2.78516 20.5H12.2133C11.6729 18.1997 9.76724 16.5 7.49922 16.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},b=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=9FC528967EA8821964756E2164756E21
|
|
@@ -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.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17.5 8V15\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13.5 11V15\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.5 12.5C9.5 13.6046 8.60457 14.5 7.5 14.5C6.39543 14.5 5.5 13.6046 5.5 12.5C5.5 11.3954 6.39543 10.5 7.5 10.5C8.60457 10.5 9.5 11.3954 9.5 12.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M7.49922 16.5C5.2312 16.5 3.32549 18.1997 2.78516 20.5H12.2133C11.6729 18.1997 9.76724 16.5 7.49922 16.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAA6rB,EAA7rB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qJAAqJ,OAAO,eAAe,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4GAA4G,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvrB",
|
|
9
|
+
"debugId": "9FC528967EA8821964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var t=({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 n}from"react-native-svg";var i=(e)=>{return o.createElement(t,{...e},o.createElement(n,{d:"M3.5 8.5V3.5H21.5V19.5H15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M17.5 8V15",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M13.5 11V15",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M9.5 12.5C9.5 13.6046 8.60457 14.5 7.5 14.5C6.39543 14.5 5.5 13.6046 5.5 12.5C5.5 11.3954 6.39543 10.5 7.5 10.5C8.60457 10.5 9.5 11.3954 9.5 12.5Z",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(n,{d:"M7.49922 16.5C5.2312 16.5 3.32549 18.1997 2.78516 20.5H12.2133C11.6729 18.1997 9.76724 16.5 7.49922 16.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},I=i;export{I as default,i as IconPresentationAnalytics};
|
|
2
|
+
|
|
3
|
+
//# debugId=0B705D9E8FE99E6B64756E2164756E21
|
|
@@ -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.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17.5 8V15\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13.5 11V15\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.5 12.5C9.5 13.6046 8.60457 14.5 7.5 14.5C6.39543 14.5 5.5 13.6046 5.5 12.5C5.5 11.3954 6.39543 10.5 7.5 10.5C8.60457 10.5 9.5 11.3954 9.5 12.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M7.49922 16.5C5.2312 16.5 3.32549 18.1997 2.78516 20.5H12.2133C11.6729 18.1997 9.76724 16.5 7.49922 16.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAA6rB,EAA7rB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,4GAA4G,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvrB",
|
|
9
|
+
"debugId": "0B705D9E8FE99E6B64756E2164756E21",
|
|
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
|
|