@central-icons-react-native/round-filled-radius-0-stroke-2 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 g=Object.create;var{getPrototypeOf:H,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var y,F,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?y??=new WeakMap:F??=new WeakMap,s=m.get(r);if(s)return s}e=r!=null?g(H(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of f(r))if(!i.call(C,p))n(C,p,{get:u.bind(r,p),enumerable:!0});if(t)m.set(r,C);return C},I=(r)=>{var o=(c??=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:u.bind(r,t),enumerable:!(e=h(r,t))||e.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var w={};d(w,{CentralIconBase:()=>l});module.exports=I(w);var v=B(require("react")),x=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return v.default.createElement(x.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 L={};d(L,{default:()=>M,IconEnter:()=>V});module.exports=I(L);var a=B(require("react"));var P=require("react-native-svg"),V=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 3C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V10C3 9.73478 3.10543 9.4805 3.29297 9.29297C3.48051 9.10543 3.73478 9 4 9H9V4C9 3.73478 9.10543 3.48051 9.29297 3.29297C9.4805 3.10543 9.73478 3 10 3H20ZM15 9.5C14.4477 9.5 14 9.94772 14 10.5V14H10.75V12.9854C10.7497 12.7823 10.5198 12.6641 10.3545 12.7822L7.53516 14.7969C7.39557 14.8966 7.39557 15.1034 7.53516 15.2031L10.3545 17.2178C10.5198 17.3359 10.7497 17.2177 10.75 17.0146V16H15C15.5523 16 16 15.5523 16 15V10.5C16 9.94772 15.5523 9.5 15 9.5Z",fill:"currentColor"}))},M=V;
2
+
3
+ //# debugId=A7D908339CCEC66564756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20 3C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V10C3 9.73478 3.10543 9.4805 3.29297 9.29297C3.48051 9.10543 3.73478 9 4 9H9V4C9 3.73478 9.10543 3.48051 9.29297 3.29297C9.4805 3.10543 9.73478 3 10 3H20ZM15 9.5C14.4477 9.5 14 9.94772 14 10.5V14H10.75V12.9854C10.7497 12.7823 10.5198 12.6641 10.3545 12.7822L7.53516 14.7969C7.39557 14.8966 7.39557 15.1034 7.53516 15.2031L10.3545 17.2178C10.5198 17.3359 10.7497 17.2177 10.75 17.0146V16H15C15.5523 16 16 15.5523 16 15V10.5C16 9.94772 15.5523 9.5 15 9.5Z\" 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,wBAAmoB,EAAnoB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kiBAAkiB,KAAK,eAAc,CAAI,GAG7nB",
9
+ "debugId": "A7D908339CCEC66564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return C.createElement(p,{...n,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 l}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 3C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V10C3 9.73478 3.10543 9.4805 3.29297 9.29297C3.48051 9.10543 3.73478 9 4 9H9V4C9 3.73478 9.10543 3.48051 9.29297 3.29297C9.4805 3.10543 9.73478 3 10 3H20ZM15 9.5C14.4477 9.5 14 9.94772 14 10.5V14H10.75V12.9854C10.7497 12.7823 10.5198 12.6641 10.3545 12.7822L7.53516 14.7969C7.39557 14.8966 7.39557 15.1034 7.53516 15.2031L10.3545 17.2178C10.5198 17.3359 10.7497 17.2177 10.75 17.0146V16H15C15.5523 16 16 15.5523 16 15V10.5C16 9.94772 15.5523 9.5 15 9.5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconEnter};
2
+
3
+ //# debugId=7C8DE41630DF1F3064756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20 3C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V10C3 9.73478 3.10543 9.4805 3.29297 9.29297C3.48051 9.10543 3.73478 9 4 9H9V4C9 3.73478 9.10543 3.48051 9.29297 3.29297C9.4805 3.10543 9.73478 3 10 3H20ZM15 9.5C14.4477 9.5 14 9.94772 14 10.5V14H10.75V12.9854C10.7497 12.7823 10.5198 12.6641 10.3545 12.7822L7.53516 14.7969C7.39557 14.8966 7.39557 15.1034 7.53516 15.2031L10.3545 17.2178C10.5198 17.3359 10.7497 17.2177 10.75 17.0146V16H15C15.5523 16 16 15.5523 16 15V10.5C16 9.94772 15.5523 9.5 15 9.5Z\" 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,gBAAmoB,EAAnoB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kiBAAkiB,KAAK,eAAc,CAAI,GAG7nB",
9
+ "debugId": "7C8DE41630DF1F3064756E2164756E21",
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:h,defineProperty:n,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var F,S,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?F??=new WeakMap:S??=new WeakMap,f=m.get(o);if(f)return f}e=o!=null?V(h(o)):{};let C=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of c(o))if(!i.call(C,p))n(C,p,{get:u.bind(o,p),enumerable:!0});if(t)m.set(o,C);return C},B=(o)=>{var r=(s??=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=y(o,t))||e.enumerable})}return s.set(o,r),r},s;var b=(o)=>o;function M(o,r){this[o]=b.bind(null,r)}var I=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:M.bind(r,e)})};var Z={};I(Z,{CentralIconBase:()=>l});module.exports=B(Z);var d=g(require("react")),v=require("react-native-svg"),l=({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 w={};I(w,{default:()=>H,IconLayoutAlignLeftRight:()=>P});module.exports=B(w);var a=g(require("react"));var x=require("react-native-svg"),P=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 3C20.2652 3 20.5195 3.10543 20.707 3.29297C20.8946 3.4805 21 3.73478 21 4V20C21 20.5523 20.5523 21 20 21H4C3.73478 21 3.48051 20.8946 3.29297 20.707C3.10543 20.5195 3 20.2652 3 20V4C3 3.44772 3.44772 3 4 3H20ZM8 7C7.44772 7 7 7.44772 7 8V16C7 16.5523 7.44772 17 8 17C8.55228 17 9 16.5523 9 16V8C9 7.44772 8.55228 7 8 7ZM16 7C15.4477 7 15 7.44772 15 8V16C15 16.5523 15.4477 17 16 17C16.5523 17 17 16.5523 17 16V8C17 7.44772 16.5523 7 16 7Z",fill:"currentColor"}))},H=P;
2
+
3
+ //# debugId=E6C8729F7D4BAB7E64756E2164756E21
@@ -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=\"M20 3C20.2652 3 20.5195 3.10543 20.707 3.29297C20.8946 3.4805 21 3.73478 21 4V20C21 20.5523 20.5523 21 20 21H4C3.73478 21 3.48051 20.8946 3.29297 20.707C3.10543 20.5195 3 20.2652 3 20V4C3 3.44772 3.44772 3 4 3H20ZM8 7C7.44772 7 7 7.44772 7 8V16C7 16.5523 7.44772 17 8 17C8.55228 17 9 16.5523 9 16V8C9 7.44772 8.55228 7 8 7ZM16 7C15.4477 7 15 7.44772 15 8V16C15 16.5523 15.4477 17 16 17C16.5523 17 17 16.5523 17 16V8C17 7.44772 16.5523 7 16 7Z\" 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,wBAA8hB,EAA9hB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6bAA6b,KAAK,eAAc,CAAI,GAGxhB",
9
+ "debugId": "E6C8729F7D4BAB7E64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return C.createElement(p,{...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 l}from"react-native-svg";var a=(r)=>{return t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 3C20.2652 3 20.5195 3.10543 20.707 3.29297C20.8946 3.4805 21 3.73478 21 4V20C21 20.5523 20.5523 21 20 21H4C3.73478 21 3.48051 20.8946 3.29297 20.707C3.10543 20.5195 3 20.2652 3 20V4C3 3.44772 3.44772 3 4 3H20ZM8 7C7.44772 7 7 7.44772 7 8V16C7 16.5523 7.44772 17 8 17C8.55228 17 9 16.5523 9 16V8C9 7.44772 8.55228 7 8 7ZM16 7C15.4477 7 15 7.44772 15 8V16C15 16.5523 15.4477 17 16 17C16.5523 17 17 16.5523 17 16V8C17 7.44772 16.5523 7 16 7Z",fill:"currentColor"}))},v=a;export{v as default,a as IconLayoutAlignLeftRight};
2
+
3
+ //# debugId=4B6B9E68C8A425A664756E2164756E21
@@ -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=\"M20 3C20.2652 3 20.5195 3.10543 20.707 3.29297C20.8946 3.4805 21 3.73478 21 4V20C21 20.5523 20.5523 21 20 21H4C3.73478 21 3.48051 20.8946 3.29297 20.707C3.10543 20.5195 3 20.2652 3 20V4C3 3.44772 3.44772 3 4 3H20ZM8 7C7.44772 7 7 7.44772 7 8V16C7 16.5523 7.44772 17 8 17C8.55228 17 9 16.5523 9 16V8C9 7.44772 8.55228 7 8 7ZM16 7C15.4477 7 15 7.44772 15 8V16C15 16.5523 15.4477 17 16 17C16.5523 17 17 16.5523 17 16V8C17 7.44772 16.5523 7 16 7Z\" 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,gBAA8hB,EAA9hB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6bAA6b,KAAK,eAAc,CAAI,GAGxhB",
9
+ "debugId": "4B6B9E68C8A425A664756E2164756E21",
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:y,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var F,S,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?F??=new WeakMap:S??=new WeakMap,s=m.get(o);if(s)return s}e=o!=null?H(y(o)):{};let C=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of f(o))if(!i.call(C,p))n(C,p,{get:u.bind(o,p),enumerable:!0});if(t)m.set(o,C);return C},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=h(o,t))||e.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function M(o,r){this[o]=b.bind(null,r)}var d=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:M.bind(r,e)})};var Z={};d(Z,{CentralIconBase:()=>l});module.exports=I(Z);var g=B(require("react")),v=require("react-native-svg"),l=({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 w={};d(w,{default:()=>V,IconLayoutAlignTopBottom:()=>P});module.exports=I(w);var a=B(require("react"));var x=require("react-native-svg"),P=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 3C20.2652 3 20.5195 3.10543 20.707 3.29297C20.8946 3.4805 21 3.73478 21 4V20C21 20.5523 20.5523 21 20 21H4C3.73478 21 3.48051 20.8946 3.29297 20.707C3.10543 20.5195 3 20.2652 3 20V4C3 3.44772 3.44772 3 4 3H20ZM8 15C7.44772 15 7 15.4477 7 16C7 16.5523 7.44772 17 8 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H8ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H8Z",fill:"currentColor"}))},V=P;
2
+
3
+ //# debugId=43E6CBE3D14D495E64756E2164756E21
@@ -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=\"M20 3C20.2652 3 20.5195 3.10543 20.707 3.29297C20.8946 3.4805 21 3.73478 21 4V20C21 20.5523 20.5523 21 20 21H4C3.73478 21 3.48051 20.8946 3.29297 20.707C3.10543 20.5195 3 20.2652 3 20V4C3 3.44772 3.44772 3 4 3H20ZM8 15C7.44772 15 7 15.4477 7 16C7 16.5523 7.44772 17 8 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H8ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H8Z\" 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,wBAA8hB,EAA9hB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6bAA6b,KAAK,eAAc,CAAI,GAGxhB",
9
+ "debugId": "43E6CBE3D14D495E64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return C.createElement(p,{...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 l}from"react-native-svg";var a=(r)=>{return t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 3C20.2652 3 20.5195 3.10543 20.707 3.29297C20.8946 3.4805 21 3.73478 21 4V20C21 20.5523 20.5523 21 20 21H4C3.73478 21 3.48051 20.8946 3.29297 20.707C3.10543 20.5195 3 20.2652 3 20V4C3 3.44772 3.44772 3 4 3H20ZM8 15C7.44772 15 7 15.4477 7 16C7 16.5523 7.44772 17 8 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H8ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H8Z",fill:"currentColor"}))},v=a;export{v as default,a as IconLayoutAlignTopBottom};
2
+
3
+ //# debugId=BF55E2E3AF27911D64756E2164756E21
@@ -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=\"M20 3C20.2652 3 20.5195 3.10543 20.707 3.29297C20.8946 3.4805 21 3.73478 21 4V20C21 20.5523 20.5523 21 20 21H4C3.73478 21 3.48051 20.8946 3.29297 20.707C3.10543 20.5195 3 20.2652 3 20V4C3 3.44772 3.44772 3 4 3H20ZM8 15C7.44772 15 7 15.4477 7 16C7 16.5523 7.44772 17 8 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H8ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H8Z\" 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,gBAA8hB,EAA9hB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6bAA6b,KAAK,eAAc,CAAI,GAGxhB",
9
+ "debugId": "BF55E2E3AF27911D64756E2164756E21",
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 m=r?h??=new WeakMap:y??=new WeakMap,c=m.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)m.set(o,p);return p},I=(o)=>{var r=(s??=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 s.set(o,r),r},s;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:()=>C});module.exports=I(M);var v=B(require("react")),x=require("react-native-svg"),C=({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 a=B(require("react"));var P=require("react-native-svg"),g=(o)=>{return a.default.createElement(C,{...o},a.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V15H22C22.5523 15 23 15.4477 23 16V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V16C1 15.4477 1.44772 15 2 15H3V4ZM3 17V19H21V17H3Z",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 l of i(r))if(!u.call(p,l))n(p,l,{get:B.bind(r,l),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:()=>a});module.exports=x(M);var g=I(require("react")),v=require("react-native-svg"),a=({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 C=I(require("react"));var m=require("react-native-svg"),b=(r)=>{return C.default.createElement(a,{...r},C.default.createElement(m.Path,{d:"M22 16C22.5523 16 23 16.4477 23 17V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V17C1 16.4477 1.44772 16 2 16H22Z",fill:"currentColor"}),C.default.createElement(m.Path,{d:"M20 3C20.5523 3 21 3.44772 21 4V14H3V4C3 3.44772 3.44772 3 4 3H20Z",fill:"currentColor"}))},Z=b;
2
2
 
3
- //# debugId=2B16B67C73470EF164756E2164756E21
3
+ //# debugId=79C217A3877AE6C164756E2164756E21
@@ -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 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V15H22C22.5523 15 23 15.4477 23 16V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V16C1 15.4477 1.44772 15 2 15H3V4ZM3 17V19H21V17H3Z\" 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=\"M22 16C22.5523 16 23 16.4477 23 17V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V17C1 16.4477 1.44772 16 2 16H22Z\" fill=\"currentColor\"/><Path d=\"M20 3C20.5523 3 21 3.44772 21 4V14H3V4C3 3.44772 3.44772 3 4 3H20Z\" 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,wBAA6S,EAA7S,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4MAA4M,KAAK,eAAc,CAAI,GAGvS",
9
- "debugId": "2B16B67C73470EF164756E2164756E21",
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,wBAA8R,EAA9R,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iIAAiI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qEAAqE,KAAK,eAAc,CAAI,GAGxR",
9
+ "debugId": "79C217A3877AE6C164756E2164756E21",
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 C}from"react-native-svg";var a=(r)=>{return t.createElement(e,{...r},t.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V15H22C22.5523 15 23 15.4477 23 16V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V16C1 15.4477 1.44772 15 2 15H3V4ZM3 17V19H21V17H3Z",fill:"currentColor"}))},x=a;export{x as default,a as IconMacbook};
1
+ import C from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...p})=>{return C.createElement(l,{...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 a=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M22 16C22.5523 16 23 16.4477 23 17V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V17C1 16.4477 1.44772 16 2 16H22Z",fill:"currentColor"}),t.createElement(n,{d:"M20 3C20.5523 3 21 3.44772 21 4V14H3V4C3 3.44772 3.44772 3 4 3H20Z",fill:"currentColor"}))},g=a;export{g as default,a as IconMacbook};
2
2
 
3
- //# debugId=00502BB86050F8BA64756E2164756E21
3
+ //# debugId=6CD55CC641BFE85D64756E2164756E21
@@ -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 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V15H22C22.5523 15 23 15.4477 23 16V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V16C1 15.4477 1.44772 15 2 15H3V4ZM3 17V19H21V17H3Z\" 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=\"M22 16C22.5523 16 23 16.4477 23 17V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V17C1 16.4477 1.44772 16 2 16H22Z\" fill=\"currentColor\"/><Path d=\"M20 3C20.5523 3 21 3.44772 21 4V14H3V4C3 3.44772 3.44772 3 4 3H20Z\" 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,gBAA6S,EAA7S,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4MAA4M,KAAK,eAAc,CAAI,GAGvS",
9
- "debugId": "00502BB86050F8BA64756E2164756E21",
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,gBAA8R,EAA9R,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iIAAiI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qEAAqE,KAAK,eAAc,CAAI,GAGxR",
9
+ "debugId": "6CD55CC641BFE85D64756E2164756E21",
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