@central-icons-react-native/round-filled-radius-2-stroke-1 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.49713 16C9.33244 16 10.9377 16.9982 11.8995 18.4932C12.2806 19.0856 12.2071 19.7414 11.8653 20.2256C11.5338 20.6949 10.9586 20.9999 10.3184 21H4.67682C4.03653 21 3.46043 20.695 3.12897 20.2256C2.78717 19.7414 2.71468 19.0856 3.09576 18.4932C4.05748 16.9984 5.66204 16.0001 7.49713 16Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.4981 3C20.8787 3.00008 21.9981 4.11934 21.9981 5.5V17.5C21.9981 18.8807 20.8787 19.9999 19.4981 20H13.0635C13.243 19.3524 13.1703 18.6206 12.7403 17.9521C11.9785 16.7681 10.8565 15.8331 9.52252 15.3535C10.4149 14.7192 10.9981 13.6782 10.9981 12.5C10.9981 10.5671 9.43103 9.00008 7.49811 9C5.5653 9.00019 3.99811 10.5671 3.99811 12.5C3.99811 13.6774 4.5804 14.7181 5.47174 15.3525C4.52143 15.6943 3.67945 16.2684 2.99811 16.998V5.5C2.99811 4.11937 4.11751 3.00013 5.49811 3H19.4981ZM14.7481 10.5C14.4721 10.5001 14.2481 10.7239 14.2481 11V15C14.2481 15.2761 14.4721 15.4999 14.7481 15.5C15.0242 15.4999 15.2481 15.2761 15.2481 15V11C15.2481 10.7239 15.0242 10.5001 14.7481 10.5ZM18.7481 7.5C18.4721 7.50013 18.2481 7.72394 18.2481 8V15C18.2481 15.2761 18.4721 15.4999 18.7481 15.5C19.0242 15.4999 19.2481 15.2761 19.2481 15V8C19.2481 7.72391 19.0242 7.50008 18.7481 7.5Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M7.49811 10C8.87882 10 9.99811 11.1193 9.99811 12.5C9.99811 13.8807 8.87882 15 7.49811 15C6.11744 15 4.99811 13.8807 4.99811 12.5C4.99811 11.1193 6.11744 10 7.49811 10Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=44E5E6DAAE697E2664756E2164756E21
@@ -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.49713 16C9.33244 16 10.9377 16.9982 11.8995 18.4932C12.2806 19.0856 12.2071 19.7414 11.8653 20.2256C11.5338 20.6949 10.9586 20.9999 10.3184 21H4.67682C4.03653 21 3.46043 20.695 3.12897 20.2256C2.78717 19.7414 2.71468 19.0856 3.09576 18.4932C4.05748 16.9984 5.66204 16.0001 7.49713 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.4981 3C20.8787 3.00008 21.9981 4.11934 21.9981 5.5V17.5C21.9981 18.8807 20.8787 19.9999 19.4981 20H13.0635C13.243 19.3524 13.1703 18.6206 12.7403 17.9521C11.9785 16.7681 10.8565 15.8331 9.52252 15.3535C10.4149 14.7192 10.9981 13.6782 10.9981 12.5C10.9981 10.5671 9.43103 9.00008 7.49811 9C5.5653 9.00019 3.99811 10.5671 3.99811 12.5C3.99811 13.6774 4.5804 14.7181 5.47174 15.3525C4.52143 15.6943 3.67945 16.2684 2.99811 16.998V5.5C2.99811 4.11937 4.11751 3.00013 5.49811 3H19.4981ZM14.7481 10.5C14.4721 10.5001 14.2481 10.7239 14.2481 11V15C14.2481 15.2761 14.4721 15.4999 14.7481 15.5C15.0242 15.4999 15.2481 15.2761 15.2481 15V11C15.2481 10.7239 15.0242 10.5001 14.7481 10.5ZM18.7481 7.5C18.4721 7.50013 18.2481 7.72394 18.2481 8V15C18.2481 15.2761 18.4721 15.4999 18.7481 15.5C19.0242 15.4999 19.2481 15.2761 19.2481 15V8C19.2481 7.72391 19.0242 7.50008 18.7481 7.5Z\" fill=\"currentColor\"/><Path d=\"M7.49811 10C8.87882 10 9.99811 11.1193 9.99811 12.5C9.99811 13.8807 8.87882 15 7.49811 15C6.11744 15 4.99811 13.8807 4.99811 12.5C4.99811 11.1193 6.11744 10 7.49811 10Z\" 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,wBAAo9C,EAAp9C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kSAAkS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,42BAA42B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,CAAI,GAG98C",
9
+ "debugId": "44E5E6DAAE697E2664756E2164756E21",
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.49713 16C9.33244 16 10.9377 16.9982 11.8995 18.4932C12.2806 19.0856 12.2071 19.7414 11.8653 20.2256C11.5338 20.6949 10.9586 20.9999 10.3184 21H4.67682C4.03653 21 3.46043 20.695 3.12897 20.2256C2.78717 19.7414 2.71468 19.0856 3.09576 18.4932C4.05748 16.9984 5.66204 16.0001 7.49713 16Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.4981 3C20.8787 3.00008 21.9981 4.11934 21.9981 5.5V17.5C21.9981 18.8807 20.8787 19.9999 19.4981 20H13.0635C13.243 19.3524 13.1703 18.6206 12.7403 17.9521C11.9785 16.7681 10.8565 15.8331 9.52252 15.3535C10.4149 14.7192 10.9981 13.6782 10.9981 12.5C10.9981 10.5671 9.43103 9.00008 7.49811 9C5.5653 9.00019 3.99811 10.5671 3.99811 12.5C3.99811 13.6774 4.5804 14.7181 5.47174 15.3525C4.52143 15.6943 3.67945 16.2684 2.99811 16.998V5.5C2.99811 4.11937 4.11751 3.00013 5.49811 3H19.4981ZM14.7481 10.5C14.4721 10.5001 14.2481 10.7239 14.2481 11V15C14.2481 15.2761 14.4721 15.4999 14.7481 15.5C15.0242 15.4999 15.2481 15.2761 15.2481 15V11C15.2481 10.7239 15.0242 10.5001 14.7481 10.5ZM18.7481 7.5C18.4721 7.50013 18.2481 7.72394 18.2481 8V15C18.2481 15.2761 18.4721 15.4999 18.7481 15.5C19.0242 15.4999 19.2481 15.2761 19.2481 15V8C19.2481 7.72391 19.0242 7.50008 18.7481 7.5Z",fill:"currentColor"}),o.createElement(e,{d:"M7.49811 10C8.87882 10 9.99811 11.1193 9.99811 12.5C9.99811 13.8807 8.87882 15 7.49811 15C6.11744 15 4.99811 13.8807 4.99811 12.5C4.99811 11.1193 6.11744 10 7.49811 10Z",fill:"currentColor"}))},v=a;export{v as default,a as IconPresentationAnalytics};
2
+
3
+ //# debugId=646ECA77A86529D864756E2164756E21
@@ -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.49713 16C9.33244 16 10.9377 16.9982 11.8995 18.4932C12.2806 19.0856 12.2071 19.7414 11.8653 20.2256C11.5338 20.6949 10.9586 20.9999 10.3184 21H4.67682C4.03653 21 3.46043 20.695 3.12897 20.2256C2.78717 19.7414 2.71468 19.0856 3.09576 18.4932C4.05748 16.9984 5.66204 16.0001 7.49713 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.4981 3C20.8787 3.00008 21.9981 4.11934 21.9981 5.5V17.5C21.9981 18.8807 20.8787 19.9999 19.4981 20H13.0635C13.243 19.3524 13.1703 18.6206 12.7403 17.9521C11.9785 16.7681 10.8565 15.8331 9.52252 15.3535C10.4149 14.7192 10.9981 13.6782 10.9981 12.5C10.9981 10.5671 9.43103 9.00008 7.49811 9C5.5653 9.00019 3.99811 10.5671 3.99811 12.5C3.99811 13.6774 4.5804 14.7181 5.47174 15.3525C4.52143 15.6943 3.67945 16.2684 2.99811 16.998V5.5C2.99811 4.11937 4.11751 3.00013 5.49811 3H19.4981ZM14.7481 10.5C14.4721 10.5001 14.2481 10.7239 14.2481 11V15C14.2481 15.2761 14.4721 15.4999 14.7481 15.5C15.0242 15.4999 15.2481 15.2761 15.2481 15V11C15.2481 10.7239 15.0242 10.5001 14.7481 10.5ZM18.7481 7.5C18.4721 7.50013 18.2481 7.72394 18.2481 8V15C18.2481 15.2761 18.4721 15.4999 18.7481 15.5C19.0242 15.4999 19.2481 15.2761 19.2481 15V8C19.2481 7.72391 19.0242 7.50008 18.7481 7.5Z\" fill=\"currentColor\"/><Path d=\"M7.49811 10C8.87882 10 9.99811 11.1193 9.99811 12.5C9.99811 13.8807 8.87882 15 7.49811 15C6.11744 15 4.99811 13.8807 4.99811 12.5C4.99811 11.1193 6.11744 10 7.49811 10Z\" 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,gBAAo9C,EAAp9C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kSAAkS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,42BAA42B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,CAAI,GAG98C",
9
+ "debugId": "646ECA77A86529D864756E2164756E21",
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