@central-icons-react-native/round-outlined-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.
- 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 g=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:u,getOwnPropertyDescriptor:y}=Object,m=Object.prototype.hasOwnProperty;function k(r){return this[r]}var F,L,f=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var C=o?F??=new WeakMap:L??=new WeakMap,c=C.get(r);if(c)return c}t=r!=null?g(v(r)):{};let a=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let d of u(r))if(!m.call(a,d))p(a,d,{get:k.bind(r,d),enumerable:!0});if(e)C.set(r,a);return a},h=(r)=>{var o=(l??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of u(r))if(!m.call(o,e))p(o,e,{get:k.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return l.set(r,o),o},l;var M=(r)=>r;function S(r,o){this[r]=M.bind(null,o)}var B=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};var W={};B(W,{CentralIconBase:()=>i});module.exports=h(W);var I=f(require("react")),x=require("react-native-svg"),i=({children:r,size:o=24,...t})=>{return I.default.createElement(x.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};B(b,{default:()=>w,IconGrid:()=>P});module.exports=h(b);var n=f(require("react"));var s=require("react-native-svg"),P=(r)=>{return n.default.createElement(i,{...r},n.default.createElement(s.Path,{d:"M8.5 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),n.default.createElement(s.Path,{d:"M15.5 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),n.default.createElement(s.Path,{d:"M4 8.5H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),n.default.createElement(s.Path,{d:"M4 15.5H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))},w=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=3EF0152B082F633164756E2164756E21
|
|
@@ -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 d=\"M8.5 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M15.5 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4 8.5H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4 15.5H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></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,wBAAoW,EAApW,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,GAG9V",
|
|
9
|
+
"debugId": "3EF0152B082F633164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var n=({children:e,size:r=24,...p})=>{return s.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as t}from"react-native-svg";var d=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M8.5 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M15.5 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M4 8.5H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M4 15.5H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))},I=d;export{I as default,d as IconGrid};
|
|
2
|
+
|
|
3
|
+
//# debugId=A322BA5C4B9383A364756E2164756E21
|
|
@@ -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 d=\"M8.5 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M15.5 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4 8.5H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M4 15.5H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></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,gBAAoW,EAApW,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,GAG9V",
|
|
9
|
+
"debugId": "A322BA5C4B9383A364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:L,defineProperty:i,getOwnPropertyNames:m,getOwnPropertyDescriptor:j}=Object,a=Object.prototype.hasOwnProperty;function c(r){return this[r]}var v,M,f=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var k=o?v??=new WeakMap:M??=new WeakMap,C=k.get(r);if(C)return C}t=r!=null?g(L(r)):{};let p=o||!r||!r.__esModule?i(t,"default",{value:r,enumerable:!0}):t;for(let d of m(r))if(!a.call(p,d))i(p,d,{get:c.bind(r,d),enumerable:!0});if(e)k.set(r,p);return p},h=(r)=>{var o=(l??=new WeakMap).get(r),t;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of m(r))if(!a.call(o,e))i(o,e,{get:c.bind(r,e),enumerable:!(t=j(r,e))||t.enumerable})}return l.set(r,o),o},l;var W=(r)=>r;function y(r,o){this[r]=W.bind(null,o)}var B=(r,o)=>{for(var t in o)i(r,t,{get:o[t],enumerable:!0,configurable:!0,set:y.bind(o,t)})};var F={};B(F,{CentralIconBase:()=>u});module.exports=h(F);var x=f(require("react")),I=require("react-native-svg"),u=({children:r,size:o=24,...t})=>{return x.default.createElement(I.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var H={};B(H,{default:()=>S,IconGridBox:()=>P});module.exports=h(H);var n=f(require("react"));var s=require("react-native-svg"),P=(r)=>{return n.default.createElement(u,{...r},n.default.createElement(s.Path,{d:"M9.32812 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M14.6719 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M4 9.33008H20",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M4 14.6699H20",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M20 4H4V20H20V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},S=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=27D593B579A3326B64756E2164756E21
|
|
@@ -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=\"M9.32812 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M14.6719 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M4 9.33008H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M4 14.6699H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAqe,EAAre,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG/d",
|
|
9
|
+
"debugId": "27D593B579A3326B64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import i from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...s})=>{return i.createElement(p,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as t}from"react-native-svg";var d=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M9.32812 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),o.createElement(t,{d:"M14.6719 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),o.createElement(t,{d:"M4 9.33008H20",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),o.createElement(t,{d:"M4 14.6699H20",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),o.createElement(t,{d:"M20 4H4V20H20V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},x=d;export{x as default,d as IconGridBox};
|
|
2
|
+
|
|
3
|
+
//# debugId=650CB7CFAE1E1A8464756E2164756E21
|
|
@@ -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=\"M9.32812 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M14.6719 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M4 9.33008H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M4 14.6699H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAqe,EAAre,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG/d",
|
|
9
|
+
"debugId": "650CB7CFAE1E1A8464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:g,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,l=Object.prototype.hasOwnProperty;function m(r){return this[r]}var y,M,f=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var u=o?y??=new WeakMap:M??=new WeakMap,k=u.get(r);if(k)return k}e=r!=null?x(g(r)):{};let p=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let C of c(r))if(!l.call(p,C))i(p,C,{get:m.bind(r,C),enumerable:!0});if(t)u.set(r,p);return p},h=(r)=>{var o=(a??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!l.call(o,t))i(o,t,{get:m.bind(r,t),enumerable:!(e=v(r,t))||e.enumerable})}return a.set(r,o),o},a;var W=(r)=>r;function j(r,o){this[r]=W.bind(null,o)}var L=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:j.bind(o,e)})};var F={};L(F,{CentralIconBase:()=>d});module.exports=h(F);var B=f(require("react")),I=require("react-native-svg"),d=({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 S={};L(S,{default:()=>V,IconPresentationAnalytics:()=>P});module.exports=h(S);var n=f(require("react"));var s=require("react-native-svg"),P=(r)=>{return n.default.createElement(d,{...r},n.default.createElement(s.Path,{d:"M4 7.5V4H21V19H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M17 8V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M13 11V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M8.75 12.5C8.75 13.4665 7.9665 14.25 7 14.25C6.0335 14.25 5.25 13.4665 5.25 12.5C5.25 11.5335 6.0335 10.75 7 10.75C7.9665 10.75 8.75 11.5335 8.75 12.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),n.default.createElement(s.Path,{d:"M6.99898 17C5.13514 17 3.56904 18.2748 3.125 20H10.873C10.4289 18.2748 8.86282 17 6.99898 17Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},V=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=40CEA0BC9C349E9464756E2164756E21
|
|
@@ -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=\"M4 7.5V4H21V19H15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17 8V15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13 11V15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.75 12.5C8.75 13.4665 7.9665 14.25 7 14.25C6.0335 14.25 5.25 13.4665 5.25 12.5C5.25 11.5335 6.0335 10.75 7 10.75C7.9665 10.75 8.75 11.5335 8.75 12.5Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M6.99898 17C5.13514 17 3.56904 18.2748 3.125 20H10.873C10.4289 18.2748 8.86282 17 6.99898 17Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAwvB,EAAxvB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gGAAgG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlvB",
|
|
9
|
+
"debugId": "40CEA0BC9C349E9464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import i from"react";import{Svg as p}from"react-native-svg";var n=({children:t,size:r=24,...s})=>{return i.createElement(p,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Path as e}from"react-native-svg";var C=(t)=>{return o.createElement(n,{...t},o.createElement(e,{d:"M4 7.5V4H21V19H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M17 8V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M13 11V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8.75 12.5C8.75 13.4665 7.9665 14.25 7 14.25C6.0335 14.25 5.25 13.4665 5.25 12.5C5.25 11.5335 6.0335 10.75 7 10.75C7.9665 10.75 8.75 11.5335 8.75 12.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M6.99898 17C5.13514 17 3.56904 18.2748 3.125 20H10.873C10.4289 18.2748 8.86282 17 6.99898 17Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},B=C;export{B as default,C as IconPresentationAnalytics};
|
|
2
|
+
|
|
3
|
+
//# debugId=78415EFC3B1BFB8264756E2164756E21
|
|
@@ -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=\"M4 7.5V4H21V19H15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17 8V15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M13 11V15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.75 12.5C8.75 13.4665 7.9665 14.25 7 14.25C6.0335 14.25 5.25 13.4665 5.25 12.5C5.25 11.5335 6.0335 10.75 7 10.75C7.9665 10.75 8.75 11.5335 8.75 12.5Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M6.99898 17C5.13514 17 3.56904 18.2748 3.125 20H10.873C10.4289 18.2748 8.86282 17 6.99898 17Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAwvB,EAAxvB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gGAAgG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlvB",
|
|
9
|
+
"debugId": "78415EFC3B1BFB8264756E2164756E21",
|
|
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
|
|