@central-icons-react-native/round-filled-radius-0-stroke-1 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.
- package/IconGrid/index.d.ts +4 -0
- package/IconGrid/index.js +3 -0
- package/IconGrid/index.js.map +11 -0
- package/IconGrid/index.mjs +3 -0
- package/IconGrid/index.mjs.map +11 -0
- package/IconGridBox/index.d.ts +4 -0
- package/IconGridBox/index.js +3 -0
- package/IconGridBox/index.js.map +11 -0
- package/IconGridBox/index.mjs +3 -0
- package/IconGridBox/index.mjs.map +11 -0
- package/IconPresentationAnalytics/index.d.ts +4 -0
- package/IconPresentationAnalytics/index.js +3 -0
- package/IconPresentationAnalytics/index.js.map +11 -0
- package/IconPresentationAnalytics/index.mjs +3 -0
- package/IconPresentationAnalytics/index.mjs.map +11 -0
- package/README.md +3 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +3 -0
- package/index.js +9 -0
- package/index.mjs +3 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +4 -1
|
@@ -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 3C15.7761 3 16 3.22386 16 3.5V8H20.5C20.7761 8 21 8.22386 21 8.5C21 8.77614 20.7761 9 20.5 9H16V15H20.5C20.7761 15 21 15.2239 21 15.5C21 15.7761 20.7761 16 20.5 16H16V20.5C16 20.7761 15.7761 21 15.5 21C15.2239 21 15 20.7761 15 20.5V16H9V20.5C9 20.7761 8.77614 21 8.5 21C8.22386 21 8 20.7761 8 20.5V16H3.5C3.22386 16 3 15.7761 3 15.5C3 15.2239 3.22386 15 3.5 15H8V9H3.5C3.22386 9 3 8.77614 3 8.5C3 8.22386 3.22386 8 3.5 8H8V3.5C8 3.22386 8.22386 3 8.5 3C8.77614 3 9 3.22386 9 3.5V8H15V3.5C15 3.22386 15.2239 3 15.5 3ZM9 15H15V9H9V15Z",fill:"currentColor"}))},Z=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=3C1305766B5BE28964756E2164756E21
|
|
@@ -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 3C15.7761 3 16 3.22386 16 3.5V8H20.5C20.7761 8 21 8.22386 21 8.5C21 8.77614 20.7761 9 20.5 9H16V15H20.5C20.7761 15 21 15.2239 21 15.5C21 15.7761 20.7761 16 20.5 16H16V20.5C16 20.7761 15.7761 21 15.5 21C15.2239 21 15 20.7761 15 20.5V16H9V20.5C9 20.7761 8.77614 21 8.5 21C8.22386 21 8 20.7761 8 20.5V16H3.5C3.22386 16 3 15.7761 3 15.5C3 15.2239 3.22386 15 3.5 15H8V9H3.5C3.22386 9 3 8.77614 3 8.5C3 8.22386 3.22386 8 3.5 8H8V3.5C8 3.22386 8.22386 3 8.5 3C8.77614 3 9 3.22386 9 3.5V8H15V3.5C15 3.22386 15.2239 3 15.5 3ZM9 15H15V9H9V15Z\" 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,wBAA8nB,EAA9nB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6hBAA6hB,KAAK,eAAc,CAAI,GAGxnB",
|
|
9
|
+
"debugId": "3C1305766B5BE28964756E2164756E21",
|
|
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 3C15.7761 3 16 3.22386 16 3.5V8H20.5C20.7761 8 21 8.22386 21 8.5C21 8.77614 20.7761 9 20.5 9H16V15H20.5C20.7761 15 21 15.2239 21 15.5C21 15.7761 20.7761 16 20.5 16H16V20.5C16 20.7761 15.7761 21 15.5 21C15.2239 21 15 20.7761 15 20.5V16H9V20.5C9 20.7761 8.77614 21 8.5 21C8.22386 21 8 20.7761 8 20.5V16H3.5C3.22386 16 3 15.7761 3 15.5C3 15.2239 3.22386 15 3.5 15H8V9H3.5C3.22386 9 3 8.77614 3 8.5C3 8.22386 3.22386 8 3.5 8H8V3.5C8 3.22386 8.22386 3 8.5 3C8.77614 3 9 3.22386 9 3.5V8H15V3.5C15 3.22386 15.2239 3 15.5 3ZM9 15H15V9H9V15Z",fill:"currentColor"}))},I=a;export{I as default,a as IconGrid};
|
|
2
|
+
|
|
3
|
+
//# debugId=DB627DC618AD3F2164756E2164756E21
|
|
@@ -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 3C15.7761 3 16 3.22386 16 3.5V8H20.5C20.7761 8 21 8.22386 21 8.5C21 8.77614 20.7761 9 20.5 9H16V15H20.5C20.7761 15 21 15.2239 21 15.5C21 15.7761 20.7761 16 20.5 16H16V20.5C16 20.7761 15.7761 21 15.5 21C15.2239 21 15 20.7761 15 20.5V16H9V20.5C9 20.7761 8.77614 21 8.5 21C8.22386 21 8 20.7761 8 20.5V16H3.5C3.22386 16 3 15.7761 3 15.5C3 15.2239 3.22386 15 3.5 15H8V9H3.5C3.22386 9 3 8.77614 3 8.5C3 8.22386 3.22386 8 3.5 8H8V3.5C8 3.22386 8.22386 3 8.5 3C8.77614 3 9 3.22386 9 3.5V8H15V3.5C15 3.22386 15.2239 3 15.5 3ZM9 15H15V9H9V15Z\" 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,gBAA8nB,EAA9nB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6hBAA6hB,KAAK,eAAc,CAAI,GAGxnB",
|
|
9
|
+
"debugId": "DB627DC618AD3F2164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -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:"M8.25 21H3.5C3.22386 21 3 20.7761 3 20.5V15.75H8.25V21Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14.75 21H9.25V15.75H14.75V21Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21 20.5C21 20.7761 20.7761 21 20.5 21H15.75V15.75H21V20.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M8.25 14.75H3V9.25H8.25V14.75Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14.75 14.75H9.25V9.25H14.75V14.75Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21 14.75H15.75V9.25H21V14.75Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M8.25 8.25H3V3.5C3 3.22386 3.22386 3 3.5 3H8.25V8.25Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14.75 8.25H9.25V3H14.75V8.25Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M20.5 3C20.7761 3 21 3.22386 21 3.5V8.25H15.75V3H20.5Z",fill:"currentColor"}))},w=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=AD47EE285FA0741164756E2164756E21
|
|
@@ -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=\"M8.25 21H3.5C3.22386 21 3 20.7761 3 20.5V15.75H8.25V21Z\" fill=\"currentColor\"/><Path d=\"M14.75 21H9.25V15.75H14.75V21Z\" fill=\"currentColor\"/><Path d=\"M21 20.5C21 20.7761 20.7761 21 20.5 21H15.75V15.75H21V20.5Z\" fill=\"currentColor\"/><Path d=\"M8.25 14.75H3V9.25H8.25V14.75Z\" fill=\"currentColor\"/><Path d=\"M14.75 14.75H9.25V9.25H14.75V14.75Z\" fill=\"currentColor\"/><Path d=\"M21 14.75H15.75V9.25H21V14.75Z\" fill=\"currentColor\"/><Path d=\"M8.25 8.25H3V3.5C3 3.22386 3.22386 3 3.5 3H8.25V8.25Z\" fill=\"currentColor\"/><Path d=\"M14.75 8.25H9.25V3H14.75V8.25Z\" fill=\"currentColor\"/><Path d=\"M20.5 3C20.7761 3 21 3.22386 21 3.5V8.25H15.75V3H20.5Z\" 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,wBAAsrB,EAAtrB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,0DAA0D,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iCAAiC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8DAA8D,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iCAAiC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sCAAsC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iCAAiC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wDAAwD,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iCAAiC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,yDAAyD,KAAK,eAAc,CAAI,GAGhrB",
|
|
9
|
+
"debugId": "AD47EE285FA0741164756E2164756E21",
|
|
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:"M8.25 21H3.5C3.22386 21 3 20.7761 3 20.5V15.75H8.25V21Z",fill:"currentColor"}),r.createElement(o,{d:"M14.75 21H9.25V15.75H14.75V21Z",fill:"currentColor"}),r.createElement(o,{d:"M21 20.5C21 20.7761 20.7761 21 20.5 21H15.75V15.75H21V20.5Z",fill:"currentColor"}),r.createElement(o,{d:"M8.25 14.75H3V9.25H8.25V14.75Z",fill:"currentColor"}),r.createElement(o,{d:"M14.75 14.75H9.25V9.25H14.75V14.75Z",fill:"currentColor"}),r.createElement(o,{d:"M21 14.75H15.75V9.25H21V14.75Z",fill:"currentColor"}),r.createElement(o,{d:"M8.25 8.25H3V3.5C3 3.22386 3.22386 3 3.5 3H8.25V8.25Z",fill:"currentColor"}),r.createElement(o,{d:"M14.75 8.25H9.25V3H14.75V8.25Z",fill:"currentColor"}),r.createElement(o,{d:"M20.5 3C20.7761 3 21 3.22386 21 3.5V8.25H15.75V3H20.5Z",fill:"currentColor"}))},Z=f;export{Z as default,f as IconGridBox};
|
|
2
|
+
|
|
3
|
+
//# debugId=8B7E417868C193B364756E2164756E21
|
|
@@ -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=\"M8.25 21H3.5C3.22386 21 3 20.7761 3 20.5V15.75H8.25V21Z\" fill=\"currentColor\"/><Path d=\"M14.75 21H9.25V15.75H14.75V21Z\" fill=\"currentColor\"/><Path d=\"M21 20.5C21 20.7761 20.7761 21 20.5 21H15.75V15.75H21V20.5Z\" fill=\"currentColor\"/><Path d=\"M8.25 14.75H3V9.25H8.25V14.75Z\" fill=\"currentColor\"/><Path d=\"M14.75 14.75H9.25V9.25H14.75V14.75Z\" fill=\"currentColor\"/><Path d=\"M21 14.75H15.75V9.25H21V14.75Z\" fill=\"currentColor\"/><Path d=\"M8.25 8.25H3V3.5C3 3.22386 3.22386 3 3.5 3H8.25V8.25Z\" fill=\"currentColor\"/><Path d=\"M14.75 8.25H9.25V3H14.75V8.25Z\" fill=\"currentColor\"/><Path d=\"M20.5 3C20.7761 3 21 3.22386 21 3.5V8.25H15.75V3H20.5Z\" 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,gBAAsrB,EAAtrB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,0DAA0D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iCAAiC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8DAA8D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iCAAiC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sCAAsC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iCAAiC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wDAAwD,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iCAAiC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yDAAyD,KAAK,eAAc,CAAI,GAGhrB",
|
|
9
|
+
"debugId": "8B7E417868C193B364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -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 L(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:L.bind(o,C)})};var S={};P(S,{CentralIconBase:()=>s});module.exports=I(S);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 b={};P(b,{default:()=>H,IconPresentationAnalytics:()=>g});module.exports=I(b);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.49862 16C10.0324 16.0002 12.1146 17.8943 12.6998 20.3857C12.7346 20.5342 12.6997 20.6909 12.6051 20.8105C12.5103 20.9301 12.3651 20.9999 12.2125 21H2.78476C2.6322 21 2.488 20.93 2.39316 20.8105C2.29832 20.6908 2.26351 20.5344 2.29843 20.3857C2.88372 17.8943 4.96483 16.0001 7.49862 16Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21.4996 3C21.7756 3.00022 21.9996 3.22399 21.9996 3.5V19.5C21.9996 19.776 21.7756 19.9998 21.4996 20H13.6314C13.0782 17.8666 11.5541 16.0809 9.52597 15.3525C10.4174 14.7182 11.0006 13.6775 11.0006 12.5C11.0006 10.6276 9.52891 9.09914 7.68027 9.00488L7.50058 9C5.56758 9 4.00058 10.567 4.00058 12.5C4.00058 13.6771 4.58227 14.7171 5.47323 15.3516C4.52127 15.6932 3.68172 16.2698 2.9996 17.0039V3.5C2.9996 3.22386 3.22346 3 3.4996 3H21.4996ZM14.7496 10.5C14.4735 10.5 14.2496 10.7239 14.2496 11V15C14.2496 15.2761 14.4735 15.5 14.7496 15.5C15.0256 15.4998 15.2496 15.276 15.2496 15V11C15.2496 10.724 15.0256 10.5002 14.7496 10.5ZM18.7496 7.5C18.4735 7.5 18.2496 7.72386 18.2496 8V15C18.2496 15.2761 18.4735 15.5 18.7496 15.5C19.0256 15.4998 19.2496 15.276 19.2496 15V8C19.2496 7.72399 19.0256 7.50022 18.7496 7.5Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M7.4996 10C8.88013 10.0002 9.9996 11.1194 9.9996 12.5L9.98886 12.7188C9.87797 13.9968 8.80639 14.9998 7.4996 15C6.28567 15 5.27419 14.1347 5.04745 12.9873L5.04452 12.9736L5.02695 12.8525C5.01065 12.7372 4.9996 12.6198 4.9996 12.5C4.9996 11.1193 6.11889 10 7.4996 10Z",fill:"currentColor"}))},H=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=FC47242D53C6A87A64756E2164756E21
|
|
@@ -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.49862 16C10.0324 16.0002 12.1146 17.8943 12.6998 20.3857C12.7346 20.5342 12.6997 20.6909 12.6051 20.8105C12.5103 20.9301 12.3651 20.9999 12.2125 21H2.78476C2.6322 21 2.488 20.93 2.39316 20.8105C2.29832 20.6908 2.26351 20.5344 2.29843 20.3857C2.88372 17.8943 4.96483 16.0001 7.49862 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.4996 3C21.7756 3.00022 21.9996 3.22399 21.9996 3.5V19.5C21.9996 19.776 21.7756 19.9998 21.4996 20H13.6314C13.0782 17.8666 11.5541 16.0809 9.52597 15.3525C10.4174 14.7182 11.0006 13.6775 11.0006 12.5C11.0006 10.6276 9.52891 9.09914 7.68027 9.00488L7.50058 9C5.56758 9 4.00058 10.567 4.00058 12.5C4.00058 13.6771 4.58227 14.7171 5.47323 15.3516C4.52127 15.6932 3.68172 16.2698 2.9996 17.0039V3.5C2.9996 3.22386 3.22346 3 3.4996 3H21.4996ZM14.7496 10.5C14.4735 10.5 14.2496 10.7239 14.2496 11V15C14.2496 15.2761 14.4735 15.5 14.7496 15.5C15.0256 15.4998 15.2496 15.276 15.2496 15V11C15.2496 10.724 15.0256 10.5002 14.7496 10.5ZM18.7496 7.5C18.4735 7.5 18.2496 7.72386 18.2496 8V15C18.2496 15.2761 18.4735 15.5 18.7496 15.5C19.0256 15.4998 19.2496 15.276 19.2496 15V8C19.2496 7.72399 19.0256 7.50022 18.7496 7.5Z\" fill=\"currentColor\"/><Path d=\"M7.4996 10C8.88013 10.0002 9.9996 11.1194 9.9996 12.5L9.98886 12.7188C9.87797 13.9968 8.80639 14.9998 7.4996 15C6.28567 15 5.27419 14.1347 5.04745 12.9873L5.04452 12.9736L5.02695 12.8525C5.01065 12.7372 4.9996 12.6198 4.9996 12.5C4.9996 11.1193 6.11889 10 7.4996 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,wBAA0/C,EAA1/C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mSAAmS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+yBAA+yB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6QAA6Q,KAAK,eAAc,CAAI,GAGp/C",
|
|
9
|
+
"debugId": "FC47242D53C6A87A64756E2164756E21",
|
|
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.49862 16C10.0324 16.0002 12.1146 17.8943 12.6998 20.3857C12.7346 20.5342 12.6997 20.6909 12.6051 20.8105C12.5103 20.9301 12.3651 20.9999 12.2125 21H2.78476C2.6322 21 2.488 20.93 2.39316 20.8105C2.29832 20.6908 2.26351 20.5344 2.29843 20.3857C2.88372 17.8943 4.96483 16.0001 7.49862 16Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M21.4996 3C21.7756 3.00022 21.9996 3.22399 21.9996 3.5V19.5C21.9996 19.776 21.7756 19.9998 21.4996 20H13.6314C13.0782 17.8666 11.5541 16.0809 9.52597 15.3525C10.4174 14.7182 11.0006 13.6775 11.0006 12.5C11.0006 10.6276 9.52891 9.09914 7.68027 9.00488L7.50058 9C5.56758 9 4.00058 10.567 4.00058 12.5C4.00058 13.6771 4.58227 14.7171 5.47323 15.3516C4.52127 15.6932 3.68172 16.2698 2.9996 17.0039V3.5C2.9996 3.22386 3.22346 3 3.4996 3H21.4996ZM14.7496 10.5C14.4735 10.5 14.2496 10.7239 14.2496 11V15C14.2496 15.2761 14.4735 15.5 14.7496 15.5C15.0256 15.4998 15.2496 15.276 15.2496 15V11C15.2496 10.724 15.0256 10.5002 14.7496 10.5ZM18.7496 7.5C18.4735 7.5 18.2496 7.72386 18.2496 8V15C18.2496 15.2761 18.4735 15.5 18.7496 15.5C19.0256 15.4998 19.2496 15.276 19.2496 15V8C19.2496 7.72399 19.0256 7.50022 18.7496 7.5Z",fill:"currentColor"}),o.createElement(e,{d:"M7.4996 10C8.88013 10.0002 9.9996 11.1194 9.9996 12.5L9.98886 12.7188C9.87797 13.9968 8.80639 14.9998 7.4996 15C6.28567 15 5.27419 14.1347 5.04745 12.9873L5.04452 12.9736L5.02695 12.8525C5.01065 12.7372 4.9996 12.6198 4.9996 12.5C4.9996 11.1193 6.11889 10 7.4996 10Z",fill:"currentColor"}))},v=a;export{v as default,a as IconPresentationAnalytics};
|
|
2
|
+
|
|
3
|
+
//# debugId=EFDD6D6942C4187C64756E2164756E21
|
|
@@ -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.49862 16C10.0324 16.0002 12.1146 17.8943 12.6998 20.3857C12.7346 20.5342 12.6997 20.6909 12.6051 20.8105C12.5103 20.9301 12.3651 20.9999 12.2125 21H2.78476C2.6322 21 2.488 20.93 2.39316 20.8105C2.29832 20.6908 2.26351 20.5344 2.29843 20.3857C2.88372 17.8943 4.96483 16.0001 7.49862 16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.4996 3C21.7756 3.00022 21.9996 3.22399 21.9996 3.5V19.5C21.9996 19.776 21.7756 19.9998 21.4996 20H13.6314C13.0782 17.8666 11.5541 16.0809 9.52597 15.3525C10.4174 14.7182 11.0006 13.6775 11.0006 12.5C11.0006 10.6276 9.52891 9.09914 7.68027 9.00488L7.50058 9C5.56758 9 4.00058 10.567 4.00058 12.5C4.00058 13.6771 4.58227 14.7171 5.47323 15.3516C4.52127 15.6932 3.68172 16.2698 2.9996 17.0039V3.5C2.9996 3.22386 3.22346 3 3.4996 3H21.4996ZM14.7496 10.5C14.4735 10.5 14.2496 10.7239 14.2496 11V15C14.2496 15.2761 14.4735 15.5 14.7496 15.5C15.0256 15.4998 15.2496 15.276 15.2496 15V11C15.2496 10.724 15.0256 10.5002 14.7496 10.5ZM18.7496 7.5C18.4735 7.5 18.2496 7.72386 18.2496 8V15C18.2496 15.2761 18.4735 15.5 18.7496 15.5C19.0256 15.4998 19.2496 15.276 19.2496 15V8C19.2496 7.72399 19.0256 7.50022 18.7496 7.5Z\" fill=\"currentColor\"/><Path d=\"M7.4996 10C8.88013 10.0002 9.9996 11.1194 9.9996 12.5L9.98886 12.7188C9.87797 13.9968 8.80639 14.9998 7.4996 15C6.28567 15 5.27419 14.1347 5.04745 12.9873L5.04452 12.9736L5.02695 12.8525C5.01065 12.7372 4.9996 12.6198 4.9996 12.5C4.9996 11.1193 6.11889 10 7.4996 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,gBAA0/C,EAA1/C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mSAAmS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+yBAA+yB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6QAA6Q,KAAK,eAAc,CAAI,GAGp/C",
|
|
9
|
+
"debugId": "EFDD6D6942C4187C64756E2164756E21",
|
|
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
|
|