@central-icons-react-native/round-outlined-radius-1-stroke-1 1.1.264 → 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 IconEnter: FC<CentralIconBaseProps>;
4
+ export default IconEnter;
@@ -0,0 +1,3 @@
1
+ var k=Object.create;var{getPrototypeOf:V,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,f=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,y,B=(r,o,n)=>{var e=r!=null&&typeof r==="object";if(e){var i=o?h??=new WeakMap:y??=new WeakMap,m=i.get(r);if(m)return m}n=r!=null?k(V(r)):{};let p=o||!r||!r.__esModule?t(n,"default",{value:r,enumerable:!0}):n;for(let a of c(r))if(!f.call(p,a))t(p,a,{get:d.bind(r,a),enumerable:!0});if(e)i.set(r,p);return p},I=(r)=>{var o=(u??=new WeakMap).get(r),n;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!f.call(o,e))t(o,e,{get:d.bind(r,e),enumerable:!(n=v(r,e))||n.enumerable})}return u.set(r,o),o},u;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var L=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0,configurable:!0,set:H.bind(o,n)})};var S={};L(S,{CentralIconBase:()=>l});module.exports=I(S);var x=B(require("react")),P=require("react-native-svg"),l=({children:r,size:o=24,...n})=>{return x.default.createElement(P.Svg,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};L(b,{default:()=>M,IconEnter:()=>g});module.exports=I(b);var C=B(require("react"));var s=require("react-native-svg"),g=(r)=>{return C.default.createElement(l,{...r},C.default.createElement(s.Path,{d:"M19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V10.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H10.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 10.5C3.5 9.94772 3.94772 9.5 4.5 9.5H8.5C9.05229 9.5 9.5 9.05229 9.5 8.5V4.5C9.5 3.94772 9.94772 3.5 10.5 3.5L19.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(s.Path,{d:"M15 9.5V14C15 14.5523 14.5523 15 14 15H10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(s.Path,{d:"M10.4726 12.5182L7.37404 14.584C7.07717 14.7819 7.07717 15.2181 7.37404 15.416L10.4726 17.4818C10.8049 17.7033 11.25 17.4651 11.25 17.0657V15V12.9343C11.25 12.5349 10.8049 12.2967 10.4726 12.5182Z",fill:"currentColor"}))},M=g;
2
+
3
+ //# debugId=0F3D4EA17E316B9F64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconEnter/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 IconEnter: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V10.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H10.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 10.5C3.5 9.94772 3.94772 9.5 4.5 9.5H8.5C9.05229 9.5 9.5 9.05229 9.5 8.5V4.5C9.5 3.94772 9.94772 3.5 10.5 3.5L19.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15 9.5V14C15 14.5523 14.5523 15 14 15H10\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10.4726 12.5182L7.37404 14.584C7.07717 14.7819 7.07717 15.2181 7.37404 15.416L10.4726 17.4818C10.8049 17.7033 11.25 17.4651 11.25 17.0657V15V12.9343C11.25 12.5349 10.8049 12.2967 10.4726 12.5182Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEnter;\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,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAysB,EAAzsB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mQAAmQ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4CAA4C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGnsB",
9
+ "debugId": "0F3D4EA17E316B9F64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as s}from"react-native-svg";var t=({children:n,size:r=24,...C})=>{return p.createElement(s,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n)};import o from"react";import{Path as e}from"react-native-svg";var a=(n)=>{return o.createElement(t,{...n},o.createElement(e,{d:"M19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V10.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H10.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 10.5C3.5 9.94772 3.94772 9.5 4.5 9.5H8.5C9.05229 9.5 9.5 9.05229 9.5 8.5V4.5C9.5 3.94772 9.94772 3.5 10.5 3.5L19.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M15 9.5V14C15 14.5523 14.5523 15 14 15H10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M10.4726 12.5182L7.37404 14.584C7.07717 14.7819 7.07717 15.2181 7.37404 15.416L10.4726 17.4818C10.8049 17.7033 11.25 17.4651 11.25 17.0657V15V12.9343C11.25 12.5349 10.8049 12.2967 10.4726 12.5182Z",fill:"currentColor"}))},x=a;export{x as default,a as IconEnter};
2
+
3
+ //# debugId=A4EADC10E51A363964756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconEnter/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 IconEnter: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V10.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H10.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 10.5C3.5 9.94772 3.94772 9.5 4.5 9.5H8.5C9.05229 9.5 9.5 9.05229 9.5 8.5V4.5C9.5 3.94772 9.94772 3.5 10.5 3.5L19.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15 9.5V14C15 14.5523 14.5523 15 14 15H10\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10.4726 12.5182L7.37404 14.584C7.07717 14.7819 7.07717 15.2181 7.37404 15.416L10.4726 17.4818C10.8049 17.7033 11.25 17.4651 11.25 17.0657V15V12.9343C11.25 12.5349 10.8049 12.2967 10.4726 12.5182Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEnter;\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,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAysB,EAAzsB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mQAAmQ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,4CAA4C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGnsB",
9
+ "debugId": "A4EADC10E51A363964756E2164756E21",
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 P=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:m,getOwnPropertyDescriptor:v}=Object,d=Object.prototype.hasOwnProperty;function f(o){return this[o]}var y,F,L=(o,r,n)=>{var e=o!=null&&typeof o==="object";if(e){var u=r?y??=new WeakMap:F??=new WeakMap,l=u.get(o);if(l)return l}n=o!=null?P(h(o)):{};let s=r||!o||!o.__esModule?t(n,"default",{value:o,enumerable:!0}):n;for(let a of m(o))if(!d.call(s,a))t(s,a,{get:f.bind(o,a),enumerable:!0});if(e)u.set(o,s);return s},k=(o)=>{var r=(c??=new WeakMap).get(o),n;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of m(o))if(!d.call(r,e))t(r,e,{get:f.bind(o,e),enumerable:!(n=v(o,e))||n.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var g=(o,r)=>{for(var n in r)t(o,n,{get:r[n],enumerable:!0,configurable:!0,set:b.bind(r,n)})};var j={};g(j,{CentralIconBase:()=>i});module.exports=k(j);var B=L(require("react")),I=require("react-native-svg"),i=({children:o,size:r=24,...n})=>{return B.default.createElement(I.Svg,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var M={};g(M,{default:()=>V,IconLayoutAlignLeftRight:()=>x});module.exports=k(M);var p=L(require("react"));var C=require("react-native-svg"),x=(o)=>{return p.default.createElement(i,{...o},p.default.createElement(C.Path,{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M7.5 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M16.5 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},V=x;
2
+
3
+ //# debugId=30A401B99FB1DF7764756E2164756E21
@@ -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 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 7.5V16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16.5 7.5V16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignLeftRight;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,oFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqD,CAAC,IAAU,CAC3E,OAAO,wBAAid,EAAjd,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8KAA8K,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3c",
9
+ "debugId": "30A401B99FB1DF7764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:o=24,...p})=>{return s.createElement(C,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Path as e}from"react-native-svg";var a=(n)=>{return r.createElement(t,{...n},r.createElement(e,{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M7.5 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M16.5 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},B=a;export{B as default,a as IconLayoutAlignLeftRight};
2
+
3
+ //# debugId=2D7338AD830EDD4F64756E2164756E21
@@ -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 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 7.5V16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16.5 7.5V16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignLeftRight;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAid,EAAjd,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8KAA8K,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3c",
9
+ "debugId": "2D7338AD830EDD4F64756E2164756E21",
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 P=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,d=Object.prototype.hasOwnProperty;function f(o){return this[o]}var h,F,k=(o,r,n)=>{var e=o!=null&&typeof o==="object";if(e){var u=r?h??=new WeakMap:F??=new WeakMap,l=u.get(o);if(l)return l}n=o!=null?P(v(o)):{};let s=r||!o||!o.__esModule?t(n,"default",{value:o,enumerable:!0}):n;for(let a of c(o))if(!d.call(s,a))t(s,a,{get:f.bind(o,a),enumerable:!0});if(e)u.set(o,s);return s},B=(o)=>{var r=(m??=new WeakMap).get(o),n;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of c(o))if(!d.call(r,e))t(r,e,{get:f.bind(o,e),enumerable:!(n=y(o,e))||n.enumerable})}return m.set(o,r),r},m;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var L=(o,r)=>{for(var n in r)t(o,n,{get:r[n],enumerable:!0,configurable:!0,set:b.bind(r,n)})};var j={};L(j,{CentralIconBase:()=>i});module.exports=B(j);var I=k(require("react")),g=require("react-native-svg"),i=({children:o,size:r=24,...n})=>{return I.default.createElement(g.Svg,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var H={};L(H,{default:()=>M,IconLayoutAlignTopBottom:()=>x});module.exports=B(H);var p=k(require("react"));var C=require("react-native-svg"),x=(o)=>{return p.default.createElement(i,{...o},p.default.createElement(C.Path,{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M7.5 7.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M7.5 16.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},M=x;
2
+
3
+ //# debugId=EF8F3A62BB7EA22564756E2164756E21
@@ -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 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 7.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 16.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignTopBottom;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,oFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqD,CAAC,IAAU,CAC3E,OAAO,wBAAid,EAAjd,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8KAA8K,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3c",
9
+ "debugId": "EF8F3A62BB7EA22564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:o=24,...p})=>{return s.createElement(C,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Path as e}from"react-native-svg";var a=(n)=>{return r.createElement(t,{...n},r.createElement(e,{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M7.5 7.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M7.5 16.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},I=a;export{I as default,a as IconLayoutAlignTopBottom};
2
+
3
+ //# debugId=B8779329CE57497464756E2164756E21
@@ -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 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L19.5 3.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 7.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.5 16.5H16.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignTopBottom;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAid,EAAjd,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8KAA8K,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3c",
9
+ "debugId": "B8779329CE57497464756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var v=Object.create;var{getPrototypeOf:b,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,f=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var m=o?y??=new WeakMap:F??=new WeakMap,i=m.get(r);if(i)return i}e=r!=null?v(b(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!f.call(p,a))t(p,a,{get:B.bind(r,a),enumerable:!0});if(n)m.set(r,p);return p},k=(r)=>{var o=(l??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of u(r))if(!f.call(o,n))t(o,n,{get:B.bind(r,n),enumerable:!(e=h(r,n))||e.enumerable})}return l.set(r,o),o},l;var H=(r)=>r;function L(r,o){this[r]=H.bind(null,o)}var x=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:L.bind(o,e)})};var S={};x(S,{CentralIconBase:()=>C});module.exports=k(S);var P=I(require("react")),d=require("react-native-svg"),C=({children:r,size:o=24,...e})=>{return P.default.createElement(d.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var V={};x(V,{default:()=>M,IconMacbook:()=>g});module.exports=k(V);var s=I(require("react"));var c=require("react-native-svg"),g=(r)=>{return s.default.createElement(C,{...r},s.default.createElement(c.Path,{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V17.25H3.5V4.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),s.default.createElement(c.Path,{d:"M1.5 17.5H22.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H2.5C1.94772 20.5 1.5 20.0523 1.5 19.5V17.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},M=g;
1
+ var v=Object.create;var{getPrototypeOf:b,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,f=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var m=o?y??=new WeakMap:F??=new WeakMap,i=m.get(r);if(i)return i}e=r!=null?v(b(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!f.call(p,a))t(p,a,{get:B.bind(r,a),enumerable:!0});if(n)m.set(r,p);return p},k=(r)=>{var o=(l??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of u(r))if(!f.call(o,n))t(o,n,{get:B.bind(r,n),enumerable:!(e=h(r,n))||e.enumerable})}return l.set(r,o),o},l;var L=(r)=>r;function S(r,o){this[r]=L.bind(null,o)}var x=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var V={};x(V,{CentralIconBase:()=>C});module.exports=k(V);var P=I(require("react")),d=require("react-native-svg"),C=({children:r,size:o=24,...e})=>{return P.default.createElement(d.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var H={};x(H,{default:()=>M,IconMacbook:()=>g});module.exports=k(H);var s=I(require("react"));var c=require("react-native-svg"),g=(r)=>{return s.default.createElement(C,{...r},s.default.createElement(c.Path,{d:"M20.5 17.25V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),s.default.createElement(c.Path,{d:"M1.5 17.5H22.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H2.5C1.94772 20.5 1.5 20.0523 1.5 19.5V17.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},M=g;
2
2
 
3
- //# debugId=AD6A26C638C6249564756E2164756E21
3
+ //# debugId=ABEA230DD2C2FE2264756E2164756E21
@@ -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 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V17.25H3.5V4.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M1.5 17.5H22.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H2.5C1.94772 20.5 1.5 20.0523 1.5 19.5V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></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=\"M20.5 17.25V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M1.5 17.5H22.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H2.5C1.94772 20.5 1.5 20.0523 1.5 19.5V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\n"
7
7
  ],
8
- "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAA+X,EAA/X,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iGAAiG,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGzX",
9
- "debugId": "AD6A26C638C6249564756E2164756E21",
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,wBAA4X,EAA5X,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8FAA8F,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGtX",
9
+ "debugId": "ABEA230DD2C2FE2264756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import s from"react";import{Svg as a}from"react-native-svg";var n=({children:o,size:r=24,...p})=>{return s.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as t}from"react-native-svg";var C=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V17.25H3.5V4.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),e.createElement(t,{d:"M1.5 17.5H22.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H2.5C1.94772 20.5 1.5 20.0523 1.5 19.5V17.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},P=C;export{P as default,C as IconMacbook};
1
+ import s from"react";import{Svg as a}from"react-native-svg";var n=({children:o,size:r=24,...p})=>{return s.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as t}from"react-native-svg";var C=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M20.5 17.25V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),e.createElement(t,{d:"M1.5 17.5H22.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H2.5C1.94772 20.5 1.5 20.0523 1.5 19.5V17.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},P=C;export{P as default,C as IconMacbook};
2
2
 
3
- //# debugId=2997ECD6A2C9411E64756E2164756E21
3
+ //# debugId=CFA384126414939B64756E2164756E21
@@ -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 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V17.25H3.5V4.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M1.5 17.5H22.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H2.5C1.94772 20.5 1.5 20.0523 1.5 19.5V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></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=\"M20.5 17.25V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M1.5 17.5H22.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H2.5C1.94772 20.5 1.5 20.0523 1.5 19.5V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\n"
7
7
  ],
8
- "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAA+X,EAA/X,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iGAAiG,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,sGAAsG,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGzX",
9
- "debugId": "2997ECD6A2C9411E64756E2164756E21",
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,gBAA4X,EAA5X,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8FAA8F,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,sGAAsG,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGtX",
9
+ "debugId": "CFA384126414939B64756E2164756E21",
10
10
  "names": []
11
11
  }
package/README.md CHANGED
@@ -1304,6 +1304,7 @@ Below is a complete list of available icons:
1304
1304
  - IconOptionKey
1305
1305
  - IconControlKeyLeft
1306
1306
  - IconShortcut
1307
+ - IconEnter
1307
1308
 
1308
1309
  ### Layout
1309
1310
 
@@ -1362,6 +1363,8 @@ Below is a complete list of available icons:
1362
1363
  - IconCanvasGrid
1363
1364
  - IconTopbarHiddenTopWide
1364
1365
  - IconBottombarHiddenBottomWide
1366
+ - IconLayoutAlignLeftRight
1367
+ - IconLayoutAlignTopBottom
1365
1368
 
1366
1369
  ### Location
1367
1370