@central-icons-react-native/round-filled-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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPinFocus: FC<CentralIconBaseProps>;
4
+ export default IconPinFocus;
@@ -0,0 +1,3 @@
1
+ var x=Object.create;var{getPrototypeOf:g,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:M}=Object,a=Object.prototype.hasOwnProperty;function d(r){return this[r]}var Z,F,B=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var u=o?Z??=new WeakMap:F??=new WeakMap,m=u.get(r);if(m)return m}C=r!=null?x(g(r)):{};let p=o||!r||!r.__esModule?t(C,"default",{value:r,enumerable:!0}):C;for(let f of c(r))if(!a.call(p,f))t(p,f,{get:d.bind(r,f),enumerable:!0});if(e)u.set(r,p);return p},H=(r)=>{var o=(s??=new WeakMap).get(r),C;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!a.call(o,e))t(o,e,{get:d.bind(r,e),enumerable:!(C=M(r,e))||C.enumerable})}return s.set(r,o),o},s;var h=(r)=>r;function y(r,o){this[r]=h.bind(null,o)}var I=(r,o)=>{for(var C in o)t(r,C,{get:o[C],enumerable:!0,configurable:!0,set:y.bind(o,C)})};var S={};I(S,{CentralIconBase:()=>i});module.exports=H(S);var P=B(require("react")),V=require("react-native-svg"),i=({children:r,size:o=24,...C})=>{return P.default.createElement(V.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};I(b,{default:()=>w,IconPinFocus:()=>v});module.exports=H(b);var n=B(require("react"));var l=require("react-native-svg"),v=(r)=>{return n.default.createElement(i,{...r},n.default.createElement(l.Path,{d:"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H5C3.89543 21 3 20.1046 3 19V16C3 15.4477 3.44772 15 4 15Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20 15C20.5523 15 21 15.4477 21 16V19C21 20.1046 20.1046 21 19 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 6.75C14.3472 6.75 16.25 8.65279 16.25 11C16.25 12.1349 15.662 13.2422 15.0371 14.1182C14.3967 15.0158 13.632 15.7874 13.1133 16.2695C12.4814 16.8566 11.5186 16.8566 10.8867 16.2695C10.368 15.7874 9.60326 15.0158 8.96289 14.1182C8.338 13.2422 7.75 12.1349 7.75 11C7.75 8.65279 9.65279 6.75 12 6.75ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V5C3 3.89543 3.89543 3 5 3H8Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M19 3C20.1046 3 21 3.89543 21 5V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H19Z",fill:"currentColor"}))},w=v;
2
+
3
+ //# debugId=17C5CB27EBFD6DB164756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H5C3.89543 21 3 20.1046 3 19V16C3 15.4477 3.44772 15 4 15Z\" fill=\"currentColor\"/><Path d=\"M20 15C20.5523 15 21 15.4477 21 16V19C21 20.1046 20.1046 21 19 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 6.75C14.3472 6.75 16.25 8.65279 16.25 11C16.25 12.1349 15.662 13.2422 15.0371 14.1182C14.3967 15.0158 13.632 15.7874 13.1133 16.2695C12.4814 16.8566 11.5186 16.8566 10.8867 16.2695C10.368 15.7874 9.60326 15.0158 8.96289 14.1182C8.338 13.2422 7.75 12.1349 7.75 11C7.75 8.65279 9.65279 6.75 12 6.75ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10Z\" fill=\"currentColor\"/><Path d=\"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V5C3 3.89543 3.89543 3 5 3H8Z\" fill=\"currentColor\"/><Path d=\"M19 3C20.1046 3 21 3.89543 21 5V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H19Z\" 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,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAAgtC,EAAhtC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uaAAua,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wIAAwI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,CAAI,GAG1sC",
9
+ "debugId": "17C5CB27EBFD6DB164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import t from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...l})=>{return t.createElement(p,{...l,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 C}from"react-native-svg";var f=(e)=>{return o.createElement(n,{...e},o.createElement(C,{d:"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H5C3.89543 21 3 20.1046 3 19V16C3 15.4477 3.44772 15 4 15Z",fill:"currentColor"}),o.createElement(C,{d:"M20 15C20.5523 15 21 15.4477 21 16V19C21 20.1046 20.1046 21 19 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z",fill:"currentColor"}),o.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 6.75C14.3472 6.75 16.25 8.65279 16.25 11C16.25 12.1349 15.662 13.2422 15.0371 14.1182C14.3967 15.0158 13.632 15.7874 13.1133 16.2695C12.4814 16.8566 11.5186 16.8566 10.8867 16.2695C10.368 15.7874 9.60326 15.0158 8.96289 14.1182C8.338 13.2422 7.75 12.1349 7.75 11C7.75 8.65279 9.65279 6.75 12 6.75ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10Z",fill:"currentColor"}),o.createElement(C,{d:"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V5C3 3.89543 3.89543 3 5 3H8Z",fill:"currentColor"}),o.createElement(C,{d:"M19 3C20.1046 3 21 3.89543 21 5V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H19Z",fill:"currentColor"}))},P=f;export{P as default,f as IconPinFocus};
2
+
3
+ //# debugId=7EB777C37508652764756E2164756E21
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconPinFocus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 15C4.55228 15 5 15.4477 5 16V19H8C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21H5C3.89543 21 3 20.1046 3 19V16C3 15.4477 3.44772 15 4 15Z\" fill=\"currentColor\"/><Path d=\"M20 15C20.5523 15 21 15.4477 21 16V19C21 20.1046 20.1046 21 19 21H16C15.4477 21 15 20.5523 15 20C15 19.4477 15.4477 19 16 19H19V16C19 15.4477 19.4477 15 20 15Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 6.75C14.3472 6.75 16.25 8.65279 16.25 11C16.25 12.1349 15.662 13.2422 15.0371 14.1182C14.3967 15.0158 13.632 15.7874 13.1133 16.2695C12.4814 16.8566 11.5186 16.8566 10.8867 16.2695C10.368 15.7874 9.60326 15.0158 8.96289 14.1182C8.338 13.2422 7.75 12.1349 7.75 11C7.75 8.65279 9.65279 6.75 12 6.75ZM12 10C11.4477 10 11 10.4477 11 11C11 11.5523 11.4477 12 12 12C12.5523 12 13 11.5523 13 11C13 10.4477 12.5523 10 12 10Z\" fill=\"currentColor\"/><Path d=\"M8 3C8.55228 3 9 3.44772 9 4C9 4.55228 8.55228 5 8 5H5V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V5C3 3.89543 3.89543 3 5 3H8Z\" fill=\"currentColor\"/><Path d=\"M19 3C20.1046 3 21 3.89543 21 5V8C21 8.55228 20.5523 9 20 9C19.4477 9 19 8.55228 19 8V5H16C15.4477 5 15 4.55228 15 4C15 3.44772 15.4477 3 16 3H19Z\" 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,eAAS,yBAEF,IAAM,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAgtC,EAAhtC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uaAAua,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wIAAwI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,CAAI,GAG1sC",
9
+ "debugId": "7EB777C37508652764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPresentationAnalytics: FC<CentralIconBaseProps>;
4
+ export default IconPresentationAnalytics;
@@ -0,0 +1,3 @@
1
+ var V=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:c,getOwnPropertyDescriptor:M}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var Z,h,B=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var f=o?Z??=new WeakMap:h??=new WeakMap,i=f.get(r);if(i)return i}C=r!=null?V(y(r)):{};let l=o||!r||!r.__esModule?n(C,"default",{value:r,enumerable:!0}):C;for(let a of c(r))if(!u.call(l,a))n(l,a,{get:d.bind(r,a),enumerable:!0});if(e)f.set(r,l);return l},I=(r)=>{var o=(m??=new WeakMap).get(r),C;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!u.call(o,e))n(o,e,{get:d.bind(r,e),enumerable:!(C=M(r,e))||C.enumerable})}return m.set(r,o),o},m;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var P=(r,o)=>{for(var C in o)n(r,C,{get:o[C],enumerable:!0,configurable:!0,set:S.bind(o,C)})};var b={};P(b,{CentralIconBase:()=>s});module.exports=I(b);var v=B(require("react")),x=require("react-native-svg"),s=({children:r,size:o=24,...C})=>{return v.default.createElement(x.Svg,{...C,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 t=B(require("react"));var p=require("react-native-svg"),g=(r)=>{return t.default.createElement(s,{...r},t.default.createElement(p.Path,{d:"M7.00187 16C8.76117 16 10.3075 16.9096 11.1972 18.2793C11.6134 18.9202 11.5411 19.6544 11.1728 20.1865C10.8239 20.6905 10.23 21 9.58585 21H4.41788C3.77372 21 3.17982 20.6904 2.83097 20.1865C2.46264 19.6544 2.39032 18.9202 2.80656 18.2793C3.69631 16.9096 5.24254 16 7.00187 16Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0009 3C21.1054 3.00005 22.0009 3.89546 22.0009 5V18C22.0009 19.1045 21.1054 20 20.0009 20H13.3905C13.5896 19.0949 13.4598 18.0925 12.8739 17.1904C12.3619 16.4023 11.6917 15.7236 10.9101 15.1963C11.4395 14.4302 11.7509 13.5017 11.7509 12.5C11.7509 9.87665 9.62403 7.75014 7.00089 7.75C5.3208 7.75004 3.84537 8.62304 3.00089 9.93945V5C3.00089 3.89543 3.89632 3 5.00089 3H20.0009ZM15.0009 10C14.4486 10 14.0009 10.4477 14.0009 11V14C14.0009 14.5523 14.4486 15 15.0009 15C15.5531 15 16.0009 14.5523 16.0009 14V11C16.0009 10.4477 15.5531 10 15.0009 10ZM19.0009 7C18.4486 7 18.0009 7.44772 18.0009 8V14C18.0009 14.5523 18.4486 15 19.0009 15C19.5531 15 20.0009 14.5523 20.0009 14V8C20.0009 7.44774 19.5531 7.00005 19.0009 7Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M7.00089 9.75C8.51964 9.75005 9.75089 10.9812 9.75089 12.5C9.75089 14.0188 8.51964 15.25 7.00089 15.25C5.48211 15.25 4.25089 14.0188 4.25089 12.5C4.25089 10.9812 5.48211 9.75 7.00089 9.75Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=59A0864C9CF2808964756E2164756E21
@@ -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=\"M7.00187 16C8.76117 16 10.3075 16.9096 11.1972 18.2793C11.6134 18.9202 11.5411 19.6544 11.1728 20.1865C10.8239 20.6905 10.23 21 9.58585 21H4.41788C3.77372 21 3.17982 20.6904 2.83097 20.1865C2.46264 19.6544 2.39032 18.9202 2.80656 18.2793C3.69631 16.9096 5.24254 16 7.00187 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.0009 3C21.1054 3.00005 22.0009 3.89546 22.0009 5V18C22.0009 19.1045 21.1054 20 20.0009 20H13.3905C13.5896 19.0949 13.4598 18.0925 12.8739 17.1904C12.3619 16.4023 11.6917 15.7236 10.9101 15.1963C11.4395 14.4302 11.7509 13.5017 11.7509 12.5C11.7509 9.87665 9.62403 7.75014 7.00089 7.75C5.3208 7.75004 3.84537 8.62304 3.00089 9.93945V5C3.00089 3.89543 3.89632 3 5.00089 3H20.0009ZM15.0009 10C14.4486 10 14.0009 10.4477 14.0009 11V14C14.0009 14.5523 14.4486 15 15.0009 15C15.5531 15 16.0009 14.5523 16.0009 14V11C16.0009 10.4477 15.5531 10 15.0009 10ZM19.0009 7C18.4486 7 18.0009 7.44772 18.0009 8V14C18.0009 14.5523 18.4486 15 19.0009 15C19.5531 15 20.0009 14.5523 20.0009 14V8C20.0009 7.44774 19.5531 7.00005 19.0009 7Z\" fill=\"currentColor\"/><Path d=\"M7.00089 9.75C8.51964 9.75005 9.75089 10.9812 9.75089 12.5C9.75089 14.0188 8.51964 15.25 7.00089 15.25C5.48211 15.25 4.25089 14.0188 4.25089 12.5C4.25089 10.9812 5.48211 9.75 7.00089 9.75Z\" fill=\"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,wBAAq0C,EAAr0C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uRAAuR,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,otBAAotB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+LAA+L,KAAK,eAAc,CAAI,GAG/zC",
9
+ "debugId": "59A0864C9CF2808964756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import l from"react";import{Svg as p}from"react-native-svg";var n=({children:C,size:r=24,...t})=>{return l.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};import o from"react";import{Path as e}from"react-native-svg";var a=(C)=>{return o.createElement(n,{...C},o.createElement(e,{d:"M7.00187 16C8.76117 16 10.3075 16.9096 11.1972 18.2793C11.6134 18.9202 11.5411 19.6544 11.1728 20.1865C10.8239 20.6905 10.23 21 9.58585 21H4.41788C3.77372 21 3.17982 20.6904 2.83097 20.1865C2.46264 19.6544 2.39032 18.9202 2.80656 18.2793C3.69631 16.9096 5.24254 16 7.00187 16Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0009 3C21.1054 3.00005 22.0009 3.89546 22.0009 5V18C22.0009 19.1045 21.1054 20 20.0009 20H13.3905C13.5896 19.0949 13.4598 18.0925 12.8739 17.1904C12.3619 16.4023 11.6917 15.7236 10.9101 15.1963C11.4395 14.4302 11.7509 13.5017 11.7509 12.5C11.7509 9.87665 9.62403 7.75014 7.00089 7.75C5.3208 7.75004 3.84537 8.62304 3.00089 9.93945V5C3.00089 3.89543 3.89632 3 5.00089 3H20.0009ZM15.0009 10C14.4486 10 14.0009 10.4477 14.0009 11V14C14.0009 14.5523 14.4486 15 15.0009 15C15.5531 15 16.0009 14.5523 16.0009 14V11C16.0009 10.4477 15.5531 10 15.0009 10ZM19.0009 7C18.4486 7 18.0009 7.44772 18.0009 8V14C18.0009 14.5523 18.4486 15 19.0009 15C19.5531 15 20.0009 14.5523 20.0009 14V8C20.0009 7.44774 19.5531 7.00005 19.0009 7Z",fill:"currentColor"}),o.createElement(e,{d:"M7.00089 9.75C8.51964 9.75005 9.75089 10.9812 9.75089 12.5C9.75089 14.0188 8.51964 15.25 7.00089 15.25C5.48211 15.25 4.25089 14.0188 4.25089 12.5C4.25089 10.9812 5.48211 9.75 7.00089 9.75Z",fill:"currentColor"}))},v=a;export{v as default,a as IconPresentationAnalytics};
2
+
3
+ //# debugId=A8F7CE34B187EE0664756E2164756E21
@@ -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=\"M7.00187 16C8.76117 16 10.3075 16.9096 11.1972 18.2793C11.6134 18.9202 11.5411 19.6544 11.1728 20.1865C10.8239 20.6905 10.23 21 9.58585 21H4.41788C3.77372 21 3.17982 20.6904 2.83097 20.1865C2.46264 19.6544 2.39032 18.9202 2.80656 18.2793C3.69631 16.9096 5.24254 16 7.00187 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.0009 3C21.1054 3.00005 22.0009 3.89546 22.0009 5V18C22.0009 19.1045 21.1054 20 20.0009 20H13.3905C13.5896 19.0949 13.4598 18.0925 12.8739 17.1904C12.3619 16.4023 11.6917 15.7236 10.9101 15.1963C11.4395 14.4302 11.7509 13.5017 11.7509 12.5C11.7509 9.87665 9.62403 7.75014 7.00089 7.75C5.3208 7.75004 3.84537 8.62304 3.00089 9.93945V5C3.00089 3.89543 3.89632 3 5.00089 3H20.0009ZM15.0009 10C14.4486 10 14.0009 10.4477 14.0009 11V14C14.0009 14.5523 14.4486 15 15.0009 15C15.5531 15 16.0009 14.5523 16.0009 14V11C16.0009 10.4477 15.5531 10 15.0009 10ZM19.0009 7C18.4486 7 18.0009 7.44772 18.0009 8V14C18.0009 14.5523 18.4486 15 19.0009 15C19.5531 15 20.0009 14.5523 20.0009 14V8C20.0009 7.44774 19.5531 7.00005 19.0009 7Z\" fill=\"currentColor\"/><Path d=\"M7.00089 9.75C8.51964 9.75005 9.75089 10.9812 9.75089 12.5C9.75089 14.0188 8.51964 15.25 7.00089 15.25C5.48211 15.25 4.25089 14.0188 4.25089 12.5C4.25089 10.9812 5.48211 9.75 7.00089 9.75Z\" fill=\"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,gBAAq0C,EAAr0C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uRAAuR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,otBAAotB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+LAA+L,KAAK,eAAc,CAAI,GAG/zC",
9
+ "debugId": "A8F7CE34B187EE0664756E2164756E21",
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