@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.280 → 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 IconGrid: FC<CentralIconBaseProps>;
4
+ export default IconGrid;
@@ -0,0 +1,3 @@
1
+ var P=Object.create;var{getPrototypeOf:g,defineProperty:n,getOwnPropertyNames:V,getOwnPropertyDescriptor:h}=Object,c=Object.prototype.hasOwnProperty;function f(r){return this[r]}var y,F,i=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?y??=new WeakMap:F??=new WeakMap,s=m.get(r);if(s)return s}e=r!=null?P(g(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of V(r))if(!c.call(C,p))n(C,p,{get:f.bind(r,p),enumerable:!0});if(t)m.set(r,C);return C},u=(r)=>{var o=(H??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of V(r))if(!c.call(o,t))n(o,t,{get:f.bind(r,t),enumerable:!(e=h(r,t))||e.enumerable})}return H.set(r,o),o},H;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var w={};d(w,{CentralIconBase:()=>l});module.exports=u(w);var B=i(require("react")),I=require("react-native-svg"),l=({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 M={};d(M,{default:()=>Z,IconGrid:()=>x});module.exports=u(M);var a=i(require("react"));var v=require("react-native-svg"),x=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(v.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.5 3C16.0523 3 16.5 3.44772 16.5 4V7.5H20C20.5523 7.5 21 7.94772 21 8.5C21 9.05228 20.5523 9.5 20 9.5H16.5V14.5H20C20.5523 14.5 21 14.9477 21 15.5C21 16.0523 20.5523 16.5 20 16.5H16.5V20C16.5 20.5523 16.0523 21 15.5 21C14.9477 21 14.5 20.5523 14.5 20V16.5H9.5V20C9.5 20.5523 9.05228 21 8.5 21C7.94772 21 7.5 20.5523 7.5 20V16.5H4C3.44772 16.5 3 16.0523 3 15.5C3 14.9477 3.44772 14.5 4 14.5H7.5V9.5H4C3.44772 9.5 3 9.05228 3 8.5C3 7.94772 3.44772 7.5 4 7.5H7.5V4C7.5 3.44772 7.94772 3 8.5 3C9.05228 3 9.5 3.44772 9.5 4V7.5H14.5V4C14.5 3.44772 14.9477 3 15.5 3ZM9.5 14.5H14.5V9.5H9.5V14.5Z",fill:"currentColor"}))},Z=x;
2
+
3
+ //# debugId=EB3A1A7D287D8E4864756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconGrid/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 IconGrid: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.5 3C16.0523 3 16.5 3.44772 16.5 4V7.5H20C20.5523 7.5 21 7.94772 21 8.5C21 9.05228 20.5523 9.5 20 9.5H16.5V14.5H20C20.5523 14.5 21 14.9477 21 15.5C21 16.0523 20.5523 16.5 20 16.5H16.5V20C16.5 20.5523 16.0523 21 15.5 21C14.9477 21 14.5 20.5523 14.5 20V16.5H9.5V20C9.5 20.5523 9.05228 21 8.5 21C7.94772 21 7.5 20.5523 7.5 20V16.5H4C3.44772 16.5 3 16.0523 3 15.5C3 14.9477 3.44772 14.5 4 14.5H7.5V9.5H4C3.44772 9.5 3 9.05228 3 8.5C3 7.94772 3.44772 7.5 4 7.5H7.5V4C7.5 3.44772 7.94772 3 8.5 3C9.05228 3 9.5 3.44772 9.5 4V7.5H14.5V4C14.5 3.44772 14.9477 3 15.5 3ZM9.5 14.5H14.5V9.5H9.5V14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconGrid;\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,oECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqC,CAAC,IAAU,CAC3D,OAAO,wBAAkrB,EAAlrB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ilBAAilB,KAAK,eAAc,CAAI,GAG5qB",
9
+ "debugId": "EB3A1A7D287D8E4864756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return C.createElement(p,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.5 3C16.0523 3 16.5 3.44772 16.5 4V7.5H20C20.5523 7.5 21 7.94772 21 8.5C21 9.05228 20.5523 9.5 20 9.5H16.5V14.5H20C20.5523 14.5 21 14.9477 21 15.5C21 16.0523 20.5523 16.5 20 16.5H16.5V20C16.5 20.5523 16.0523 21 15.5 21C14.9477 21 14.5 20.5523 14.5 20V16.5H9.5V20C9.5 20.5523 9.05228 21 8.5 21C7.94772 21 7.5 20.5523 7.5 20V16.5H4C3.44772 16.5 3 16.0523 3 15.5C3 14.9477 3.44772 14.5 4 14.5H7.5V9.5H4C3.44772 9.5 3 9.05228 3 8.5C3 7.94772 3.44772 7.5 4 7.5H7.5V4C7.5 3.44772 7.94772 3 8.5 3C9.05228 3 9.5 3.44772 9.5 4V7.5H14.5V4C14.5 3.44772 14.9477 3 15.5 3ZM9.5 14.5H14.5V9.5H9.5V14.5Z",fill:"currentColor"}))},I=a;export{I as default,a as IconGrid};
2
+
3
+ //# debugId=3F6399FB84FDA9FA64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconGrid/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 IconGrid: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.5 3C16.0523 3 16.5 3.44772 16.5 4V7.5H20C20.5523 7.5 21 7.94772 21 8.5C21 9.05228 20.5523 9.5 20 9.5H16.5V14.5H20C20.5523 14.5 21 14.9477 21 15.5C21 16.0523 20.5523 16.5 20 16.5H16.5V20C16.5 20.5523 16.0523 21 15.5 21C14.9477 21 14.5 20.5523 14.5 20V16.5H9.5V20C9.5 20.5523 9.05228 21 8.5 21C7.94772 21 7.5 20.5523 7.5 20V16.5H4C3.44772 16.5 3 16.0523 3 15.5C3 14.9477 3.44772 14.5 4 14.5H7.5V9.5H4C3.44772 9.5 3 9.05228 3 8.5C3 7.94772 3.44772 7.5 4 7.5H7.5V4C7.5 3.44772 7.94772 3 8.5 3C9.05228 3 9.5 3.44772 9.5 4V7.5H14.5V4C14.5 3.44772 14.9477 3 15.5 3ZM9.5 14.5H14.5V9.5H9.5V14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconGrid;\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,EAAqC,CAAC,IAAU,CAC3D,OAAO,gBAAkrB,EAAlrB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ilBAAilB,KAAK,eAAc,CAAI,GAG5qB",
9
+ "debugId": "3F6399FB84FDA9FA64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconGridBox: FC<CentralIconBaseProps>;
4
+ export default IconGridBox;
@@ -0,0 +1,3 @@
1
+ var a=Object.create;var{getPrototypeOf:P,defineProperty:C,getOwnPropertyNames:m,getOwnPropertyDescriptor:g}=Object,d=Object.prototype.hasOwnProperty;function s(r){return this[r]}var v,h,c=(r,o,l)=>{var e=r!=null&&typeof r==="object";if(e){var V=o?v??=new WeakMap:h??=new WeakMap,i=V.get(r);if(i)return i}l=r!=null?a(P(r)):{};let p=o||!r||!r.__esModule?C(l,"default",{value:r,enumerable:!0}):l;for(let f of m(r))if(!d.call(p,f))C(p,f,{get:s.bind(r,f),enumerable:!0});if(e)V.set(r,p);return p},B=(r)=>{var o=(u??=new WeakMap).get(r),l;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of m(r))if(!d.call(o,e))C(o,e,{get:s.bind(r,e),enumerable:!(l=g(r,e))||l.enumerable})}return u.set(r,o),o},u;var y=(r)=>r;function F(r,o){this[r]=y.bind(null,o)}var M=(r,o)=>{for(var l in o)C(r,l,{get:o[l],enumerable:!0,configurable:!0,set:F.bind(o,l)})};var S={};M(S,{CentralIconBase:()=>H});module.exports=B(S);var Z=c(require("react")),x=require("react-native-svg"),H=({children:r,size:o=24,...l})=>{return Z.default.createElement(x.Svg,{...l,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};M(b,{default:()=>w,IconGridBox:()=>I});module.exports=B(b);var n=c(require("react"));var t=require("react-native-svg"),I=(r)=>{return n.default.createElement(H,{...r},n.default.createElement(t.Path,{d:"M7.66016 21H4C3.44772 21 3 20.5523 3 20V16.3398H7.66016V21Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14.3398 21H9.66016V16.3398H14.3398V21Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21 20C21 20.5523 20.5523 21 20 21H16.3398V16.3398H21V20Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M7.66016 14.3398H3V9.66016H7.66016V14.3398Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14.3398 14.3398H9.66016V9.66016H14.3398V14.3398Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21 14.3398H16.3398V9.66016H21V14.3398Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M7.66016 7.66016H3V4C3 3.44772 3.44772 3 4 3H7.66016V7.66016Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14.3398 7.66016H9.66016V3H14.3398V7.66016Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M20 3C20.5523 3 21 3.44772 21 4V7.66016H16.3398V3H20Z",fill:"currentColor"}))},w=I;
2
+
3
+ //# debugId=6809789713E1CEF364756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconGridBox/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 IconGridBox: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7.66016 21H4C3.44772 21 3 20.5523 3 20V16.3398H7.66016V21Z\" fill=\"currentColor\"/><Path d=\"M14.3398 21H9.66016V16.3398H14.3398V21Z\" fill=\"currentColor\"/><Path d=\"M21 20C21 20.5523 20.5523 21 20 21H16.3398V16.3398H21V20Z\" fill=\"currentColor\"/><Path d=\"M7.66016 14.3398H3V9.66016H7.66016V14.3398Z\" fill=\"currentColor\"/><Path d=\"M14.3398 14.3398H9.66016V9.66016H14.3398V14.3398Z\" fill=\"currentColor\"/><Path d=\"M21 14.3398H16.3398V9.66016H21V14.3398Z\" fill=\"currentColor\"/><Path d=\"M7.66016 7.66016H3V4C3 3.44772 3.44772 3 4 3H7.66016V7.66016Z\" fill=\"currentColor\"/><Path d=\"M14.3398 7.66016H9.66016V3H14.3398V7.66016Z\" fill=\"currentColor\"/><Path d=\"M20 3C20.5523 3 21 3.44772 21 4V7.66016H16.3398V3H20Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconGridBox;\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,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAyvB,EAAzvB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8DAA8D,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4DAA4D,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8CAA8C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oDAAoD,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gEAAgE,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8CAA8C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wDAAwD,KAAK,eAAc,CAAI,GAGnvB",
9
+ "debugId": "6809789713E1CEF364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:l=24,...e})=>{return C.createElement(p,{...e,width:typeof l==="number"?`${l}px`:l,height:typeof l==="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Path as o}from"react-native-svg";var f=(n)=>{return r.createElement(t,{...n},r.createElement(o,{d:"M7.66016 21H4C3.44772 21 3 20.5523 3 20V16.3398H7.66016V21Z",fill:"currentColor"}),r.createElement(o,{d:"M14.3398 21H9.66016V16.3398H14.3398V21Z",fill:"currentColor"}),r.createElement(o,{d:"M21 20C21 20.5523 20.5523 21 20 21H16.3398V16.3398H21V20Z",fill:"currentColor"}),r.createElement(o,{d:"M7.66016 14.3398H3V9.66016H7.66016V14.3398Z",fill:"currentColor"}),r.createElement(o,{d:"M14.3398 14.3398H9.66016V9.66016H14.3398V14.3398Z",fill:"currentColor"}),r.createElement(o,{d:"M21 14.3398H16.3398V9.66016H21V14.3398Z",fill:"currentColor"}),r.createElement(o,{d:"M7.66016 7.66016H3V4C3 3.44772 3.44772 3 4 3H7.66016V7.66016Z",fill:"currentColor"}),r.createElement(o,{d:"M14.3398 7.66016H9.66016V3H14.3398V7.66016Z",fill:"currentColor"}),r.createElement(o,{d:"M20 3C20.5523 3 21 3.44772 21 4V7.66016H16.3398V3H20Z",fill:"currentColor"}))},Z=f;export{Z as default,f as IconGridBox};
2
+
3
+ //# debugId=4F805F8989977C2C64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconGridBox/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 IconGridBox: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7.66016 21H4C3.44772 21 3 20.5523 3 20V16.3398H7.66016V21Z\" fill=\"currentColor\"/><Path d=\"M14.3398 21H9.66016V16.3398H14.3398V21Z\" fill=\"currentColor\"/><Path d=\"M21 20C21 20.5523 20.5523 21 20 21H16.3398V16.3398H21V20Z\" fill=\"currentColor\"/><Path d=\"M7.66016 14.3398H3V9.66016H7.66016V14.3398Z\" fill=\"currentColor\"/><Path d=\"M14.3398 14.3398H9.66016V9.66016H14.3398V14.3398Z\" fill=\"currentColor\"/><Path d=\"M21 14.3398H16.3398V9.66016H21V14.3398Z\" fill=\"currentColor\"/><Path d=\"M7.66016 7.66016H3V4C3 3.44772 3.44772 3 4 3H7.66016V7.66016Z\" fill=\"currentColor\"/><Path d=\"M14.3398 7.66016H9.66016V3H14.3398V7.66016Z\" fill=\"currentColor\"/><Path d=\"M20 3C20.5523 3 21 3.44772 21 4V7.66016H16.3398V3H20Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconGridBox;\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,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAyvB,EAAzvB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8DAA8D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4DAA4D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8CAA8C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oDAAoD,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gEAAgE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8CAA8C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wDAAwD,KAAK,eAAc,CAAI,GAGnvB",
9
+ "debugId": "4F805F8989977C2C64756E2164756E21",
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:"M6.99914 16C9.33028 16 11.2869 17.5947 11.8419 19.751C11.9188 20.0502 11.8525 20.3681 11.6632 20.6123C11.4738 20.8566 11.1823 21 10.8732 21H3.12512C2.81602 21 2.52446 20.8566 2.33508 20.6123C2.14583 20.3681 2.07946 20.0502 2.15637 19.751C2.71136 17.5947 4.66803 16.0001 6.99914 16Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.9982 3C21.5504 3 21.9982 3.44772 21.9982 4V19C21.9982 19.5523 21.5504 20 20.9982 20H13.8732C13.8733 19.7508 13.8429 19.4999 13.7794 19.2529C13.3474 17.5745 12.3078 16.1386 10.9093 15.1943C11.4378 14.4286 11.7482 13.5007 11.7482 12.5C11.7482 9.87673 9.62141 7.75013 6.99817 7.75C5.31821 7.75013 3.84266 8.62305 2.99817 9.93945V4C2.99817 3.44776 3.44594 3.00007 3.99817 3H20.9982ZM14.9982 10C14.4459 10.0001 13.9982 10.4478 13.9982 11V14C13.9982 14.5522 14.4459 14.9999 14.9982 15C15.5505 15 15.9982 14.5523 15.9982 14V11C15.9982 10.4477 15.5505 10 14.9982 10ZM18.9982 7C18.4459 7.00007 17.9982 7.44776 17.9982 8V14C17.9982 14.5522 18.4459 14.9999 18.9982 15C19.5504 15 19.9982 14.5523 19.9982 14V8C19.9982 7.44772 19.5504 7 18.9982 7Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M6.99817 9.75C8.51695 9.75 9.74817 10.9812 9.74817 12.5C9.74817 14.0188 8.51695 15.25 6.99817 15.25C5.47944 15.2499 4.24817 14.0187 4.24817 12.5C4.24817 10.9813 5.47944 9.75007 6.99817 9.75Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=7180D804340C17BD64756E2164756E21
@@ -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=\"M6.99914 16C9.33028 16 11.2869 17.5947 11.8419 19.751C11.9188 20.0502 11.8525 20.3681 11.6632 20.6123C11.4738 20.8566 11.1823 21 10.8732 21H3.12512C2.81602 21 2.52446 20.8566 2.33508 20.6123C2.14583 20.3681 2.07946 20.0502 2.15637 19.751C2.71136 17.5947 4.66803 16.0001 6.99914 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.9982 3C21.5504 3 21.9982 3.44772 21.9982 4V19C21.9982 19.5523 21.5504 20 20.9982 20H13.8732C13.8733 19.7508 13.8429 19.4999 13.7794 19.2529C13.3474 17.5745 12.3078 16.1386 10.9093 15.1943C11.4378 14.4286 11.7482 13.5007 11.7482 12.5C11.7482 9.87673 9.62141 7.75013 6.99817 7.75C5.31821 7.75013 3.84266 8.62305 2.99817 9.93945V4C2.99817 3.44776 3.44594 3.00007 3.99817 3H20.9982ZM14.9982 10C14.4459 10.0001 13.9982 10.4478 13.9982 11V14C13.9982 14.5522 14.4459 14.9999 14.9982 15C15.5505 15 15.9982 14.5523 15.9982 14V11C15.9982 10.4477 15.5505 10 14.9982 10ZM18.9982 7C18.4459 7.00007 17.9982 7.44776 17.9982 8V14C17.9982 14.5522 18.4459 14.9999 18.9982 15C19.5504 15 19.9982 14.5523 19.9982 14V8C19.9982 7.44772 19.5504 7 18.9982 7Z\" fill=\"currentColor\"/><Path d=\"M6.99817 9.75C8.51695 9.75 9.74817 10.9812 9.74817 12.5C9.74817 14.0188 8.51695 15.25 6.99817 15.25C5.47944 15.2499 4.24817 14.0187 4.24817 12.5C4.24817 10.9813 5.47944 9.75007 6.99817 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,wBAA41C,EAA51C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,4RAA4R,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ouBAAouB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iMAAiM,KAAK,eAAc,CAAI,GAGt1C",
9
+ "debugId": "7180D804340C17BD64756E2164756E21",
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:"M6.99914 16C9.33028 16 11.2869 17.5947 11.8419 19.751C11.9188 20.0502 11.8525 20.3681 11.6632 20.6123C11.4738 20.8566 11.1823 21 10.8732 21H3.12512C2.81602 21 2.52446 20.8566 2.33508 20.6123C2.14583 20.3681 2.07946 20.0502 2.15637 19.751C2.71136 17.5947 4.66803 16.0001 6.99914 16Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.9982 3C21.5504 3 21.9982 3.44772 21.9982 4V19C21.9982 19.5523 21.5504 20 20.9982 20H13.8732C13.8733 19.7508 13.8429 19.4999 13.7794 19.2529C13.3474 17.5745 12.3078 16.1386 10.9093 15.1943C11.4378 14.4286 11.7482 13.5007 11.7482 12.5C11.7482 9.87673 9.62141 7.75013 6.99817 7.75C5.31821 7.75013 3.84266 8.62305 2.99817 9.93945V4C2.99817 3.44776 3.44594 3.00007 3.99817 3H20.9982ZM14.9982 10C14.4459 10.0001 13.9982 10.4478 13.9982 11V14C13.9982 14.5522 14.4459 14.9999 14.9982 15C15.5505 15 15.9982 14.5523 15.9982 14V11C15.9982 10.4477 15.5505 10 14.9982 10ZM18.9982 7C18.4459 7.00007 17.9982 7.44776 17.9982 8V14C17.9982 14.5522 18.4459 14.9999 18.9982 15C19.5504 15 19.9982 14.5523 19.9982 14V8C19.9982 7.44772 19.5504 7 18.9982 7Z",fill:"currentColor"}),o.createElement(e,{d:"M6.99817 9.75C8.51695 9.75 9.74817 10.9812 9.74817 12.5C9.74817 14.0188 8.51695 15.25 6.99817 15.25C5.47944 15.2499 4.24817 14.0187 4.24817 12.5C4.24817 10.9813 5.47944 9.75007 6.99817 9.75Z",fill:"currentColor"}))},v=a;export{v as default,a as IconPresentationAnalytics};
2
+
3
+ //# debugId=D2F12ADB2A16754964756E2164756E21
@@ -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=\"M6.99914 16C9.33028 16 11.2869 17.5947 11.8419 19.751C11.9188 20.0502 11.8525 20.3681 11.6632 20.6123C11.4738 20.8566 11.1823 21 10.8732 21H3.12512C2.81602 21 2.52446 20.8566 2.33508 20.6123C2.14583 20.3681 2.07946 20.0502 2.15637 19.751C2.71136 17.5947 4.66803 16.0001 6.99914 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.9982 3C21.5504 3 21.9982 3.44772 21.9982 4V19C21.9982 19.5523 21.5504 20 20.9982 20H13.8732C13.8733 19.7508 13.8429 19.4999 13.7794 19.2529C13.3474 17.5745 12.3078 16.1386 10.9093 15.1943C11.4378 14.4286 11.7482 13.5007 11.7482 12.5C11.7482 9.87673 9.62141 7.75013 6.99817 7.75C5.31821 7.75013 3.84266 8.62305 2.99817 9.93945V4C2.99817 3.44776 3.44594 3.00007 3.99817 3H20.9982ZM14.9982 10C14.4459 10.0001 13.9982 10.4478 13.9982 11V14C13.9982 14.5522 14.4459 14.9999 14.9982 15C15.5505 15 15.9982 14.5523 15.9982 14V11C15.9982 10.4477 15.5505 10 14.9982 10ZM18.9982 7C18.4459 7.00007 17.9982 7.44776 17.9982 8V14C17.9982 14.5522 18.4459 14.9999 18.9982 15C19.5504 15 19.9982 14.5523 19.9982 14V8C19.9982 7.44772 19.5504 7 18.9982 7Z\" fill=\"currentColor\"/><Path d=\"M6.99817 9.75C8.51695 9.75 9.74817 10.9812 9.74817 12.5C9.74817 14.0188 8.51695 15.25 6.99817 15.25C5.47944 15.2499 4.24817 14.0187 4.24817 12.5C4.24817 10.9813 5.47944 9.75007 6.99817 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,gBAA41C,EAA51C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,4RAA4R,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ouBAAouB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iMAAiM,KAAK,eAAc,CAAI,GAGt1C",
9
+ "debugId": "D2F12ADB2A16754964756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1372,6 +1372,8 @@ Below is a complete list of available icons:
1372
1372
  - IconBottombarHiddenBottomWide
1373
1373
  - IconLayoutAlignLeftRight
1374
1374
  - IconLayoutAlignTopBottom
1375
+ - IconGrid
1376
+ - IconGridBox
1375
1377
 
1376
1378
  ### Location
1377
1379
 
@@ -1476,6 +1478,7 @@ Below is a complete list of available icons:
1476
1478
  - IconPeopleSparkles
1477
1479
  - IconPeopleNoise
1478
1480
  - IconPeopleIdCard2
1481
+ - IconPresentationAnalytics
1479
1482
 
1480
1483
  ### Photography & Video
1481
1484