@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.265 → 1.1.267
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/IconAlbums2/index.d.ts +4 -0
- package/IconAlbums2/index.js +3 -0
- package/IconAlbums2/index.js.map +11 -0
- package/IconAlbums2/index.mjs +3 -0
- package/IconAlbums2/index.mjs.map +11 -0
- package/IconHomePlus/index.d.ts +4 -0
- package/IconHomePlus/index.js +3 -0
- package/IconHomePlus/index.js.map +11 -0
- package/IconHomePlus/index.mjs +3 -0
- package/IconHomePlus/index.mjs.map +11 -0
- 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 +4 -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 +4 -0
- package/index.js +12 -0
- package/index.mjs +4 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +6 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var P=Object.create;var{getPrototypeOf:g,defineProperty:n,getOwnPropertyNames:m,getOwnPropertyDescriptor:v}=Object,c=Object.prototype.hasOwnProperty;function k(r){return this[r]}var b,y,f=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var u=o?b??=new WeakMap:y??=new WeakMap,d=u.get(r);if(d)return d}e=r!=null?P(g(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let C of m(r))if(!c.call(p,C))n(p,C,{get:k.bind(r,C),enumerable:!0});if(t)u.set(r,p);return p},B=(r)=>{var o=(l??=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 m(r))if(!c.call(o,t))n(o,t,{get:k.bind(r,t),enumerable:!(e=v(r,t))||e.enumerable})}return l.set(r,o),o},l;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var S={};I(S,{CentralIconBase:()=>a});module.exports=B(S);var L=f(require("react")),h=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return L.default.createElement(h.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 j={};I(j,{default:()=>M,IconAlbums2:()=>x});module.exports=B(j);var s=f(require("react"));var i=require("react-native-svg"),x=(r)=>{return s.default.createElement(a,{...r},s.default.createElement(i.Path,{d:"M18 4H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(i.Path,{d:"M19 8H5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(i.Path,{d:"M6.05962 12H17.9365C19.2377 12 20.1924 13.2228 19.8768 14.4851L18.8768 18.4851C18.6542 19.3754 17.8542 20 16.9365 20H7.05962C6.14188 20 5.34192 19.3754 5.11934 18.4851L4.11933 14.4851C3.80376 13.2228 4.75848 12 6.05962 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},M=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=4F643FE1678FBDEE64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/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 IconAlbums2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18 4H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M19 8H5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M6.05962 12H17.9365C19.2377 12 20.1924 13.2228 19.8768 14.4851L18.8768 18.4851C18.6542 19.3754 17.8542 20 16.9365 20H7.05962C6.14188 20 5.34192 19.3754 5.11934 18.4851L4.11933 14.4851C3.80376 13.2228 4.75848 12 6.05962 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconAlbums2;\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,wBAAuiB,EAAviB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iOAAiO,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGjiB",
|
|
9
|
+
"debugId": "4F643FE1678FBDEE64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as i}from"react-native-svg";var n=({children:e,size:r=24,...s})=>{return p.createElement(i,{...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 C=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M18 4H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M19 8H5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M6.05962 12H17.9365C19.2377 12 20.1924 13.2228 19.8768 14.4851L18.8768 18.4851C18.6542 19.3754 17.8542 20 16.9365 20H7.05962C6.14188 20 5.34192 19.3754 5.11934 18.4851L4.11933 14.4851C3.80376 13.2228 4.75848 12 6.05962 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},L=C;export{L as default,C as IconAlbums2};
|
|
2
|
+
|
|
3
|
+
//# debugId=C32163D8FC01AF3964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/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 IconAlbums2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18 4H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M19 8H5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M6.05962 12H17.9365C19.2377 12 20.1924 13.2228 19.8768 14.4851L18.8768 18.4851C18.6542 19.3754 17.8542 20 16.9365 20H7.05962C6.14188 20 5.34192 19.3754 5.11934 18.4851L4.11933 14.4851C3.80376 13.2228 4.75848 12 6.05962 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconAlbums2;\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,gBAAuiB,EAAviB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iOAAiO,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGjiB",
|
|
9
|
+
"debugId": "C32163D8FC01AF3964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:g,defineProperty:n,getOwnPropertyNames:m,getOwnPropertyDescriptor:v}=Object,c=Object.prototype.hasOwnProperty;function k(o){return this[o]}var y,F,f=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var u=r?y??=new WeakMap:F??=new WeakMap,d=u.get(o);if(d)return d}e=o!=null?x(g(o)):{};let p=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let i of m(o))if(!c.call(p,i))n(p,i,{get:k.bind(o,i),enumerable:!0});if(t)u.set(o,p);return p},B=(o)=>{var r=(l??=new WeakMap).get(o),e;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of m(o))if(!c.call(r,t))n(r,t,{get:k.bind(o,t),enumerable:!(e=v(o,t))||e.enumerable})}return l.set(o,r),r},l;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var I=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var j={};I(j,{CentralIconBase:()=>a});module.exports=B(j);var L=f(require("react")),P=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return L.default.createElement(P.Svg,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var H={};I(H,{default:()=>M,IconHomePlus:()=>h});module.exports=B(H);var s=f(require("react"));var C=require("react-native-svg"),h=(o)=>{return s.default.createElement(a,{...o},s.default.createElement(C.Path,{d:"M4.94 8.4125C4.35524 8.77798 4 9.41892 4 10.1085V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V10.1085C20 9.41892 19.6448 8.77798 19.06 8.4125L13.06 4.6625C12.4115 4.25716 11.5885 4.25716 10.94 4.6625L4.94 8.4125Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(C.Path,{d:"M12 10.5V15.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(C.Path,{d:"M9.5 13H14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},M=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=408A6B721E0B942664756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/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 IconHomePlus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.94 8.4125C4.35524 8.77798 4 9.41892 4 10.1085V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V10.1085C20 9.41892 19.6448 8.77798 19.06 8.4125L13.06 4.6625C12.4115 4.25716 11.5885 4.25716 10.94 4.6625L4.94 8.4125Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 10.5V15.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.5 13H14.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\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,wECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAAujB,EAAvjB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sOAAsO,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGjjB",
|
|
9
|
+
"debugId": "408A6B721E0B942664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:o=24,...s})=>{return p.createElement(C,{...s,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{Path as t}from"react-native-svg";var i=(e)=>{return r.createElement(n,{...e},r.createElement(t,{d:"M4.94 8.4125C4.35524 8.77798 4 9.41892 4 10.1085V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V10.1085C20 9.41892 19.6448 8.77798 19.06 8.4125L13.06 4.6625C12.4115 4.25716 11.5885 4.25716 10.94 4.6625L4.94 8.4125Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M12 10.5V15.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M9.5 13H14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},L=i;export{L as default,i as IconHomePlus};
|
|
2
|
+
|
|
3
|
+
//# debugId=5802216C1DEF385264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/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 IconHomePlus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.94 8.4125C4.35524 8.77798 4 9.41892 4 10.1085V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V10.1085C20 9.41892 19.6448 8.77798 19.06 8.4125L13.06 4.6625C12.4115 4.25716 11.5885 4.25716 10.94 4.6625L4.94 8.4125Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 10.5V15.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.5 13H14.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\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,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAujB,EAAvjB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sOAAsO,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGjjB",
|
|
9
|
+
"debugId": "5802216C1DEF385264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:P,defineProperty:n,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,m=Object.prototype.hasOwnProperty;function k(o){return this[o]}var y,F,L=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var u=r?y??=new WeakMap:F??=new WeakMap,d=u.get(o);if(d)return d}t=o!=null?x(P(o)):{};let s=r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t;for(let C of c(o))if(!m.call(s,C))n(s,C,{get:k.bind(o,C),enumerable:!0});if(e)u.set(o,s);return s},f=(o)=>{var r=(l??=new WeakMap).get(o),t;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of c(o))if(!m.call(r,e))n(r,e,{get:k.bind(o,e),enumerable:!(t=v(o,e))||t.enumerable})}return l.set(o,r),r},l;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var g=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0,configurable:!0,set:b.bind(r,t)})};var j={};g(j,{CentralIconBase:()=>a});module.exports=f(j);var h=L(require("react")),B=require("react-native-svg"),a=({children:o,size:r=24,...t})=>{return h.default.createElement(B.Svg,{...t,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:()=>W,IconLayoutAlignLeftRight:()=>I});module.exports=f(M);var p=L(require("react"));var i=require("react-native-svg"),I=(o)=>{return p.default.createElement(a,{...o},p.default.createElement(i.Path,{d:"M4 6C4 4.89543 4.89543 4 6 4L18 4C19.1046 4 20 4.89543 20 6L20 18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(i.Path,{d:"M8 8V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(i.Path,{d:"M16 8V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},W=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=845517624EB84B3C64756E2164756E21
|
|
@@ -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=\"M4 6C4 4.89543 4.89543 4 6 4L18 4C19.1046 4 20 4.89543 20 6L20 18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8 8V16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 8V16\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAAwc,EAAxc,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iIAAiI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlc",
|
|
9
|
+
"debugId": "845517624EB84B3C64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as i}from"react-native-svg";var n=({children:t,size:o=24,...p})=>{return s.createElement(i,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t)};import r from"react";import{Path as e}from"react-native-svg";var C=(t)=>{return r.createElement(n,{...t},r.createElement(e,{d:"M4 6C4 4.89543 4.89543 4 6 4L18 4C19.1046 4 20 4.89543 20 6L20 18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 8V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M16 8V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},h=C;export{h as default,C as IconLayoutAlignLeftRight};
|
|
2
|
+
|
|
3
|
+
//# debugId=3C6D1B3EA935240264756E2164756E21
|
|
@@ -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=\"M4 6C4 4.89543 4.89543 4 6 4L18 4C19.1046 4 20 4.89543 20 6L20 18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8 8V16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 8V16\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAAwc,EAAxc,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iIAAiI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlc",
|
|
9
|
+
"debugId": "3C6D1B3EA935240264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:P,defineProperty:n,getOwnPropertyNames:m,getOwnPropertyDescriptor:v}=Object,c=Object.prototype.hasOwnProperty;function k(o){return this[o]}var y,F,L=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var u=r?y??=new WeakMap:F??=new WeakMap,d=u.get(o);if(d)return d}t=o!=null?x(P(o)):{};let s=r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t;for(let C of m(o))if(!c.call(s,C))n(s,C,{get:k.bind(o,C),enumerable:!0});if(e)u.set(o,s);return s},f=(o)=>{var r=(l??=new WeakMap).get(o),t;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of m(o))if(!c.call(r,e))n(r,e,{get:k.bind(o,e),enumerable:!(t=v(o,e))||t.enumerable})}return l.set(o,r),r},l;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var B=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0,configurable:!0,set:b.bind(r,t)})};var j={};B(j,{CentralIconBase:()=>a});module.exports=f(j);var I=L(require("react")),g=require("react-native-svg"),a=({children:o,size:r=24,...t})=>{return I.default.createElement(g.Svg,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var H={};B(H,{default:()=>M,IconLayoutAlignTopBottom:()=>h});module.exports=f(H);var p=L(require("react"));var i=require("react-native-svg"),h=(o)=>{return p.default.createElement(a,{...o},p.default.createElement(i.Path,{d:"M4 6C4 4.89543 4.89543 4 6 4L18 4C19.1046 4 20 4.89543 20 6L20 18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(i.Path,{d:"M8 8H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(i.Path,{d:"M8 16H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},M=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=623667CD8519C96264756E2164756E21
|
|
@@ -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=\"M4 6C4 4.89543 4.89543 4 6 4L18 4C19.1046 4 20 4.89543 20 6L20 18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8 8H16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8 16H16\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAAwc,EAAxc,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iIAAiI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlc",
|
|
9
|
+
"debugId": "623667CD8519C96264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as i}from"react-native-svg";var n=({children:t,size:o=24,...p})=>{return s.createElement(i,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t)};import r from"react";import{Path as e}from"react-native-svg";var C=(t)=>{return r.createElement(n,{...t},r.createElement(e,{d:"M4 6C4 4.89543 4.89543 4 6 4L18 4C19.1046 4 20 4.89543 20 6L20 18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 8H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 16H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},I=C;export{I as default,C as IconLayoutAlignTopBottom};
|
|
2
|
+
|
|
3
|
+
//# debugId=5C96ADF91C8AB12364756E2164756E21
|
|
@@ -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=\"M4 6C4 4.89543 4.89543 4 6 4L18 4C19.1046 4 20 4.89543 20 6L20 18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8 8H16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8 16H16\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAAwc,EAAxc,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iIAAiI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlc",
|
|
9
|
+
"debugId": "5C96ADF91C8AB12364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconMacbook/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var h=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:b}=Object,f=Object.prototype.hasOwnProperty;function k(r){return this[r]}var y,F,d=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var c=o?y??=new WeakMap:F??=new WeakMap,m=c.get(r);if(m)return m}e=r!=null?h(v(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!f.call(p,a))n(p,a,{get:k.bind(r,a),enumerable:!0});if(t)c.set(r,p);return p},B=(r)=>{var o=(l??=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 u(r))if(!f.call(o,t))n(o,t,{get:k.bind(r,t),enumerable:!(e=b(r,t))||e.enumerable})}return l.set(r,o),o},l;var
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:b}=Object,f=Object.prototype.hasOwnProperty;function k(r){return this[r]}var y,F,d=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var c=o?y??=new WeakMap:F??=new WeakMap,m=c.get(r);if(m)return m}e=r!=null?h(v(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!f.call(p,a))n(p,a,{get:k.bind(r,a),enumerable:!0});if(t)c.set(r,p);return p},B=(r)=>{var o=(l??=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 u(r))if(!f.call(o,t))n(o,t,{get:k.bind(r,t),enumerable:!(e=b(r,t))||e.enumerable})}return l.set(r,o),o},l;var L=(r)=>r;function S(r,o){this[r]=L.bind(null,o)}var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var V={};I(V,{CentralIconBase:()=>C});module.exports=B(V);var x=d(require("react")),P=require("react-native-svg"),C=({children:r,size:o=24,...e})=>{return x.default.createElement(P.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 H={};I(H,{default:()=>M,IconMacbook:()=>g});module.exports=B(H);var s=d(require("react"));var i=require("react-native-svg"),g=(r)=>{return s.default.createElement(C,{...r},s.default.createElement(i.Path,{d:"M2 16H22V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}),s.default.createElement(i.Path,{d:"M20 15.75V6C20 4.89543 19.1046 4 18 4H6C4.89543 4 4 4.89543 4 6V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}))},M=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=E9A02FF7D589D38464756E2164756E21
|
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=\"
|
|
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=\"M2 16H22V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V16Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M20 15.75V6C20 4.89543 19.1046 4 18 4H6C4.89543 4 4 4.89543 4 6V15.75\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAA0W,EAA1W,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,wEAAwE,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,CAAI,GAGpW",
|
|
9
|
+
"debugId": "E9A02FF7D589D38464756E2164756E21",
|
|
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 t=({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 n}from"react-native-svg";var C=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var t=({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 n}from"react-native-svg";var C=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M2 16H22V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}),e.createElement(n,{d:"M20 15.75V6C20 4.89543 19.1046 4 18 4H6C4.89543 4 4 4.89543 4 6V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}))},x=C;export{x as default,C as IconMacbook};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=3E8DE0BDDA2D444F64756E2164756E21
|
|
@@ -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=\"
|
|
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=\"M2 16H22V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V16Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M20 15.75V6C20 4.89543 19.1046 4 18 4H6C4.89543 4 4 4.89543 4 6V15.75\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAA0W,EAA1W,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,wEAAwE,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,CAAI,GAGpW",
|
|
9
|
+
"debugId": "3E8DE0BDDA2D444F64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/README.md
CHANGED
|
@@ -442,6 +442,7 @@ Below is a complete list of available icons:
|
|
|
442
442
|
- IconTower
|
|
443
443
|
- IconGoldenGateBridge
|
|
444
444
|
- IconHomeRoofDoor
|
|
445
|
+
- IconHomePlus
|
|
445
446
|
|
|
446
447
|
### Clouds
|
|
447
448
|
|
|
@@ -1363,6 +1364,8 @@ Below is a complete list of available icons:
|
|
|
1363
1364
|
- IconCanvasGrid
|
|
1364
1365
|
- IconTopbarHiddenTopWide
|
|
1365
1366
|
- IconBottombarHiddenBottomWide
|
|
1367
|
+
- IconLayoutAlignLeftRight
|
|
1368
|
+
- IconLayoutAlignTopBottom
|
|
1366
1369
|
|
|
1367
1370
|
### Location
|
|
1368
1371
|
|
|
@@ -1886,6 +1889,7 @@ Below is a complete list of available icons:
|
|
|
1886
1889
|
- IconCd
|
|
1887
1890
|
- IconVoiceShare
|
|
1888
1891
|
- IconConductor
|
|
1892
|
+
- IconAlbums2
|
|
1889
1893
|
|
|
1890
1894
|
### Sports
|
|
1891
1895
|
|