@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.265 → 1.1.267
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/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:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:b}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var h,y,k=(r,o,n)=>{var e=r!=null&&typeof r==="object";if(e){var i=o?h??=new WeakMap:y??=new WeakMap,l=i.get(r);if(l)return l}n=r!=null?g(v(r)):{};let s=o||!r||!r.__esModule?t(n,"default",{value:r,enumerable:!0}):n;for(let a of c(r))if(!d.call(s,a))t(s,a,{get:f.bind(r,a),enumerable:!0});if(e)i.set(r,s);return s},B=(r)=>{var o=(m??=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(!d.call(o,e))t(o,e,{get:f.bind(r,e),enumerable:!(n=b(r,e))||n.enumerable})}return m.set(r,o),o},m;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var I=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0,configurable:!0,set:H.bind(o,n)})};var S={};I(S,{CentralIconBase:()=>u});module.exports=B(S);var L=k(require("react")),x=require("react-native-svg"),u=({children:r,size:o=24,...n})=>{return L.default.createElement(x.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 j={};I(j,{default:()=>M,IconAlbums2:()=>P});module.exports=B(j);var p=k(require("react"));var C=require("react-native-svg"),P=(r)=>{return p.default.createElement(u,{...r},p.default.createElement(C.Path,{d:"M18.5 3.5H5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M19.5 7.5H4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M5.45239 11.5H18.5476C19.8916 11.5 20.853 12.7991 20.4603 14.0844L18.9325 19.0844C18.6755 19.9255 17.8993 20.5 17.0198 20.5H6.98017C6.10072 20.5 5.32446 19.9255 5.06747 19.0844L3.53969 14.0844C3.14695 12.7991 4.10842 11.5 5.45239 11.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},M=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=ED91E42F0AF95EB864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAlbums2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18.5 3.5H5.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M19.5 7.5H4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.45239 11.5H18.5476C19.8916 11.5 20.853 12.7991 20.4603 14.0844L18.9325 19.0844C18.6755 19.9255 17.8993 20.5 17.0198 20.5H6.98017C6.10072 20.5 5.32446 19.9255 5.06747 19.0844L3.53969 14.0844C3.14695 12.7991 4.10842 11.5 5.45239 11.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAghB,EAAhhB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,8OAA8O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG1gB",
|
|
9
|
+
"debugId": "ED91E42F0AF95EB864756E2164756E21",
|
|
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:r=24,...p})=>{return s.createElement(C,{...p,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:"M18.5 3.5H5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M19.5 7.5H4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M5.45239 11.5H18.5476C19.8916 11.5 20.853 12.7991 20.4603 14.0844L18.9325 19.0844C18.6755 19.9255 17.8993 20.5 17.0198 20.5H6.98017C6.10072 20.5 5.32446 19.9255 5.06747 19.0844L3.53969 14.0844C3.14695 12.7991 4.10842 11.5 5.45239 11.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},L=a;export{L as default,a as IconAlbums2};
|
|
2
|
+
|
|
3
|
+
//# debugId=C1CD7A8DF8EAA5C964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAlbums2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18.5 3.5H5.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M19.5 7.5H4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.45239 11.5H18.5476C19.8916 11.5 20.853 12.7991 20.4603 14.0844L18.9325 19.0844C18.6755 19.9255 17.8993 20.5 17.0198 20.5H6.98017C6.10072 20.5 5.32446 19.9255 5.06747 19.0844L3.53969 14.0844C3.14695 12.7991 4.10842 11.5 5.45239 11.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAghB,EAAhhB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG1gB",
|
|
9
|
+
"debugId": "C1CD7A8DF8EAA5C964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:h}=Object,d=Object.prototype.hasOwnProperty;function f(o){return this[o]}var y,F,k=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var i=r?y??=new WeakMap:F??=new WeakMap,l=i.get(o);if(l)return l}e=o!=null?g(v(o)):{};let s=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let a of c(o))if(!d.call(s,a))t(s,a,{get:f.bind(o,a),enumerable:!0});if(n)i.set(o,s);return s},B=(o)=>{var r=(m??=new WeakMap).get(o),e;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of c(o))if(!d.call(r,n))t(r,n,{get:f.bind(o,n),enumerable:!(e=h(o,n))||e.enumerable})}return m.set(o,r),r},m;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var I=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var j={};I(j,{CentralIconBase:()=>u});module.exports=B(j);var L=k(require("react")),P=require("react-native-svg"),u=({children:o,size:r=24,...e})=>{return L.default.createElement(P.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 H={};I(H,{default:()=>M,IconHomePlus:()=>x});module.exports=B(H);var p=k(require("react"));var C=require("react-native-svg"),x=(o)=>{return p.default.createElement(u,{...o},p.default.createElement(C.Path,{d:"M4.48596 7.92002C3.87508 8.27936 3.5 8.93516 3.5 9.64389V18.5C3.5 19.6046 4.39543 20.5 5.5 20.5H18.5C19.6046 20.5 20.5 19.6046 20.5 18.5V9.64389C20.5 8.93516 20.1249 8.27936 19.514 7.92002L13.014 4.09649C12.3881 3.72832 11.6119 3.72832 10.986 4.09649L4.48596 7.92002Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M12 10V16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M9 13H15",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},M=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=ECE6DDC9E22E641764756E2164756E21
|
|
@@ -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.48596 7.92002C3.87508 8.27936 3.5 8.93516 3.5 9.64389V18.5C3.5 19.6046 4.39543 20.5 5.5 20.5H18.5C19.6046 20.5 20.5 19.6046 20.5 18.5V9.64389C20.5 8.93516 20.1249 8.27936 19.514 7.92002L13.014 4.09649C12.3881 3.72832 11.6119 3.72832 10.986 4.09649L4.48596 7.92002Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 10V16\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9 13H15\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAuiB,EAAviB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8QAA8Q,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGjiB",
|
|
9
|
+
"debugId": "ECE6DDC9E22E641764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as C}from"react-native-svg";var t=({children:e,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"},e)};import r from"react";import{Path as n}from"react-native-svg";var a=(e)=>{return r.createElement(t,{...e},r.createElement(n,{d:"M4.48596 7.92002C3.87508 8.27936 3.5 8.93516 3.5 9.64389V18.5C3.5 19.6046 4.39543 20.5 5.5 20.5H18.5C19.6046 20.5 20.5 19.6046 20.5 18.5V9.64389C20.5 8.93516 20.1249 8.27936 19.514 7.92002L13.014 4.09649C12.3881 3.72832 11.6119 3.72832 10.986 4.09649L4.48596 7.92002Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 10V16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M9 13H15",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},L=a;export{L as default,a as IconHomePlus};
|
|
2
|
+
|
|
3
|
+
//# debugId=D91A435DA6CBAF0164756E2164756E21
|
|
@@ -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.48596 7.92002C3.87508 8.27936 3.5 8.93516 3.5 9.64389V18.5C3.5 19.6046 4.39543 20.5 5.5 20.5H18.5C19.6046 20.5 20.5 19.6046 20.5 18.5V9.64389C20.5 8.93516 20.1249 8.27936 19.514 7.92002L13.014 4.09649C12.3881 3.72832 11.6119 3.72832 10.986 4.09649L4.48596 7.92002Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 10V16\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9 13H15\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAuiB,EAAviB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8QAA8Q,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGjiB",
|
|
9
|
+
"debugId": "D91A435DA6CBAF0164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -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 5.5C3.5 4.39543 4.39543 3.5 5.5 3.5L18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 5.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=BB68BF93FC2080D964756E2164756E21
|
|
@@ -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 5.5C3.5 4.39543 4.39543 3.5 5.5 3.5L18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 5.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": "BB68BF93FC2080D964756E2164756E21",
|
|
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 5.5C3.5 4.39543 4.39543 3.5 5.5 3.5L18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 5.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=CB25C3CA37E2AE9A64756E2164756E21
|
|
@@ -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 5.5C3.5 4.39543 4.39543 3.5 5.5 3.5L18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 5.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": "CB25C3CA37E2AE9A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -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 5.5C3.5 4.39543 4.39543 3.5 5.5 3.5L18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 5.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=96157FB6C5F45D0A64756E2164756E21
|
|
@@ -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 5.5C3.5 4.39543 4.39543 3.5 5.5 3.5L18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 5.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": "96157FB6C5F45D0A64756E2164756E21",
|
|
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 5.5C3.5 4.39543 4.39543 3.5 5.5 3.5L18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 5.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=55CAC7DC87078FD764756E2164756E21
|
|
@@ -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 5.5C3.5 4.39543 4.39543 3.5 5.5 3.5L18.5 3.5C19.6046 3.5 20.5 4.39543 20.5 5.5V18.5C20.5 19.6046 19.6046 20.5 18.5 20.5H5.5C4.39543 20.5 3.5 19.6046 3.5 18.5L3.5 5.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": "55CAC7DC87078FD764756E2164756E21",
|
|
10
|
+
"names": []
|
|
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
|
|