@central-icons-react-native/square-filled-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.
@@ -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 H=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:c,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var y,F,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var f=r?y??=new WeakMap:F??=new WeakMap,s=f.get(o);if(s)return s}e=o!=null?H(V(o)):{};let p=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let l of c(o))if(!i.call(p,l))n(p,l,{get:u.bind(o,l),enumerable:!0});if(t)f.set(o,p);return p},B=(o)=>{var r=(C??=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 c(o))if(!i.call(r,t))n(r,t,{get:u.bind(o,t),enumerable:!(e=h(o,t))||e.enumerable})}return C.set(o,r),r},C;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 M={};I(M,{CentralIconBase:()=>a});module.exports=B(M);var d=g(require("react")),v=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return d.default.createElement(v.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 Z={};I(Z,{default:()=>w,IconLayoutAlignLeftRight:()=>P});module.exports=B(Z);var m=g(require("react"));var x=require("react-native-svg"),P=(o)=>{return m.default.createElement(a,{...o},m.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 21H3V3H21V21ZM7 17H8V7H7V17ZM16 7V17H17V7H16Z",fill:"currentColor"}))},w=P;
2
+
3
+ //# debugId=261AF546C0A0689A64756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 21H3V3H21V21ZM7 17H8V7H7V17ZM16 7V17H17V7H16Z\" fill=\"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,wBAAqJ,EAArJ,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oDAAoD,KAAK,eAAc,CAAI,GAG/I",
9
+ "debugId": "261AF546C0A0689A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return p.createElement(l,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as a}from"react-native-svg";var m=(r)=>{return t.createElement(e,{...r},t.createElement(a,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 21H3V3H21V21ZM7 17H8V7H7V17ZM16 7V17H17V7H16Z",fill:"currentColor"}))},v=m;export{v as default,m as IconLayoutAlignLeftRight};
2
+
3
+ //# debugId=2F024DA73BE2BCFD64756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 21H3V3H21V21ZM7 17H8V7H7V17ZM16 7V17H17V7H16Z\" fill=\"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,gBAAqJ,EAArJ,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oDAAoD,KAAK,eAAc,CAAI,GAG/I",
9
+ "debugId": "2F024DA73BE2BCFD64756E2164756E21",
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 H=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var h,F,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var s=r?h??=new WeakMap:F??=new WeakMap,C=s.get(o);if(C)return C}e=o!=null?H(V(o)):{};let p=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let l of f(o))if(!i.call(p,l))n(p,l,{get:u.bind(o,l),enumerable:!0});if(t)s.set(o,p);return p},I=(o)=>{var r=(c??=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 f(o))if(!i.call(r,t))n(r,t,{get:u.bind(o,t),enumerable:!(e=y(o,t))||e.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var d=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var M={};d(M,{CentralIconBase:()=>a});module.exports=I(M);var g=B(require("react")),v=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return g.default.createElement(v.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 Z={};d(Z,{default:()=>w,IconLayoutAlignTopBottom:()=>P});module.exports=I(Z);var m=B(require("react"));var x=require("react-native-svg"),P=(o)=>{return m.default.createElement(a,{...o},m.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 21H3V3H21V21ZM7 16V17H17V16H7ZM7 8H17V7H7V8Z",fill:"currentColor"}))},w=P;
2
+
3
+ //# debugId=457C280859F9688464756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 21H3V3H21V21ZM7 16V17H17V16H7ZM7 8H17V7H7V8Z\" fill=\"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,wBAAoJ,EAApJ,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mDAAmD,KAAK,eAAc,CAAI,GAG9I",
9
+ "debugId": "457C280859F9688464756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return p.createElement(l,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as a}from"react-native-svg";var m=(r)=>{return t.createElement(e,{...r},t.createElement(a,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 21H3V3H21V21ZM7 16V17H17V16H7ZM7 8H17V7H7V8Z",fill:"currentColor"}))},v=m;export{v as default,m as IconLayoutAlignTopBottom};
2
+
3
+ //# debugId=2B3E70D9AE06D89064756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 21H3V3H21V21ZM7 16V17H17V16H7ZM7 8H17V7H7V8Z\" fill=\"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,gBAAoJ,EAApJ,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mDAAmD,KAAK,eAAc,CAAI,GAG9I",
9
+ "debugId": "2B3E70D9AE06D89064756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var H=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:b}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var h,y,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var c=r?h??=new WeakMap:y??=new WeakMap,s=c.get(o);if(s)return s}e=o!=null?H(V(o)):{};let p=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let l of f(o))if(!i.call(p,l))n(p,l,{get:u.bind(o,l),enumerable:!0});if(t)c.set(o,p);return p},I=(o)=>{var r=(C??=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 f(o))if(!i.call(r,t))n(r,t,{get:u.bind(o,t),enumerable:!(e=b(o,t))||e.enumerable})}return C.set(o,r),r},C;var F=(o)=>o;function S(o,r){this[o]=F.bind(null,r)}var d=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var M={};d(M,{CentralIconBase:()=>a});module.exports=I(M);var v=B(require("react")),x=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return v.default.createElement(x.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 w={};d(w,{default:()=>Z,IconMacbook:()=>g});module.exports=I(w);var m=B(require("react"));var P=require("react-native-svg"),g=(o)=>{return m.default.createElement(a,{...o},m.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3H21V16.75H23V21H1V16.75H3V3ZM2 17.75V20H22V17.75H2Z",fill:"currentColor"}))},Z=g;
1
+ var d=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,H,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?F??=new WeakMap:H??=new WeakMap,c=s.get(r);if(c)return c}t=r!=null?d(h(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let a of i(r))if(!u.call(p,a))n(p,a,{get:B.bind(r,a),enumerable:!0});if(e)s.set(r,p);return p},x=(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 i(r))if(!u.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return f.set(r,o),o},f;var S=(r)=>r;function V(r,o){this[r]=S.bind(null,o)}var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:V.bind(o,t)})};var M={};P(M,{CentralIconBase:()=>m});module.exports=x(M);var g=I(require("react")),v=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return g.default.createElement(v.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 w={};P(w,{default:()=>Z,IconMacbook:()=>b});module.exports=x(w);var l=I(require("react"));var C=require("react-native-svg"),b=(r)=>{return l.default.createElement(m,{...r},l.default.createElement(C.Path,{d:"M23 21H1V18H23V21Z",fill:"currentColor"}),l.default.createElement(C.Path,{d:"M21 17H3V3H21V17Z",fill:"currentColor"}))},Z=b;
2
2
 
3
- //# debugId=F139914BA2EE802964756E2164756E21
3
+ //# debugId=521A39FDB2F4BF5564756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3H21V16.75H23V21H1V16.75H3V3ZM2 17.75V20H22V17.75H2Z\" fill=\"currentColor\"/></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=\"M23 21H1V18H23V21Z\" fill=\"currentColor\"/><Path d=\"M21 17H3V3H21V17Z\" fill=\"currentColor\"/></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,wBAA2J,EAA3J,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0DAA0D,KAAK,eAAc,CAAI,GAGrJ",
9
- "debugId": "F139914BA2EE802964756E2164756E21",
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,wBAAiI,EAAjI,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qBAAqB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,KAAK,eAAc,CAAI,GAG3H",
9
+ "debugId": "521A39FDB2F4BF5564756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return p.createElement(l,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as a}from"react-native-svg";var m=(r)=>{return t.createElement(e,{...r},t.createElement(a,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3H21V16.75H23V21H1V16.75H3V3ZM2 17.75V20H22V17.75H2Z",fill:"currentColor"}))},x=m;export{x as default,m as IconMacbook};
1
+ import l from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...p})=>{return l.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 t from"react";import{Path as n}from"react-native-svg";var m=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M23 21H1V18H23V21Z",fill:"currentColor"}),t.createElement(n,{d:"M21 17H3V3H21V17Z",fill:"currentColor"}))},g=m;export{g as default,m as IconMacbook};
2
2
 
3
- //# debugId=6EFA902551ADB74764756E2164756E21
3
+ //# debugId=66A137BC1C165C0664756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3H21V16.75H23V21H1V16.75H3V3ZM2 17.75V20H22V17.75H2Z\" fill=\"currentColor\"/></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=\"M23 21H1V18H23V21Z\" fill=\"currentColor\"/><Path d=\"M21 17H3V3H21V17Z\" fill=\"currentColor\"/></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,gBAA2J,EAA3J,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0DAA0D,KAAK,eAAc,CAAI,GAGrJ",
9
- "debugId": "6EFA902551ADB74764756E2164756E21",
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,gBAAiI,EAAjI,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qBAAqB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oBAAoB,KAAK,eAAc,CAAI,GAG3H",
9
+ "debugId": "66A137BC1C165C0664756E2164756E21",
10
10
  "names": []
11
11
  }
package/README.md CHANGED
@@ -1363,6 +1363,8 @@ Below is a complete list of available icons:
1363
1363
  - IconCanvasGrid
1364
1364
  - IconTopbarHiddenTopWide
1365
1365
  - IconBottombarHiddenBottomWide
1366
+ - IconLayoutAlignLeftRight
1367
+ - IconLayoutAlignTopBottom
1366
1368
 
1367
1369
  ### Location
1368
1370