@central-icons-react-native/round-outlined-radius-1-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:L,defineProperty:C,getOwnPropertyNames:k,getOwnPropertyDescriptor:v}=Object,a=Object.prototype.hasOwnProperty;function m(r){return this[r]}var y,F,f=(r,o,e)=>{var s=r!=null&&typeof r==="object";if(s){var l=o?y??=new WeakMap:F??=new WeakMap,u=l.get(r);if(u)return u}e=r!=null?g(L(r)):{};let p=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let i of k(r))if(!a.call(p,i))C(p,i,{get:m.bind(r,i),enumerable:!0});if(s)l.set(r,p);return p},h=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of k(r))if(!a.call(o,s))C(o,s,{get:m.bind(r,s),enumerable:!(e=v(r,s))||e.enumerable})}return d.set(r,o),o},d;var M=(r)=>r;function W(r,o){this[r]=M.bind(null,o)}var x=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:W.bind(o,e)})};var H={};x(H,{CentralIconBase:()=>c});module.exports=h(H);var B=f(require("react")),I=require("react-native-svg"),c=({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 S={};x(S,{default:()=>V,IconPinFocus:()=>P});module.exports=h(S);var t=f(require("react"));var n=require("react-native-svg"),P=(r)=>{return t.default.createElement(c,{...r},t.default.createElement(n.Path,{d:"M4 8V5C4 4.44772 4.44772 4 5 4H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M16 4H19C19.5523 4 20 4.44772 20 5V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M4 16V19C4 19.5523 4.44772 20 5 20H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M20 16V19C20 19.5523 19.5523 20 19 20H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M15.5 11C15.5 12.7907 13.6041 14.7894 12.603 15.7199C12.2588 16.0398 11.7412 16.0398 11.397 15.7199C10.3959 14.7894 8.5 12.7907 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",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Circle,{cx:"12",cy:"11",r:"1",fill:"currentColor"}))},V=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=AB1DD77DBF5A61F364756E2164756E21
|
|
@@ -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 8V5C4 4.44772 4.44772 4 5 4H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M16 4H19C19.5523 4 20 4.44772 20 5V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4 16V19C4 19.5523 4.44772 20 5 20H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M20 16V19C20 19.5523 19.5523 20 19 20H16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M15.5 11C15.5 12.7907 13.6041 14.7894 12.603 15.7199C12.2588 16.0398 11.7412 16.0398 11.397 15.7199C10.3959 14.7894 8.5 12.7907 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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"11\" r=\"1\" fill=\"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,wBAAiyB,EAAjyB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mCAAmC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2CAA2C,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oMAAoM,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,CAAI,GAG3xB",
|
|
9
|
+
"debugId": "AB1DD77DBF5A61F364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as p}from"react-native-svg";var n=({children:t,size:o=24,...s})=>{return C.createElement(p,{...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 i,Path as e}from"react-native-svg";var c=(t)=>{return r.createElement(n,{...t},r.createElement(e,{d:"M4 8V5C4 4.44772 4.44772 4 5 4H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{d:"M16 4H19C19.5523 4 20 4.44772 20 5V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{d:"M4 16V19C4 19.5523 4.44772 20 5 20H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{d:"M20 16V19C20 19.5523 19.5523 20 19 20H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(e,{d:"M15.5 11C15.5 12.7907 13.6041 14.7894 12.603 15.7199C12.2588 16.0398 11.7412 16.0398 11.397 15.7199C10.3959 14.7894 8.5 12.7907 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",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(i,{cx:"12",cy:"11",r:"1",fill:"currentColor"}))},I=c;export{I as default,c as IconPinFocus};
|
|
2
|
+
|
|
3
|
+
//# debugId=5EC10339FF08013E64756E2164756E21
|
|
@@ -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 8V5C4 4.44772 4.44772 4 5 4H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M16 4H19C19.5523 4 20 4.44772 20 5V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4 16V19C4 19.5523 4.44772 20 5 20H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M20 16V19C20 19.5523 19.5523 20 19 20H16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M15.5 11C15.5 12.7907 13.6041 14.7894 12.603 15.7199C12.2588 16.0398 11.7412 16.0398 11.397 15.7199C10.3959 14.7894 8.5 12.7907 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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"11\" r=\"1\" fill=\"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,gBAAiyB,EAAjyB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mCAAmC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,2CAA2C,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,oMAAoM,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,CAAI,GAG3xB",
|
|
9
|
+
"debugId": "5EC10339FF08013E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:g,defineProperty:C,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,l=Object.prototype.hasOwnProperty;function m(r){return this[r]}var y,M,f=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var u=o?y??=new WeakMap:M??=new WeakMap,k=u.get(r);if(k)return k}e=r!=null?x(g(r)):{};let i=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let p of c(r))if(!l.call(i,p))C(i,p,{get:m.bind(r,p),enumerable:!0});if(t)u.set(r,i);return i},h=(r)=>{var o=(a??=new WeakMap).get(r),e;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!l.call(o,t))C(o,t,{get:m.bind(r,t),enumerable:!(e=v(r,t))||e.enumerable})}return a.set(r,o),o},a;var W=(r)=>r;function j(r,o){this[r]=W.bind(null,o)}var L=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:j.bind(o,e)})};var F={};L(F,{CentralIconBase:()=>d});module.exports=h(F);var B=f(require("react")),I=require("react-native-svg"),d=({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 S={};L(S,{default:()=>V,IconPresentationAnalytics:()=>P});module.exports=h(S);var n=f(require("react"));var s=require("react-native-svg"),P=(r)=>{return n.default.createElement(d,{...r},n.default.createElement(s.Path,{d:"M4 7.5V5C4 4.44772 4.44772 4 5 4H20C20.5523 4 21 4.44772 21 5V18C21 18.5523 20.5523 19 20 19H14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M17 8V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M13 11V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),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:"round"}),n.default.createElement(s.Path,{d:"M6.99898 17C5.59222 17 4.35506 17.7262 3.64196 18.8242C3.28605 19.3722 3.76154 20 4.41497 20H9.58299C10.2364 20 10.7119 19.3722 10.356 18.8242C9.6429 17.7262 8.40575 17 6.99898 17Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},V=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=D0A833D043E4063D64756E2164756E21
|
|
@@ -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 7.5V5C4 4.44772 4.44772 4 5 4H20C20.5523 4 21 4.44772 21 5V18C21 18.5523 20.5523 19 20 19H14.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17 8V15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13 11V15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><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=\"round\"/><Path d=\"M6.99898 17C5.59222 17 4.35506 17.7262 3.64196 18.8242C3.28605 19.3722 3.76154 20 4.41497 20H9.58299C10.2364 20 10.7119 19.3722 10.356 18.8242C9.6429 17.7262 8.40575 17 6.99898 17Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAA+5B,EAA/5B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,oGAAoG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uLAAuL,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGz5B",
|
|
9
|
+
"debugId": "D0A833D043E4063D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as i}from"react-native-svg";var n=({children:t,size:r=24,...s})=>{return C.createElement(i,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Path as e}from"react-native-svg";var p=(t)=>{return o.createElement(n,{...t},o.createElement(e,{d:"M4 7.5V5C4 4.44772 4.44772 4 5 4H20C20.5523 4 21 4.44772 21 5V18C21 18.5523 20.5523 19 20 19H14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M17 8V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M13 11V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{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:"round"}),o.createElement(e,{d:"M6.99898 17C5.59222 17 4.35506 17.7262 3.64196 18.8242C3.28605 19.3722 3.76154 20 4.41497 20H9.58299C10.2364 20 10.7119 19.3722 10.356 18.8242C9.6429 17.7262 8.40575 17 6.99898 17Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},B=p;export{B as default,p as IconPresentationAnalytics};
|
|
2
|
+
|
|
3
|
+
//# debugId=086D8229BCFC527F64756E2164756E21
|
|
@@ -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 7.5V5C4 4.44772 4.44772 4 5 4H20C20.5523 4 21 4.44772 21 5V18C21 18.5523 20.5523 19 20 19H14.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17 8V15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13 11V15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><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=\"round\"/><Path d=\"M6.99898 17C5.59222 17 4.35506 17.7262 3.64196 18.8242C3.28605 19.3722 3.76154 20 4.41497 20H9.58299C10.2364 20 10.7119 19.3722 10.356 18.8242C9.6429 17.7262 8.40575 17 6.99898 17Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAA+5B,EAA/5B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,oGAAoG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uLAAuL,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGz5B",
|
|
9
|
+
"debugId": "086D8229BCFC527F64756E2164756E21",
|
|
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
|
|