@central-icons-react-native/square-outlined-radius-0-stroke-1 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.
Files changed (38) hide show
  1. package/IconAlbums2/index.d.ts +4 -0
  2. package/IconAlbums2/index.js +3 -0
  3. package/IconAlbums2/index.js.map +11 -0
  4. package/IconAlbums2/index.mjs +3 -0
  5. package/IconAlbums2/index.mjs.map +11 -0
  6. package/IconHomePlus/index.d.ts +4 -0
  7. package/IconHomePlus/index.js +3 -0
  8. package/IconHomePlus/index.js.map +11 -0
  9. package/IconHomePlus/index.mjs +3 -0
  10. package/IconHomePlus/index.mjs.map +11 -0
  11. package/IconLayoutAlignLeftRight/index.d.ts +4 -0
  12. package/IconLayoutAlignLeftRight/index.js +3 -0
  13. package/IconLayoutAlignLeftRight/index.js.map +11 -0
  14. package/IconLayoutAlignLeftRight/index.mjs +3 -0
  15. package/IconLayoutAlignLeftRight/index.mjs.map +11 -0
  16. package/IconLayoutAlignTopBottom/index.d.ts +4 -0
  17. package/IconLayoutAlignTopBottom/index.js +3 -0
  18. package/IconLayoutAlignTopBottom/index.js.map +11 -0
  19. package/IconLayoutAlignTopBottom/index.mjs +3 -0
  20. package/IconLayoutAlignTopBottom/index.mjs.map +11 -0
  21. package/IconMacbook/index.js +2 -2
  22. package/IconMacbook/index.js.map +3 -3
  23. package/IconMacbook/index.mjs +2 -2
  24. package/IconMacbook/index.mjs.map +3 -3
  25. package/README.md +4 -0
  26. package/filtered-icons.json +1 -1
  27. package/icons/index.d.ts +1 -1
  28. package/icons/index.js +2 -2
  29. package/icons/index.js.map +3 -3
  30. package/icons/index.mjs +2 -2
  31. package/icons/index.mjs.map +3 -3
  32. package/icons-index.json +4 -4
  33. package/index.d.ts +4 -0
  34. package/index.js +12 -0
  35. package/index.mjs +4 -0
  36. package/license-check.js +1 -1
  37. package/package.json +1 -1
  38. package/skills/central-icons-react-native/SKILL.md +6 -2
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAlbums2: FC<CentralIconBaseProps>;
4
+ export default IconAlbums2;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:L,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:b}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var h,y,I=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var C=o?h??=new WeakMap:y??=new WeakMap,c=C.get(r);if(c)return c}e=r!=null?v(L(r)):{};let s=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let l of f(r))if(!i.call(s,l))n(s,l,{get:B.bind(r,l),enumerable:!0});if(t)C.set(r,s);return s},x=(r)=>{var o=(u??=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 f(r))if(!i.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=b(r,t))||e.enumerable})}return u.set(r,o),o},u;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var S={};P(S,{CentralIconBase:()=>m});module.exports=x(S);var g=I(require("react")),k=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return g.default.createElement(k.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 q={};P(q,{default:()=>M,IconAlbums2:()=>d});module.exports=x(q);var p=I(require("react"));var a=require("react-native-svg"),d=(r)=>{return p.default.createElement(m,{...r},p.default.createElement(a.Path,{d:"M18.5 3.5H5.5",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement(a.Path,{d:"M19.5 7.5H4.5",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement(a.Path,{d:"M3.5 11.5H20.5L18.5 20.5H5.5L3.5 11.5Z",stroke:"currentColor",strokeLinecap:"square"}))},M=d;
2
+
3
+ //# debugId=2603A3648E5C0A6F64756E2164756E21
@@ -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.5 3.5H5.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M19.5 7.5H4.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.5 11.5H20.5L18.5 20.5H5.5L3.5 11.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,wBAAyQ,EAAzQ,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,yCAAyC,OAAO,eAAe,cAAc,SAAQ,CAAI,GAGnQ",
9
+ "debugId": "2603A3648E5C0A6F64756E2164756E21",
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 l=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M18.5 3.5H5.5",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(t,{d:"M19.5 7.5H4.5",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(t,{d:"M3.5 11.5H20.5L18.5 20.5H5.5L3.5 11.5Z",stroke:"currentColor",strokeLinecap:"square"}))},g=l;export{g as default,l as IconAlbums2};
2
+
3
+ //# debugId=CD31067C4CE689E864756E2164756E21
@@ -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.5 3.5H5.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M19.5 7.5H4.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.5 11.5H20.5L18.5 20.5H5.5L3.5 11.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAAyQ,EAAzQ,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,yCAAyC,OAAO,eAAe,cAAc,SAAQ,CAAI,GAGnQ",
9
+ "debugId": "CD31067C4CE689E864756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconHomePlus: FC<CentralIconBaseProps>;
4
+ export default IconHomePlus;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:F}=Object,B=Object.prototype.hasOwnProperty;function I(r){return this[r]}var S,b,P=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var a=o?S??=new WeakMap:b??=new WeakMap,c=a.get(r);if(c)return c}t=r!=null?h(y(r)):{};let s=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let m of f(r))if(!B.call(s,m))n(s,m,{get:I.bind(r,m),enumerable:!0});if(e)a.set(r,s);return s},x=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!B.call(o,e))n(o,e,{get:I.bind(r,e),enumerable:!(t=F(r,e))||t.enumerable})}return u.set(r,o),o},u;var k=(r)=>r;function H(r,o){this[r]=k.bind(null,o)}var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:H.bind(o,t)})};var M={};g(M,{CentralIconBase:()=>C});module.exports=x(M);var i=P(require("react")),d=require("react-native-svg"),C=({children:r,size:o=24,...t})=>{return i.default.createElement(d.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 V={};g(V,{default:()=>w,IconHomePlus:()=>v});module.exports=x(V);var p=P(require("react"));var l=require("react-native-svg"),v=(r)=>{return p.default.createElement(C,{...r},p.default.createElement(l.Path,{d:"M3.5 8.5V20.5H20.5V8.5L12 3.5L3.5 8.5Z",stroke:"currentColor"}),p.default.createElement(l.Path,{d:"M12 10V16",stroke:"currentColor"}),p.default.createElement(l.Path,{d:"M9 13H15",stroke:"currentColor"}))},w=v;
2
+
3
+ //# debugId=36E1F0A66586934A64756E2164756E21
@@ -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=\"M3.5 8.5V20.5H20.5V8.5L12 3.5L3.5 8.5Z\" stroke=\"currentColor\"/><Path d=\"M12 10V16\" stroke=\"currentColor\"/><Path d=\"M9 13H15\" stroke=\"currentColor\"/></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,wBAA2L,EAA3L,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,yCAAyC,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAc,CAAI,GAGrL",
9
+ "debugId": "36E1F0A66586934A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";import{Svg as l}from"react-native-svg";var n=({children:t,size:r=24,...p})=>{return s.createElement(l,{...p,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 m=(t)=>{return o.createElement(n,{...t},o.createElement(e,{d:"M3.5 8.5V20.5H20.5V8.5L12 3.5L3.5 8.5Z",stroke:"currentColor"}),o.createElement(e,{d:"M12 10V16",stroke:"currentColor"}),o.createElement(e,{d:"M9 13H15",stroke:"currentColor"}))},i=m;export{i as default,m as IconHomePlus};
2
+
3
+ //# debugId=9F39AC4DE1C8A8F064756E2164756E21
@@ -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=\"M3.5 8.5V20.5H20.5V8.5L12 3.5L3.5 8.5Z\" stroke=\"currentColor\"/><Path d=\"M12 10V16\" stroke=\"currentColor\"/><Path d=\"M9 13H15\" stroke=\"currentColor\"/></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,gBAA2L,EAA3L,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,yCAAyC,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAc,CAAI,GAGrL",
9
+ "debugId": "9F39AC4DE1C8A8F064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLayoutAlignLeftRight: FC<CentralIconBaseProps>;
4
+ export default IconLayoutAlignLeftRight;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:F}=Object,g=Object.prototype.hasOwnProperty;function i(r){return this[r]}var L,S,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?L??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}t=r!=null?v(y(r)):{};let s=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let l of u(r))if(!g.call(s,l))n(s,l,{get:i.bind(r,l),enumerable:!0});if(e)m.set(r,s);return s},I=(r)=>{var o=(f??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of u(r))if(!g.call(o,e))n(o,e,{get:i.bind(r,e),enumerable:!(t=F(r,e))||t.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function k(r,o){this[r]=b.bind(null,o)}var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:k.bind(o,t)})};var M={};x(M,{CentralIconBase:()=>C});module.exports=I(M);var P=B(require("react")),d=require("react-native-svg"),C=({children:r,size:o=24,...t})=>{return P.default.createElement(d.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 V={};x(V,{default:()=>w,IconLayoutAlignLeftRight:()=>h});module.exports=I(V);var p=B(require("react"));var a=require("react-native-svg"),h=(r)=>{return p.default.createElement(C,{...r},p.default.createElement(a.Path,{d:"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z",stroke:"currentColor"}),p.default.createElement(a.Path,{d:"M7.5 7V17",stroke:"currentColor"}),p.default.createElement(a.Path,{d:"M16.5 7V17",stroke:"currentColor"}))},w=h;
2
+
3
+ //# debugId=1C23AB606263B30D64756E2164756E21
@@ -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\"/><Path d=\"M7.5 7V17\" stroke=\"currentColor\"/><Path d=\"M16.5 7V17\" stroke=\"currentColor\"/></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,wBAA0L,EAA1L,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sCAAsC,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAc,CAAI,GAGpL",
9
+ "debugId": "1C23AB606263B30D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";import{Svg as a}from"react-native-svg";var n=({children:t,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"},t)};import o from"react";import{Path as e}from"react-native-svg";var l=(t)=>{return o.createElement(n,{...t},o.createElement(e,{d:"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z",stroke:"currentColor"}),o.createElement(e,{d:"M7.5 7V17",stroke:"currentColor"}),o.createElement(e,{d:"M16.5 7V17",stroke:"currentColor"}))},P=l;export{P as default,l as IconLayoutAlignLeftRight};
2
+
3
+ //# debugId=194F0D2D4845290764756E2164756E21
@@ -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\"/><Path d=\"M7.5 7V17\" stroke=\"currentColor\"/><Path d=\"M16.5 7V17\" stroke=\"currentColor\"/></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,gBAA0L,EAA1L,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sCAAsC,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAc,CAAI,GAGpL",
9
+ "debugId": "194F0D2D4845290764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLayoutAlignTopBottom: FC<CentralIconBaseProps>;
4
+ export default IconLayoutAlignTopBottom;
@@ -0,0 +1,3 @@
1
+ var y=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:F}=Object,B=Object.prototype.hasOwnProperty;function I(o){return this[o]}var S,b,g=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var C=r?S??=new WeakMap:b??=new WeakMap,c=C.get(o);if(c)return c}t=o!=null?y(h(o)):{};let s=r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t;for(let l of f(o))if(!B.call(s,l))n(s,l,{get:I.bind(o,l),enumerable:!0});if(e)C.set(o,s);return s},i=(o)=>{var r=(u??=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 f(o))if(!B.call(r,e))n(r,e,{get:I.bind(o,e),enumerable:!(t=F(o,e))||t.enumerable})}return u.set(o,r),r},u;var k=(o)=>o;function H(o,r){this[o]=k.bind(null,r)}var x=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0,configurable:!0,set:H.bind(r,t)})};var L={};x(L,{CentralIconBase:()=>m});module.exports=i(L);var P=g(require("react")),d=require("react-native-svg"),m=({children:o,size:r=24,...t})=>{return P.default.createElement(d.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={};x(M,{default:()=>w,IconLayoutAlignTopBottom:()=>v});module.exports=i(M);var p=g(require("react"));var a=require("react-native-svg"),v=(o)=>{return p.default.createElement(m,{...o},p.default.createElement(a.Path,{d:"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z",stroke:"currentColor"}),p.default.createElement(a.Path,{d:"M7 7.5H17",stroke:"currentColor"}),p.default.createElement(a.Path,{d:"M7 16.5H17",stroke:"currentColor"}))},w=v;
2
+
3
+ //# debugId=B6F79E8F324AF63164756E2164756E21
@@ -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\"/><Path d=\"M7 7.5H17\" stroke=\"currentColor\"/><Path d=\"M7 16.5H17\" stroke=\"currentColor\"/></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,wBAA0L,EAA1L,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sCAAsC,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAc,CAAI,GAGpL",
9
+ "debugId": "B6F79E8F324AF63164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";import{Svg as a}from"react-native-svg";var n=({children:t,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"},t)};import r from"react";import{Path as e}from"react-native-svg";var l=(t)=>{return r.createElement(n,{...t},r.createElement(e,{d:"M3.5 3.5L20.5 3.5V20.5H3.5L3.5 3.5Z",stroke:"currentColor"}),r.createElement(e,{d:"M7 7.5H17",stroke:"currentColor"}),r.createElement(e,{d:"M7 16.5H17",stroke:"currentColor"}))},P=l;export{P as default,l as IconLayoutAlignTopBottom};
2
+
3
+ //# debugId=6569B6C80DDB3A8A64756E2164756E21
@@ -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\"/><Path d=\"M7 7.5H17\" stroke=\"currentColor\"/><Path d=\"M7 16.5H17\" stroke=\"currentColor\"/></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,gBAA0L,EAA1L,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sCAAsC,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAc,CAAI,GAGpL",
9
+ "debugId": "6569B6C80DDB3A8A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var b=Object.create;var{getPrototypeOf:d,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var C=o?y??=new WeakMap:F??=new WeakMap,l=C.get(r);if(l)return l}e=r!=null?b(d(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let s of f(r))if(!i.call(p,s))n(p,s,{get:B.bind(r,s),enumerable:!0});if(t)C.set(r,p);return p},x=(r)=>{var o=(u??=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 f(r))if(!i.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=h(r,t))||e.enumerable})}return u.set(r,o),o},u;var H=(r)=>r;function S(r,o){this[r]=H.bind(null,o)}var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var V={};P(V,{CentralIconBase:()=>c});module.exports=x(V);var g=I(require("react")),k=require("react-native-svg"),c=({children:r,size:o=24,...e})=>{return g.default.createElement(k.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={};P(M,{default:()=>q,IconMacbook:()=>v});module.exports=x(M);var a=I(require("react"));var m=require("react-native-svg"),v=(r)=>{return a.default.createElement(c,{...r},a.default.createElement(m.Path,{d:"M3.5 3.5H20.5V17.25H3.5V3.5Z",stroke:"currentColor",strokeLinecap:"square"}),a.default.createElement(m.Path,{d:"M1.5 17.25H22.5V20.5H1.5V17.25Z",stroke:"currentColor",strokeLinecap:"square"}))},q=v;
1
+ var b=Object.create;var{getPrototypeOf:d,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var C=o?y??=new WeakMap:F??=new WeakMap,l=C.get(r);if(l)return l}e=r!=null?b(d(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let s of f(r))if(!i.call(p,s))n(p,s,{get:B.bind(r,s),enumerable:!0});if(t)C.set(r,p);return p},x=(r)=>{var o=(u??=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 f(r))if(!i.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=h(r,t))||e.enumerable})}return u.set(r,o),o},u;var H=(r)=>r;function S(r,o){this[r]=H.bind(null,o)}var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var V={};P(V,{CentralIconBase:()=>c});module.exports=x(V);var g=I(require("react")),k=require("react-native-svg"),c=({children:r,size:o=24,...e})=>{return g.default.createElement(k.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={};P(M,{default:()=>q,IconMacbook:()=>v});module.exports=x(M);var a=I(require("react"));var m=require("react-native-svg"),v=(r)=>{return a.default.createElement(c,{...r},a.default.createElement(m.Path,{d:"M3.5 3.5H20.5V17.5H3.5V3.5Z",stroke:"currentColor",strokeLinecap:"square"}),a.default.createElement(m.Path,{d:"M1.5 17.5H22.5V20.5H1.5V17.5Z",stroke:"currentColor",strokeLinecap:"square"}))},q=v;
2
2
 
3
- //# debugId=A2E577F5C48EA9E764756E2164756E21
3
+ //# debugId=7D3ADDBE3F7210C964756E2164756E21
@@ -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.25H3.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M1.5 17.25H22.5V20.5H1.5V17.25Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\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.5H3.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M1.5 17.5H22.5V20.5H1.5V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,wBAA2M,EAA3M,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+BAA+B,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,kCAAkC,OAAO,eAAe,cAAc,SAAQ,CAAI,GAGrM",
9
- "debugId": "A2E577F5C48EA9E764756E2164756E21",
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,wBAAwM,EAAxM,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,gCAAgC,OAAO,eAAe,cAAc,SAAQ,CAAI,GAGlM",
9
+ "debugId": "7D3ADDBE3F7210C964756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import a from"react";import{Svg as s}from"react-native-svg";var t=({children:o,size:r=24,...p})=>{return a.createElement(s,{...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:"M3.5 3.5H20.5V17.25H3.5V3.5Z",stroke:"currentColor",strokeLinecap:"square"}),e.createElement(n,{d:"M1.5 17.25H22.5V20.5H1.5V17.25Z",stroke:"currentColor",strokeLinecap:"square"}))},g=c;export{g as default,c as IconMacbook};
1
+ import a from"react";import{Svg as s}from"react-native-svg";var t=({children:o,size:r=24,...p})=>{return a.createElement(s,{...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:"M3.5 3.5H20.5V17.5H3.5V3.5Z",stroke:"currentColor",strokeLinecap:"square"}),e.createElement(n,{d:"M1.5 17.5H22.5V20.5H1.5V17.5Z",stroke:"currentColor",strokeLinecap:"square"}))},g=c;export{g as default,c as IconMacbook};
2
2
 
3
- //# debugId=B4FADEF078C8D01164756E2164756E21
3
+ //# debugId=A4DBBC8C65867D9A64756E2164756E21
@@ -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.25H3.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M1.5 17.25H22.5V20.5H1.5V17.25Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\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.5H3.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M1.5 17.5H22.5V20.5H1.5V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAA2M,EAA3M,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+BAA+B,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,kCAAkC,OAAO,eAAe,cAAc,SAAQ,CAAI,GAGrM",
9
- "debugId": "B4FADEF078C8D01164756E2164756E21",
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,gBAAwM,EAAxM,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,gCAAgC,OAAO,eAAe,cAAc,SAAQ,CAAI,GAGlM",
9
+ "debugId": "A4DBBC8C65867D9A64756E2164756E21",
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