@central-icons-react-native/round-outlined-radius-0-stroke-1 1.1.265 → 1.1.266
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/IconLayoutAlignLeftRight/index.d.ts +4 -0
- package/IconLayoutAlignLeftRight/index.js +3 -0
- package/IconLayoutAlignLeftRight/index.js.map +11 -0
- package/IconLayoutAlignLeftRight/index.mjs +3 -0
- package/IconLayoutAlignLeftRight/index.mjs.map +11 -0
- package/IconLayoutAlignTopBottom/index.d.ts +4 -0
- package/IconLayoutAlignTopBottom/index.js +3 -0
- package/IconLayoutAlignTopBottom/index.js.map +11 -0
- package/IconLayoutAlignTopBottom/index.mjs +3 -0
- package/IconLayoutAlignTopBottom/index.mjs.map +11 -0
- package/IconMacbook/index.js +2 -2
- package/IconMacbook/index.js.map +3 -3
- package/IconMacbook/index.mjs +2 -2
- package/IconMacbook/index.mjs.map +3 -3
- package/README.md +2 -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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var P=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:m,getOwnPropertyDescriptor:v}=Object,d=Object.prototype.hasOwnProperty;function f(o){return this[o]}var y,F,L=(o,r,n)=>{var e=o!=null&&typeof o==="object";if(e){var l=r?y??=new WeakMap:F??=new WeakMap,C=l.get(o);if(C)return C}n=o!=null?P(h(o)):{};let s=r||!o||!o.__esModule?t(n,"default",{value:o,enumerable:!0}):n;for(let i of m(o))if(!d.call(s,i))t(s,i,{get:f.bind(o,i),enumerable:!0});if(e)l.set(o,s);return s},k=(o)=>{var r=(c??=new WeakMap).get(o),n;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of m(o))if(!d.call(r,e))t(r,e,{get:f.bind(o,e),enumerable:!(n=v(o,e))||n.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var g=(o,r)=>{for(var n in r)t(o,n,{get:r[n],enumerable:!0,configurable:!0,set:b.bind(r,n)})};var j={};g(j,{CentralIconBase:()=>u});module.exports=k(j);var B=L(require("react")),I=require("react-native-svg"),u=({children:o,size:r=24,...n})=>{return B.default.createElement(I.Svg,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var M={};g(M,{default:()=>V,IconLayoutAlignLeftRight:()=>x});module.exports=k(M);var p=L(require("react"));var a=require("react-native-svg"),x=(o)=>{return p.default.createElement(u,{...o},p.default.createElement(a.Path,{d:"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(a.Path,{d:"M7.5 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(a.Path,{d:"M16.5 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},V=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=D83C2B52094D7DBB64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignLeftRight/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 IconLayoutAlignLeftRight: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 7.5V16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16.5 7.5V16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignLeftRight;\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,oFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqD,CAAC,IAAU,CAC3E,OAAO,wBAAyU,EAAzU,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sCAAsC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGnU",
|
|
9
|
+
"debugId": "D83C2B52094D7DBB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var t=({children:n,size:o=24,...p})=>{return s.createElement(a,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Path as e}from"react-native-svg";var i=(n)=>{return r.createElement(t,{...n},r.createElement(e,{d:"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M7.5 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M16.5 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},B=i;export{B as default,i as IconLayoutAlignLeftRight};
|
|
2
|
+
|
|
3
|
+
//# debugId=7D1799871F86A02F64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignLeftRight/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 IconLayoutAlignLeftRight: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 7.5V16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16.5 7.5V16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignLeftRight;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAyU,EAAzU,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sCAAsC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGnU",
|
|
9
|
+
"debugId": "7D1799871F86A02F64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var P=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,d=Object.prototype.hasOwnProperty;function f(o){return this[o]}var h,F,k=(o,r,n)=>{var e=o!=null&&typeof o==="object";if(e){var l=r?h??=new WeakMap:F??=new WeakMap,m=l.get(o);if(m)return m}n=o!=null?P(v(o)):{};let s=r||!o||!o.__esModule?t(n,"default",{value:o,enumerable:!0}):n;for(let i of c(o))if(!d.call(s,i))t(s,i,{get:f.bind(o,i),enumerable:!0});if(e)l.set(o,s);return s},B=(o)=>{var r=(C??=new WeakMap).get(o),n;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of c(o))if(!d.call(r,e))t(r,e,{get:f.bind(o,e),enumerable:!(n=y(o,e))||n.enumerable})}return C.set(o,r),r},C;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var L=(o,r)=>{for(var n in r)t(o,n,{get:r[n],enumerable:!0,configurable:!0,set:b.bind(r,n)})};var j={};L(j,{CentralIconBase:()=>u});module.exports=B(j);var I=k(require("react")),g=require("react-native-svg"),u=({children:o,size:r=24,...n})=>{return I.default.createElement(g.Svg,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var H={};L(H,{default:()=>M,IconLayoutAlignTopBottom:()=>x});module.exports=B(H);var p=k(require("react"));var a=require("react-native-svg"),x=(o)=>{return p.default.createElement(u,{...o},p.default.createElement(a.Path,{d:"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(a.Path,{d:"M7.5 7.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(a.Path,{d:"M7.5 16.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},M=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=7FB0882EBA0A169464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignTopBottom/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 IconLayoutAlignTopBottom: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 7.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 16.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignTopBottom;\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,oFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqD,CAAC,IAAU,CAC3E,OAAO,wBAAyU,EAAzU,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sCAAsC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGnU",
|
|
9
|
+
"debugId": "7FB0882EBA0A169464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var t=({children:n,size:o=24,...p})=>{return s.createElement(a,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Path as e}from"react-native-svg";var i=(n)=>{return r.createElement(t,{...n},r.createElement(e,{d:"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M7.5 7.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M7.5 16.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},I=i;export{I as default,i as IconLayoutAlignTopBottom};
|
|
2
|
+
|
|
3
|
+
//# debugId=3D53D13C0D47FC6464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignTopBottom/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 IconLayoutAlignTopBottom: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 7.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 16.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignTopBottom;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAyU,EAAzU,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sCAAsC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGnU",
|
|
9
|
+
"debugId": "3D53D13C0D47FC6464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconMacbook/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var v=Object.create;var{getPrototypeOf:b,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,f=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var C=o?y??=new WeakMap:F??=new WeakMap,i=C.get(r);if(i)return i}e=r!=null?v(b(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!f.call(p,a))t(p,a,{get:B.bind(r,a),enumerable:!0});if(n)C.set(r,p);return p},k=(r)=>{var o=(l??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of u(r))if(!f.call(o,n))t(o,n,{get:B.bind(r,n),enumerable:!(e=h(r,n))||e.enumerable})}return l.set(r,o),o},l;var H=(r)=>r;function L(r,o){this[r]=H.bind(null,o)}var x=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:L.bind(o,e)})};var S={};x(S,{CentralIconBase:()=>c});module.exports=k(S);var P=I(require("react")),d=require("react-native-svg"),c=({children:r,size:o=24,...e})=>{return P.default.createElement(d.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 V={};x(V,{default:()=>M,IconMacbook:()=>g});module.exports=k(V);var s=I(require("react"));var m=require("react-native-svg"),g=(r)=>{return s.default.createElement(c,{...r},s.default.createElement(m.Path,{d:"M3.5 3.5H20.5V17.
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:b,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,f=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var C=o?y??=new WeakMap:F??=new WeakMap,i=C.get(r);if(i)return i}e=r!=null?v(b(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!f.call(p,a))t(p,a,{get:B.bind(r,a),enumerable:!0});if(n)C.set(r,p);return p},k=(r)=>{var o=(l??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of u(r))if(!f.call(o,n))t(o,n,{get:B.bind(r,n),enumerable:!(e=h(r,n))||e.enumerable})}return l.set(r,o),o},l;var H=(r)=>r;function L(r,o){this[r]=H.bind(null,o)}var x=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:L.bind(o,e)})};var S={};x(S,{CentralIconBase:()=>c});module.exports=k(S);var P=I(require("react")),d=require("react-native-svg"),c=({children:r,size:o=24,...e})=>{return P.default.createElement(d.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 V={};x(V,{default:()=>M,IconMacbook:()=>g});module.exports=k(V);var s=I(require("react"));var m=require("react-native-svg"),g=(r)=>{return s.default.createElement(c,{...r},s.default.createElement(m.Path,{d:"M3.5 3.5H20.5V17.5H3.5V3.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),s.default.createElement(m.Path,{d:"M1.5 17.5H22.5V20.5H1.5V17.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},M=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=F0B4C1EB5819E17C64756E2164756E21
|
package/IconMacbook/index.js.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconMacbook/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconMacbook: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 3.5H20.5V17.
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMacbook: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 3.5H20.5V17.5H3.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M1.5 17.5H22.5V20.5H1.5V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\n"
|
|
7
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,
|
|
9
|
-
"debugId": "
|
|
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,wBAAsP,EAAtP,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gCAAgC,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGhP",
|
|
9
|
+
"debugId": "F0B4C1EB5819E17C64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconMacbook/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import s from"react";import{Svg as a}from"react-native-svg";var n=({children:o,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"},o)};import e from"react";import{Path as t}from"react-native-svg";var c=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M3.5 3.5H20.5V17.
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var n=({children:o,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"},o)};import e from"react";import{Path as t}from"react-native-svg";var c=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M3.5 3.5H20.5V17.5H3.5V3.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),e.createElement(t,{d:"M1.5 17.5H22.5V20.5H1.5V17.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},P=c;export{P as default,c as IconMacbook};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=15972739BD69FF4264756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconMacbook/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconMacbook: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 3.5H20.5V17.
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMacbook: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 3.5H20.5V17.5H3.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M1.5 17.5H22.5V20.5H1.5V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\n"
|
|
7
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,
|
|
9
|
-
"debugId": "
|
|
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,gBAAsP,EAAtP,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gCAAgC,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGhP",
|
|
9
|
+
"debugId": "15972739BD69FF4264756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/README.md
CHANGED