@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.265 → 1.1.267
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconAlbums2/index.d.ts +4 -0
- package/IconAlbums2/index.js +3 -0
- package/IconAlbums2/index.js.map +11 -0
- package/IconAlbums2/index.mjs +3 -0
- package/IconAlbums2/index.mjs.map +11 -0
- package/IconHomePlus/index.d.ts +4 -0
- package/IconHomePlus/index.js +3 -0
- package/IconHomePlus/index.js.map +11 -0
- package/IconHomePlus/index.mjs +3 -0
- package/IconHomePlus/index.mjs.map +11 -0
- package/IconLayoutAlignLeftRight/index.d.ts +4 -0
- package/IconLayoutAlignLeftRight/index.js +3 -0
- package/IconLayoutAlignLeftRight/index.js.map +11 -0
- package/IconLayoutAlignLeftRight/index.mjs +3 -0
- package/IconLayoutAlignLeftRight/index.mjs.map +11 -0
- package/IconLayoutAlignTopBottom/index.d.ts +4 -0
- package/IconLayoutAlignTopBottom/index.js +3 -0
- package/IconLayoutAlignTopBottom/index.js.map +11 -0
- package/IconLayoutAlignTopBottom/index.mjs +3 -0
- package/IconLayoutAlignTopBottom/index.mjs.map +11 -0
- package/IconMacbook/index.js +2 -2
- package/IconMacbook/index.js.map +3 -3
- package/IconMacbook/index.mjs +2 -2
- package/IconMacbook/index.mjs.map +3 -3
- package/README.md +4 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +4 -0
- package/index.js +12 -0
- package/index.mjs +4 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +6 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:L}=Object,f=Object.prototype.hasOwnProperty;function k(r){return this[r]}var b,y,d=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var C=o?b??=new WeakMap:y??=new WeakMap,c=C.get(r);if(c)return c}e=r!=null?g(v(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!f.call(p,l))n(p,l,{get:k.bind(r,l),enumerable:!0});if(t)C.set(r,p);return p},B=(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 i(r))if(!f.call(o,t))n(o,t,{get:k.bind(r,t),enumerable:!(e=L(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 I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var S={};I(S,{CentralIconBase:()=>m});module.exports=B(S);var h=d(require("react")),x=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return h.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 q={};I(q,{default:()=>M,IconAlbums2:()=>P});module.exports=B(q);var s=d(require("react"));var a=require("react-native-svg"),P=(r)=>{return s.default.createElement(m,{...r},s.default.createElement(a.Path,{d:"M18 4H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),s.default.createElement(a.Path,{d:"M19 8H5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),s.default.createElement(a.Path,{d:"M4 12H20L18.5 20H5.5L4 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},M=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=58B13B269125275B64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAlbums2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18 4H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M19 8H5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M4 12H20L18.5 20H5.5L4 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAAiS,EAAjS,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAG3R",
|
|
9
|
+
"debugId": "58B13B269125275B64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as a}from"react-native-svg";var n=({children:e,size:r=24,...s})=>{return p.createElement(a,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as t}from"react-native-svg";var l=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M18 4H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M19 8H5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M4 12H20L18.5 20H5.5L4 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},h=l;export{h as default,l as IconAlbums2};
|
|
2
|
+
|
|
3
|
+
//# debugId=DE3285D08C3177DD64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAlbums2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18 4H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M19 8H5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M4 12H20L18.5 20H5.5L4 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAAiS,EAAjS,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAG3R",
|
|
9
|
+
"debugId": "DE3285D08C3177DD64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var k=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function d(r){return this[r]}var F,S,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var a=o?F??=new WeakMap:S??=new WeakMap,c=a.get(r);if(c)return c}t=r!=null?k(v(r)):{};let s=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let m of f(r))if(!i.call(s,m))n(s,m,{get:d.bind(r,m),enumerable:!0});if(e)a.set(r,s);return s},I=(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(!i.call(o,e))n(o,e,{get:d.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return u.set(r,o),o},u;var b=(r)=>r;function H(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:H.bind(o,t)})};var M={};P(M,{CentralIconBase:()=>C});module.exports=I(M);var h=B(require("react")),x=require("react-native-svg"),C=({children:r,size:o=24,...t})=>{return h.default.createElement(x.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={};P(V,{default:()=>W,IconHomePlus:()=>g});module.exports=I(V);var p=B(require("react"));var l=require("react-native-svg"),g=(r)=>{return p.default.createElement(C,{...r},p.default.createElement(l.Path,{d:"M4 9V20H20V9L12 4L4 9Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(l.Path,{d:"M12 10V16",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(l.Path,{d:"M9 13H15",stroke:"currentColor",strokeWidth:"2"}))},W=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=535F4972160AE34464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHomePlus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 9V20H20V9L12 4L4 9Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 10V16\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M9 13H15\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAA2N,EAA3N,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGrN",
|
|
9
|
+
"debugId": "535F4972160AE34464756E2164756E21",
|
|
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:"M4 9V20H20V9L12 4L4 9Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M12 10V16",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M9 13H15",stroke:"currentColor",strokeWidth:"2"}))},h=m;export{h as default,m as IconHomePlus};
|
|
2
|
+
|
|
3
|
+
//# debugId=06B2A7C3877F44C364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHomePlus: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 9V20H20V9L12 4L4 9Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 10V16\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M9 13H15\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAA2N,EAA3N,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGrN",
|
|
9
|
+
"debugId": "06B2A7C3877F44C364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var k=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var L,F,g=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?L??=new WeakMap:F??=new WeakMap,i=m.get(r);if(i)return i}t=r!=null?k(v(r)):{};let s=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let l of f(r))if(!u.call(s,l))n(s,l,{get:d.bind(r,l),enumerable:!0});if(e)m.set(r,s);return s},h=(r)=>{var o=(c??=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(!u.call(o,e))n(o,e,{get:d.bind(r,e),enumerable:!(t=y(r,e))||t.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var B=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var M={};B(M,{CentralIconBase:()=>C});module.exports=h(M);var I=g(require("react")),x=require("react-native-svg"),C=({children:r,size:o=24,...t})=>{return I.default.createElement(x.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={};B(W,{default:()=>w,IconLayoutAlignLeftRight:()=>P});module.exports=h(W);var p=g(require("react"));var a=require("react-native-svg"),P=(r)=>{return p.default.createElement(C,{...r},p.default.createElement(a.Path,{d:"M4 4L20 4L20 20H4L4 4Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(a.Path,{d:"M8 7V17",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(a.Path,{d:"M16 7V17",stroke:"currentColor",strokeWidth:"2"}))},w=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=FAE7001836065AE564756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignLeftRight/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutAlignLeftRight: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 4L20 4L20 20H4L4 4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8 7V17\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M16 7V17\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAAyN,EAAzN,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGnN",
|
|
9
|
+
"debugId": "FAE7001836065AE564756E2164756E21",
|
|
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:"M4 4L20 4L20 20H4L4 4Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M8 7V17",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M16 7V17",stroke:"currentColor",strokeWidth:"2"}))},I=l;export{I as default,l as IconLayoutAlignLeftRight};
|
|
2
|
+
|
|
3
|
+
//# debugId=C5C16A6DE0565A1D64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignLeftRight/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutAlignLeftRight: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 4L20 4L20 20H4L4 4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8 7V17\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M16 7V17\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAAyN,EAAzN,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGnN",
|
|
9
|
+
"debugId": "C5C16A6DE0565A1D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var k=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function B(o){return this[o]}var F,L,d=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var C=r?F??=new WeakMap:L??=new WeakMap,c=C.get(o);if(c)return c}t=o!=null?k(v(o)):{};let s=r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t;for(let l of u(o))if(!f.call(s,l))n(s,l,{get:B.bind(o,l),enumerable:!0});if(e)C.set(o,s);return s},I=(o)=>{var r=(i??=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 u(o))if(!f.call(r,e))n(r,e,{get:B.bind(o,e),enumerable:!(t=y(o,e))||t.enumerable})}return i.set(o,r),r},i;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var g=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0,configurable:!0,set:b.bind(r,t)})};var H={};g(H,{CentralIconBase:()=>m});module.exports=I(H);var h=d(require("react")),x=require("react-native-svg"),m=({children:o,size:r=24,...t})=>{return h.default.createElement(x.Svg,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var M={};g(M,{default:()=>W,IconLayoutAlignTopBottom:()=>P});module.exports=I(M);var p=d(require("react"));var a=require("react-native-svg"),P=(o)=>{return p.default.createElement(m,{...o},p.default.createElement(a.Path,{d:"M4 4L20 4L20 20H4L4 4Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(a.Path,{d:"M7 8H17",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(a.Path,{d:"M7 16H17",stroke:"currentColor",strokeWidth:"2"}))},W=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=F046EABD89D1576C64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignTopBottom/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutAlignTopBottom: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 4L20 4L20 20H4L4 4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M7 8H17\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M7 16H17\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAAyN,EAAzN,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGnN",
|
|
9
|
+
"debugId": "F046EABD89D1576C64756E2164756E21",
|
|
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:"M4 4L20 4L20 20H4L4 4Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement(e,{d:"M7 8H17",stroke:"currentColor",strokeWidth:"2"}),r.createElement(e,{d:"M7 16H17",stroke:"currentColor",strokeWidth:"2"}))},h=l;export{h as default,l as IconLayoutAlignTopBottom};
|
|
2
|
+
|
|
3
|
+
//# debugId=0F21E0AED874E5FA64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignTopBottom/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutAlignTopBottom: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 4L20 4L20 20H4L4 4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M7 8H17\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M7 16H17\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAAyN,EAAzN,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGnN",
|
|
9
|
+
"debugId": "0F21E0AED874E5FA64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconMacbook/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var h=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:b}=Object,f=Object.prototype.hasOwnProperty;function 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?h(v(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!f.call(p,a))n(p,a,{get:B.bind(r,a),enumerable:!0});if(t)C.set(r,p);return p},k=(r)=>{var o=(i??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!f.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=b(r,t))||e.enumerable})}return i.set(r,o),o},i;var
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:b}=Object,f=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?h(v(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!f.call(p,a))n(p,a,{get:B.bind(r,a),enumerable:!0});if(t)C.set(r,p);return p},k=(r)=>{var o=(i??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!f.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=b(r,t))||e.enumerable})}return i.set(r,o),o},i;var S=(r)=>r;function V(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:V.bind(o,e)})};var H={};x(H,{CentralIconBase:()=>c});module.exports=k(H);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 M={};x(M,{default:()=>q,IconMacbook:()=>g});module.exports=k(M);var s=I(require("react"));var m=require("react-native-svg"),g=(r)=>{return s.default.createElement(c,{...r},s.default.createElement(m.Path,{d:"M20 15.75V4H4V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),s.default.createElement(m.Path,{d:"M2 16H22V20H2V16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},q=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=6BFB6A2A811CE18764756E2164756E21
|
package/IconMacbook/index.js.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconMacbook/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMacbook: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMacbook: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20 15.75V4H4V15.75\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M2 16H22V20H2V16Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAoN,EAApN,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sBAAsB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAG9M",
|
|
9
|
+
"debugId": "6BFB6A2A811CE18764756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconMacbook/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import s from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>{return s.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as n}from"react-native-svg";var c=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>{return s.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as n}from"react-native-svg";var c=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M20 15.75V4H4V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement(n,{d:"M2 16H22V20H2V16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},P=c;export{P as default,c as IconMacbook};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=994604A951EDF89964756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconMacbook/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMacbook: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMacbook: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20 15.75V4H4V15.75\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M2 16H22V20H2V16Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAoN,EAApN,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sBAAsB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAG9M",
|
|
9
|
+
"debugId": "994604A951EDF89964756E2164756E21",
|
|
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
|
|