@central-icons-react-native/round-filled-radius-1-stroke-2 1.1.281 → 1.1.282

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 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
@@ -1478,6 +1478,7 @@ Below is a complete list of available icons:
1478
1478
  - IconPeopleSparkles
1479
1479
  - IconPeopleNoise
1480
1480
  - IconPeopleIdCard2
1481
+ - IconPresentationAnalytics
1481
1482
 
1482
1483
  ### Photography & Video
1483
1484