@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.266 → 1.1.268
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/IconCreditCardNfc/index.d.ts +4 -0
- package/IconCreditCardNfc/index.js +3 -0
- package/IconCreditCardNfc/index.js.map +11 -0
- package/IconCreditCardNfc/index.mjs +3 -0
- package/IconCreditCardNfc/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/README.md +3 -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 +3 -0
- package/index.js +9 -0
- package/index.mjs +3 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +5 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:b,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function i(o){return this[o]}var y,F,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?y??=new WeakMap:F??=new WeakMap,s=m.get(o);if(s)return s}e=o!=null?H(b(o)):{};let C=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of f(o))if(!u.call(C,p))n(C,p,{get:i.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(!u.call(r,t))n(r,t,{get:i.bind(o,t),enumerable:!(e=h(o,t))||e.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function M(o,r){this[o]=S.bind(null,r)}var d=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:M.bind(r,e)})};var Z={};d(Z,{CentralIconBase:()=>l});module.exports=I(Z);var v=B(require("react")),x=require("react-native-svg"),l=({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:()=>L,IconAlbums2:()=>g});module.exports=I(w);var a=B(require("react"));var P=require("react-native-svg"),g=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M20.7695 11.3614C20.9595 11.5903 21.0377 11.8919 20.9829 12.1843L19.4829 20.1843C19.3942 20.6573 18.9812 21 18.5 21H5.49999C5.01878 21 4.6058 20.6573 4.51712 20.1843L3.01712 12.1843C2.9623 11.8919 3.0405 11.5903 3.23048 11.3614C3.42047 11.1324 3.70251 11 3.99999 11H20C20.2975 11 20.5795 11.1324 20.7695 11.3614ZM20 8C20 8.55228 19.5523 9 19 9H4.99999C4.44771 9 3.99999 8.55228 3.99999 8C3.99999 7.44772 4.44771 7 4.99999 7H19C19.5523 7 20 7.44772 20 8ZM19 4C19 4.55228 18.5523 5 18 5H5.99999C5.44771 5 4.99999 4.55228 4.99999 4C4.99999 3.44772 5.44771 3 5.99999 3H18C18.5523 3 19 3.44772 19 4Z",fill:"currentColor"}))},L=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=1045488B91AD442F64756E2164756E21
|
|
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.7695 11.3614C20.9595 11.5903 21.0377 11.8919 20.9829 12.1843L19.4829 20.1843C19.3942 20.6573 18.9812 21 18.5 21H5.49999C5.01878 21 4.6058 20.6573 4.51712 20.1843L3.01712 12.1843C2.9623 11.8919 3.0405 11.5903 3.23048 11.3614C3.42047 11.1324 3.70251 11 3.99999 11H20C20.2975 11 20.5795 11.1324 20.7695 11.3614ZM20 8C20 8.55228 19.5523 9 19 9H4.99999C4.44771 9 3.99999 8.55228 3.99999 8C3.99999 7.44772 4.44771 7 4.99999 7H19C19.5523 7 20 7.44772 20 8ZM19 4C19 4.55228 18.5523 5 18 5H5.99999C5.44771 5 4.99999 4.55228 4.99999 4C4.99999 3.44772 5.44771 3 5.99999 3H18C18.5523 3 19 3.44772 19 4Z\" fill=\"currentColor\"/></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,wBAAsrB,EAAtrB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qlBAAqlB,KAAK,eAAc,CAAI,GAGhrB",
|
|
9
|
+
"debugId": "1045488B91AD442F64756E2164756E21",
|
|
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.7695 11.3614C20.9595 11.5903 21.0377 11.8919 20.9829 12.1843L19.4829 20.1843C19.3942 20.6573 18.9812 21 18.5 21H5.49999C5.01878 21 4.6058 20.6573 4.51712 20.1843L3.01712 12.1843C2.9623 11.8919 3.0405 11.5903 3.23048 11.3614C3.42047 11.1324 3.70251 11 3.99999 11H20C20.2975 11 20.5795 11.1324 20.7695 11.3614ZM20 8C20 8.55228 19.5523 9 19 9H4.99999C4.44771 9 3.99999 8.55228 3.99999 8C3.99999 7.44772 4.44771 7 4.99999 7H19C19.5523 7 20 7.44772 20 8ZM19 4C19 4.55228 18.5523 5 18 5H5.99999C5.44771 5 4.99999 4.55228 4.99999 4C4.99999 3.44772 5.44771 3 5.99999 3H18C18.5523 3 19 3.44772 19 4Z",fill:"currentColor"}))},x=a;export{x as default,a as IconAlbums2};
|
|
2
|
+
|
|
3
|
+
//# debugId=F4B3A177AA8B79ED64756E2164756E21
|
|
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.7695 11.3614C20.9595 11.5903 21.0377 11.8919 20.9829 12.1843L19.4829 20.1843C19.3942 20.6573 18.9812 21 18.5 21H5.49999C5.01878 21 4.6058 20.6573 4.51712 20.1843L3.01712 12.1843C2.9623 11.8919 3.0405 11.5903 3.23048 11.3614C3.42047 11.1324 3.70251 11 3.99999 11H20C20.2975 11 20.5795 11.1324 20.7695 11.3614ZM20 8C20 8.55228 19.5523 9 19 9H4.99999C4.44771 9 3.99999 8.55228 3.99999 8C3.99999 7.44772 4.44771 7 4.99999 7H19C19.5523 7 20 7.44772 20 8ZM19 4C19 4.55228 18.5523 5 18 5H5.99999C5.44771 5 4.99999 4.55228 4.99999 4C4.99999 3.44772 5.44771 3 5.99999 3H18C18.5523 3 19 3.44772 19 4Z\" fill=\"currentColor\"/></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,gBAAsrB,EAAtrB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qlBAAqlB,KAAK,eAAc,CAAI,GAGhrB",
|
|
9
|
+
"debugId": "F4B3A177AA8B79ED64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:y,defineProperty:e,getOwnPropertyNames:i,getOwnPropertyDescriptor:F}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var H,M,B=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?H??=new WeakMap:M??=new WeakMap,s=m.get(r);if(s)return s}C=r!=null?h(y(r)):{};let p=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let f of i(r))if(!u.call(p,f))e(p,f,{get:d.bind(r,f),enumerable:!0});if(t)m.set(r,p);return p},I=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of i(r))if(!u.call(o,t))e(o,t,{get:d.bind(r,t),enumerable:!(C=F(r,t))||C.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function Z(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:Z.bind(o,C)})};var b={};x(b,{CentralIconBase:()=>a});module.exports=I(b);var P=B(require("react")),g=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return P.default.createElement(g.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var V={};x(V,{default:()=>w,IconCreditCardNfc:()=>v});module.exports=I(V);var n=B(require("react"));var l=require("react-native-svg"),v=(r)=>{return n.default.createElement(a,{...r},n.default.createElement(l.Path,{d:"M22 11C17.0294 11 13 15.0294 13 20H3C2.44772 20 2 19.5523 2 19V11H22Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20.835 13.0967C21.3795 13.0055 21.895 13.3734 21.9863 13.918C22.0774 14.4625 21.7096 14.978 21.165 15.0693C19.0735 15.4204 17.4204 17.0735 17.0693 19.165C16.978 19.7096 16.4625 20.0774 15.918 19.9863C15.3734 19.895 15.0056 19.3795 15.0967 18.835C15.5888 15.9019 17.9019 13.5888 20.835 13.0967Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20.5996 16.792C21.1056 16.5709 21.6949 16.8016 21.916 17.3076C22.1371 17.8137 21.9064 18.4029 21.4004 18.624C21.0545 18.7751 20.7751 19.0545 20.624 19.4004C20.4029 19.9064 19.8137 20.1371 19.3076 19.916C18.8016 19.6948 18.5709 19.1057 18.792 18.5996C19.1448 17.7921 19.7921 17.1448 20.5996 16.792Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21 4C21.5523 4 22 4.44772 22 5V9H2V5C2 4.44772 2.44772 4 3 4H21Z",fill:"currentColor"}))},w=v;
|
|
2
|
+
|
|
3
|
+
//# debugId=CC1101CC239812BA64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconCreditCardNfc/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 IconCreditCardNfc: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M22 11C17.0294 11 13 15.0294 13 20H3C2.44772 20 2 19.5523 2 19V11H22Z\" fill=\"currentColor\"/><Path d=\"M20.835 13.0967C21.3795 13.0055 21.895 13.3734 21.9863 13.918C22.0774 14.4625 21.7096 14.978 21.165 15.0693C19.0735 15.4204 17.4204 17.0735 17.0693 19.165C16.978 19.7096 16.4625 20.0774 15.918 19.9863C15.3734 19.895 15.0056 19.3795 15.0967 18.835C15.5888 15.9019 17.9019 13.5888 20.835 13.0967Z\" fill=\"currentColor\"/><Path d=\"M20.5996 16.792C21.1056 16.5709 21.6949 16.8016 21.916 17.3076C22.1371 17.8137 21.9064 18.4029 21.4004 18.624C21.0545 18.7751 20.7751 19.0545 20.624 19.4004C20.4029 19.9064 19.8137 20.1371 19.3076 19.916C18.8016 19.6948 18.5709 19.1057 18.792 18.5996C19.1448 17.7921 19.7921 17.1448 20.5996 16.792Z\" fill=\"currentColor\"/><Path d=\"M21 4C21.5523 4 22 4.44772 22 5V9H2V5C2 4.44772 2.44772 4 3 4H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCreditCardNfc;\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,6ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAAo3B,EAAp3B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,wEAAwE,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,ySAAyS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6SAA6S,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oEAAoE,KAAK,eAAc,CAAI,GAG92B",
|
|
9
|
+
"debugId": "CC1101CC239812BA64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var n=({children:t,size:r=24,...e})=>{return l.createElement(p,{...e,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 C}from"react-native-svg";var f=(t)=>{return o.createElement(n,{...t},o.createElement(C,{d:"M22 11C17.0294 11 13 15.0294 13 20H3C2.44772 20 2 19.5523 2 19V11H22Z",fill:"currentColor"}),o.createElement(C,{d:"M20.835 13.0967C21.3795 13.0055 21.895 13.3734 21.9863 13.918C22.0774 14.4625 21.7096 14.978 21.165 15.0693C19.0735 15.4204 17.4204 17.0735 17.0693 19.165C16.978 19.7096 16.4625 20.0774 15.918 19.9863C15.3734 19.895 15.0056 19.3795 15.0967 18.835C15.5888 15.9019 17.9019 13.5888 20.835 13.0967Z",fill:"currentColor"}),o.createElement(C,{d:"M20.5996 16.792C21.1056 16.5709 21.6949 16.8016 21.916 17.3076C22.1371 17.8137 21.9064 18.4029 21.4004 18.624C21.0545 18.7751 20.7751 19.0545 20.624 19.4004C20.4029 19.9064 19.8137 20.1371 19.3076 19.916C18.8016 19.6948 18.5709 19.1057 18.792 18.5996C19.1448 17.7921 19.7921 17.1448 20.5996 16.792Z",fill:"currentColor"}),o.createElement(C,{d:"M21 4C21.5523 4 22 4.44772 22 5V9H2V5C2 4.44772 2.44772 4 3 4H21Z",fill:"currentColor"}))},P=f;export{P as default,f as IconCreditCardNfc};
|
|
2
|
+
|
|
3
|
+
//# debugId=787D273EC87F153664756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconCreditCardNfc/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 IconCreditCardNfc: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M22 11C17.0294 11 13 15.0294 13 20H3C2.44772 20 2 19.5523 2 19V11H22Z\" fill=\"currentColor\"/><Path d=\"M20.835 13.0967C21.3795 13.0055 21.895 13.3734 21.9863 13.918C22.0774 14.4625 21.7096 14.978 21.165 15.0693C19.0735 15.4204 17.4204 17.0735 17.0693 19.165C16.978 19.7096 16.4625 20.0774 15.918 19.9863C15.3734 19.895 15.0056 19.3795 15.0967 18.835C15.5888 15.9019 17.9019 13.5888 20.835 13.0967Z\" fill=\"currentColor\"/><Path d=\"M20.5996 16.792C21.1056 16.5709 21.6949 16.8016 21.916 17.3076C22.1371 17.8137 21.9064 18.4029 21.4004 18.624C21.0545 18.7751 20.7751 19.0545 20.624 19.4004C20.4029 19.9064 19.8137 20.1371 19.3076 19.916C18.8016 19.6948 18.5709 19.1057 18.792 18.5996C19.1448 17.7921 19.7921 17.1448 20.5996 16.792Z\" fill=\"currentColor\"/><Path d=\"M21 4C21.5523 4 22 4.44772 22 5V9H2V5C2 4.44772 2.44772 4 3 4H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCreditCardNfc;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAo3B,EAAp3B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,wEAAwE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ySAAyS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6SAA6S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oEAAoE,KAAK,eAAc,CAAI,GAG92B",
|
|
9
|
+
"debugId": "787D273EC87F153664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function i(o){return this[o]}var y,F,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?y??=new WeakMap:F??=new WeakMap,s=m.get(o);if(s)return s}e=o!=null?H(V(o)):{};let C=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of f(o))if(!u.call(C,p))n(C,p,{get:i.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(!u.call(r,t))n(r,t,{get:i.bind(o,t),enumerable:!(e=h(o,t))||e.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var P=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var w={};P(w,{CentralIconBase:()=>l});module.exports=I(w);var d=B(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 L={};P(L,{default:()=>M,IconHomePlus:()=>g});module.exports=I(L);var a=B(require("react"));var x=require("react-native-svg"),g=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.4697 3.15235C11.7939 2.94979 12.2061 2.94979 12.5303 3.15235L20.5303 8.15235C20.8223 8.33509 20.9999 8.65552 21 9V20C20.9998 20.5521 20.5522 21 20 21H4C3.44783 21 3.00018 20.5521 3 20V9C3.0001 8.65552 3.17773 8.33509 3.46973 8.15235L11.4697 3.15235ZM12 9.5C11.4478 9.5 11.0002 9.94785 11 10.5V12H9.5C8.94781 12 8.50016 12.4479 8.5 13C8.50019 13.5521 8.94783 14 9.5 14H11V15.5C11.0002 16.0521 11.4478 16.5 12 16.5C12.5522 16.5 12.9998 16.0521 13 15.5V14H14.5C15.0522 14 15.4998 13.5521 15.5 13C15.4998 12.4479 15.0522 12 14.5 12H13V10.5C12.9998 9.94785 12.5522 9.5 12 9.5Z",fill:"currentColor"}))},M=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=30572DE366EE26B864756E2164756E21
|
|
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.4697 3.15235C11.7939 2.94979 12.2061 2.94979 12.5303 3.15235L20.5303 8.15235C20.8223 8.33509 20.9999 8.65552 21 9V20C20.9998 20.5521 20.5522 21 20 21H4C3.44783 21 3.00018 20.5521 3 20V9C3.0001 8.65552 3.17773 8.33509 3.46973 8.15235L11.4697 3.15235ZM12 9.5C11.4478 9.5 11.0002 9.94785 11 10.5V12H9.5C8.94781 12 8.50016 12.4479 8.5 13C8.50019 13.5521 8.94783 14 9.5 14H11V15.5C11.0002 16.0521 11.4478 16.5 12 16.5C12.5522 16.5 12.9998 16.0521 13 15.5V14H14.5C15.0522 14 15.4998 13.5521 15.5 13C15.4998 12.4479 15.0522 12 14.5 12H13V10.5C12.9998 9.94785 12.5522 9.5 12 9.5Z\" fill=\"currentColor\"/></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,wBAAmqB,EAAnqB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kkBAAkkB,KAAK,eAAc,CAAI,GAG7pB",
|
|
9
|
+
"debugId": "30572DE366EE26B864756E2164756E21",
|
|
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:"M11.4697 3.15235C11.7939 2.94979 12.2061 2.94979 12.5303 3.15235L20.5303 8.15235C20.8223 8.33509 20.9999 8.65552 21 9V20C20.9998 20.5521 20.5522 21 20 21H4C3.44783 21 3.00018 20.5521 3 20V9C3.0001 8.65552 3.17773 8.33509 3.46973 8.15235L11.4697 3.15235ZM12 9.5C11.4478 9.5 11.0002 9.94785 11 10.5V12H9.5C8.94781 12 8.50016 12.4479 8.5 13C8.50019 13.5521 8.94783 14 9.5 14H11V15.5C11.0002 16.0521 11.4478 16.5 12 16.5C12.5522 16.5 12.9998 16.0521 13 15.5V14H14.5C15.0522 14 15.4998 13.5521 15.5 13C15.4998 12.4479 15.0522 12 14.5 12H13V10.5C12.9998 9.94785 12.5522 9.5 12 9.5Z",fill:"currentColor"}))},v=a;export{v as default,a as IconHomePlus};
|
|
2
|
+
|
|
3
|
+
//# debugId=4F7F0E33420F6D8C64756E2164756E21
|
|
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.4697 3.15235C11.7939 2.94979 12.2061 2.94979 12.5303 3.15235L20.5303 8.15235C20.8223 8.33509 20.9999 8.65552 21 9V20C20.9998 20.5521 20.5522 21 20 21H4C3.44783 21 3.00018 20.5521 3 20V9C3.0001 8.65552 3.17773 8.33509 3.46973 8.15235L11.4697 3.15235ZM12 9.5C11.4478 9.5 11.0002 9.94785 11 10.5V12H9.5C8.94781 12 8.50016 12.4479 8.5 13C8.50019 13.5521 8.94783 14 9.5 14H11V15.5C11.0002 16.0521 11.4478 16.5 12 16.5C12.5522 16.5 12.9998 16.0521 13 15.5V14H14.5C15.0522 14 15.4998 13.5521 15.5 13C15.4998 12.4479 15.0522 12 14.5 12H13V10.5C12.9998 9.94785 12.5522 9.5 12 9.5Z\" fill=\"currentColor\"/></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,gBAAmqB,EAAnqB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kkBAAkkB,KAAK,eAAc,CAAI,GAG7pB",
|
|
9
|
+
"debugId": "4F7F0E33420F6D8C64756E2164756E21",
|
|
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
|
|
|
@@ -1674,6 +1675,7 @@ Below is a complete list of available icons:
|
|
|
1674
1675
|
- Icon3dPackage
|
|
1675
1676
|
- IconCurrencyLira
|
|
1676
1677
|
- Icon3dPackage2
|
|
1678
|
+
- IconCreditCardNfc
|
|
1677
1679
|
|
|
1678
1680
|
### Social Media & Brands
|
|
1679
1681
|
|
|
@@ -1888,6 +1890,7 @@ Below is a complete list of available icons:
|
|
|
1888
1890
|
- IconCd
|
|
1889
1891
|
- IconVoiceShare
|
|
1890
1892
|
- IconConductor
|
|
1893
|
+
- IconAlbums2
|
|
1891
1894
|
|
|
1892
1895
|
### Sports
|
|
1893
1896
|
|