@central-icons-react-native/round-filled-radius-1-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.49954 16C9.57131 16.0002 11.3465 17.2711 12.2398 19.0938C12.4697 19.5633 12.3882 20.058 12.1226 20.4199C11.8629 20.7737 11.4314 20.9999 10.9517 21H4.04739C3.56789 20.9999 3.13724 20.7734 2.87747 20.4199C2.61173 20.058 2.5293 19.5634 2.75931 19.0938C3.65269 17.2712 5.42772 16.0001 7.49954 16Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.4995 3C21.328 3 21.9995 3.67157 21.9995 4.5V18.5C21.9995 19.3284 21.328 20 20.4995 20H13.3472C13.4134 19.5668 13.3565 19.1021 13.1372 18.6543C12.3949 17.1401 11.1112 15.9229 9.52493 15.3525C10.4169 14.7182 11.0005 13.6779 11.0005 12.5C11.0005 10.6274 9.52907 9.09888 7.6802 9.00488L7.50052 9C5.56776 9.00028 4.00052 10.5672 4.00052 12.5C4.00052 13.6772 4.58211 14.7181 5.47317 15.3525C4.52265 15.6944 3.68134 16.2692 2.99954 17V4.5C2.99954 3.67174 3.67135 3.00028 4.49954 3H20.4995ZM14.7495 10.5C14.4736 10.5003 14.2495 10.724 14.2495 11V15C14.2495 15.276 14.4736 15.4997 14.7495 15.5C15.0257 15.5 15.2495 15.2761 15.2495 15V11C15.2495 10.7239 15.0257 10.5 14.7495 10.5ZM18.7495 7.5C18.4736 7.50028 18.2495 7.72403 18.2495 8V15C18.2495 15.276 18.4736 15.4997 18.7495 15.5C19.0257 15.5 19.2495 15.2761 19.2495 15V8C19.2495 7.72386 19.0257 7.5 18.7495 7.5Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M7.50052 10C8.88102 10.0002 10.0005 11.1194 10.0005 12.5C10.0005 13.8806 8.88102 14.9998 7.50052 15C6.11981 15 5.00052 13.8807 5.00052 12.5C5.00052 11.1193 6.11981 10 7.50052 10Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=5E088E928C9A87E864756E2164756E21
@@ -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.49954 16C9.57131 16.0002 11.3465 17.2711 12.2398 19.0938C12.4697 19.5633 12.3882 20.058 12.1226 20.4199C11.8629 20.7737 11.4314 20.9999 10.9517 21H4.04739C3.56789 20.9999 3.13724 20.7734 2.87747 20.4199C2.61173 20.058 2.5293 19.5634 2.75931 19.0938C3.65269 17.2712 5.42772 16.0001 7.49954 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.4995 3C21.328 3 21.9995 3.67157 21.9995 4.5V18.5C21.9995 19.3284 21.328 20 20.4995 20H13.3472C13.4134 19.5668 13.3565 19.1021 13.1372 18.6543C12.3949 17.1401 11.1112 15.9229 9.52493 15.3525C10.4169 14.7182 11.0005 13.6779 11.0005 12.5C11.0005 10.6274 9.52907 9.09888 7.6802 9.00488L7.50052 9C5.56776 9.00028 4.00052 10.5672 4.00052 12.5C4.00052 13.6772 4.58211 14.7181 5.47317 15.3525C4.52265 15.6944 3.68134 16.2692 2.99954 17V4.5C2.99954 3.67174 3.67135 3.00028 4.49954 3H20.4995ZM14.7495 10.5C14.4736 10.5003 14.2495 10.724 14.2495 11V15C14.2495 15.276 14.4736 15.4997 14.7495 15.5C15.0257 15.5 15.2495 15.2761 15.2495 15V11C15.2495 10.7239 15.0257 10.5 14.7495 10.5ZM18.7495 7.5C18.4736 7.50028 18.2495 7.72403 18.2495 8V15C18.2495 15.276 18.4736 15.4997 18.7495 15.5C19.0257 15.5 19.2495 15.2761 19.2495 15V8C19.2495 7.72386 19.0257 7.5 18.7495 7.5Z\" fill=\"currentColor\"/><Path d=\"M7.50052 10C8.88102 10.0002 10.0005 11.1194 10.0005 12.5C10.0005 13.8806 8.88102 14.9998 7.50052 15C6.11981 15 5.00052 13.8807 5.00052 12.5C5.00052 11.1193 6.11981 10 7.50052 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,wBAAu9C,EAAv9C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,0SAA0S,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,61BAA61B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qLAAqL,KAAK,eAAc,CAAI,GAGj9C",
9
+ "debugId": "5E088E928C9A87E864756E2164756E21",
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.49954 16C9.57131 16.0002 11.3465 17.2711 12.2398 19.0938C12.4697 19.5633 12.3882 20.058 12.1226 20.4199C11.8629 20.7737 11.4314 20.9999 10.9517 21H4.04739C3.56789 20.9999 3.13724 20.7734 2.87747 20.4199C2.61173 20.058 2.5293 19.5634 2.75931 19.0938C3.65269 17.2712 5.42772 16.0001 7.49954 16Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.4995 3C21.328 3 21.9995 3.67157 21.9995 4.5V18.5C21.9995 19.3284 21.328 20 20.4995 20H13.3472C13.4134 19.5668 13.3565 19.1021 13.1372 18.6543C12.3949 17.1401 11.1112 15.9229 9.52493 15.3525C10.4169 14.7182 11.0005 13.6779 11.0005 12.5C11.0005 10.6274 9.52907 9.09888 7.6802 9.00488L7.50052 9C5.56776 9.00028 4.00052 10.5672 4.00052 12.5C4.00052 13.6772 4.58211 14.7181 5.47317 15.3525C4.52265 15.6944 3.68134 16.2692 2.99954 17V4.5C2.99954 3.67174 3.67135 3.00028 4.49954 3H20.4995ZM14.7495 10.5C14.4736 10.5003 14.2495 10.724 14.2495 11V15C14.2495 15.276 14.4736 15.4997 14.7495 15.5C15.0257 15.5 15.2495 15.2761 15.2495 15V11C15.2495 10.7239 15.0257 10.5 14.7495 10.5ZM18.7495 7.5C18.4736 7.50028 18.2495 7.72403 18.2495 8V15C18.2495 15.276 18.4736 15.4997 18.7495 15.5C19.0257 15.5 19.2495 15.2761 19.2495 15V8C19.2495 7.72386 19.0257 7.5 18.7495 7.5Z",fill:"currentColor"}),o.createElement(e,{d:"M7.50052 10C8.88102 10.0002 10.0005 11.1194 10.0005 12.5C10.0005 13.8806 8.88102 14.9998 7.50052 15C6.11981 15 5.00052 13.8807 5.00052 12.5C5.00052 11.1193 6.11981 10 7.50052 10Z",fill:"currentColor"}))},v=a;export{v as default,a as IconPresentationAnalytics};
2
+
3
+ //# debugId=E43C53B0810BE23764756E2164756E21
@@ -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.49954 16C9.57131 16.0002 11.3465 17.2711 12.2398 19.0938C12.4697 19.5633 12.3882 20.058 12.1226 20.4199C11.8629 20.7737 11.4314 20.9999 10.9517 21H4.04739C3.56789 20.9999 3.13724 20.7734 2.87747 20.4199C2.61173 20.058 2.5293 19.5634 2.75931 19.0938C3.65269 17.2712 5.42772 16.0001 7.49954 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.4995 3C21.328 3 21.9995 3.67157 21.9995 4.5V18.5C21.9995 19.3284 21.328 20 20.4995 20H13.3472C13.4134 19.5668 13.3565 19.1021 13.1372 18.6543C12.3949 17.1401 11.1112 15.9229 9.52493 15.3525C10.4169 14.7182 11.0005 13.6779 11.0005 12.5C11.0005 10.6274 9.52907 9.09888 7.6802 9.00488L7.50052 9C5.56776 9.00028 4.00052 10.5672 4.00052 12.5C4.00052 13.6772 4.58211 14.7181 5.47317 15.3525C4.52265 15.6944 3.68134 16.2692 2.99954 17V4.5C2.99954 3.67174 3.67135 3.00028 4.49954 3H20.4995ZM14.7495 10.5C14.4736 10.5003 14.2495 10.724 14.2495 11V15C14.2495 15.276 14.4736 15.4997 14.7495 15.5C15.0257 15.5 15.2495 15.2761 15.2495 15V11C15.2495 10.7239 15.0257 10.5 14.7495 10.5ZM18.7495 7.5C18.4736 7.50028 18.2495 7.72403 18.2495 8V15C18.2495 15.276 18.4736 15.4997 18.7495 15.5C19.0257 15.5 19.2495 15.2761 19.2495 15V8C19.2495 7.72386 19.0257 7.5 18.7495 7.5Z\" fill=\"currentColor\"/><Path d=\"M7.50052 10C8.88102 10.0002 10.0005 11.1194 10.0005 12.5C10.0005 13.8806 8.88102 14.9998 7.50052 15C6.11981 15 5.00052 13.8807 5.00052 12.5C5.00052 11.1193 6.11981 10 7.50052 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,gBAAu9C,EAAv9C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,0SAA0S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,61BAA61B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qLAAqL,KAAK,eAAc,CAAI,GAGj9C",
9
+ "debugId": "E43C53B0810BE23764756E2164756E21",
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