@central-icons-react-native/round-filled-radius-3-stroke-2 1.1.266 → 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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAlbums2: FC<CentralIconBaseProps>;
4
+ export default IconAlbums2;
@@ -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:"M17.0476 11C19.7936 11 21.723 13.7035 20.8303 16.3003L20.1428 18.3003C19.5876 19.9155 18.068 21 16.3601 21H7.64217C5.9342 21 4.41466 19.9155 3.85943 18.3003L3.17193 16.3003C2.27927 13.7035 4.2087 11 6.95467 11H17.0476ZM20.0011 8C20.0011 8.55228 19.5534 9 19.0011 9H5.00113C4.44884 9 4.00113 8.55228 4.00113 8C4.00113 7.44772 4.44884 7 5.00113 7H19.0011C19.5534 7 20.0011 7.44772 20.0011 8ZM19.0011 4C19.0011 4.55228 18.5534 5 18.0011 5H6.00113C5.44884 5 5.00113 4.55228 5.00113 4C5.00113 3.44772 5.44884 3 6.00113 3H18.0011C18.5534 3 19.0011 3.44772 19.0011 4Z",fill:"currentColor"}))},L=g;
2
+
3
+ //# debugId=8CB160D76B7E02A164756E2164756E21
@@ -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=\"M17.0476 11C19.7936 11 21.723 13.7035 20.8303 16.3003L20.1428 18.3003C19.5876 19.9155 18.068 21 16.3601 21H7.64217C5.9342 21 4.41466 19.9155 3.85943 18.3003L3.17193 16.3003C2.27927 13.7035 4.2087 11 6.95467 11H17.0476ZM20.0011 8C20.0011 8.55228 19.5534 9 19.0011 9H5.00113C4.44884 9 4.00113 8.55228 4.00113 8C4.00113 7.44772 4.44884 7 5.00113 7H19.0011C19.5534 7 20.0011 7.44772 20.0011 8ZM19.0011 4C19.0011 4.55228 18.5534 5 18.0011 5H6.00113C5.44884 5 5.00113 4.55228 5.00113 4C5.00113 3.44772 5.44884 3 6.00113 3H18.0011C18.5534 3 19.0011 3.44772 19.0011 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,wBAAopB,EAAppB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mjBAAmjB,KAAK,eAAc,CAAI,GAG9oB",
9
+ "debugId": "8CB160D76B7E02A164756E2164756E21",
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:"M17.0476 11C19.7936 11 21.723 13.7035 20.8303 16.3003L20.1428 18.3003C19.5876 19.9155 18.068 21 16.3601 21H7.64217C5.9342 21 4.41466 19.9155 3.85943 18.3003L3.17193 16.3003C2.27927 13.7035 4.2087 11 6.95467 11H17.0476ZM20.0011 8C20.0011 8.55228 19.5534 9 19.0011 9H5.00113C4.44884 9 4.00113 8.55228 4.00113 8C4.00113 7.44772 4.44884 7 5.00113 7H19.0011C19.5534 7 20.0011 7.44772 20.0011 8ZM19.0011 4C19.0011 4.55228 18.5534 5 18.0011 5H6.00113C5.44884 5 5.00113 4.55228 5.00113 4C5.00113 3.44772 5.44884 3 6.00113 3H18.0011C18.5534 3 19.0011 3.44772 19.0011 4Z",fill:"currentColor"}))},x=a;export{x as default,a as IconAlbums2};
2
+
3
+ //# debugId=D45910599ACA754B64756E2164756E21
@@ -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=\"M17.0476 11C19.7936 11 21.723 13.7035 20.8303 16.3003L20.1428 18.3003C19.5876 19.9155 18.068 21 16.3601 21H7.64217C5.9342 21 4.41466 19.9155 3.85943 18.3003L3.17193 16.3003C2.27927 13.7035 4.2087 11 6.95467 11H17.0476ZM20.0011 8C20.0011 8.55228 19.5534 9 19.0011 9H5.00113C4.44884 9 4.00113 8.55228 4.00113 8C4.00113 7.44772 4.44884 7 5.00113 7H19.0011C19.5534 7 20.0011 7.44772 20.0011 8ZM19.0011 4C19.0011 4.55228 18.5534 5 18.0011 5H6.00113C5.44884 5 5.00113 4.55228 5.00113 4C5.00113 3.44772 5.44884 3 6.00113 3H18.0011C18.5534 3 19.0011 3.44772 19.0011 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,gBAAopB,EAAppB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mjBAAmjB,KAAK,eAAc,CAAI,GAG9oB",
9
+ "debugId": "D45910599ACA754B64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconHomePlus: FC<CentralIconBaseProps>;
4
+ export default IconHomePlus;
@@ -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:"M9.87988 4.14597C11.1769 3.33538 12.8231 3.33538 14.1201 4.14597L19.1201 7.27097C20.2895 8.00191 20.9999 9.28453 21 10.6635V17.0005C20.9998 19.2094 19.209 21.0005 17 21.0005H7C4.791 21.0005 3.00022 19.2094 3 17.0005V10.6635C3.00006 9.28452 3.71051 8.00191 4.87988 7.27097L9.87988 4.14597ZM12 9.50046C11.4478 9.50046 11.0001 9.94826 11 10.5005V12.0005H9.5C8.94777 12.0005 8.50009 12.4483 8.5 13.0005C8.50022 13.5526 8.94785 14.0005 9.5 14.0005H11V15.5005C11.0002 16.0526 11.4479 16.5005 12 16.5005C12.5521 16.5005 12.9998 16.0526 13 15.5005V14.0005H14.5C15.0521 14.0005 15.4998 13.5526 15.5 13.0005C15.4999 12.4483 15.0522 12.0005 14.5 12.0005H13V10.5005C12.9999 9.94826 12.5522 9.50046 12 9.50046Z",fill:"currentColor"}))},M=g;
2
+
3
+ //# debugId=E1DE92F944100BCC64756E2164756E21
@@ -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=\"M9.87988 4.14597C11.1769 3.33538 12.8231 3.33538 14.1201 4.14597L19.1201 7.27097C20.2895 8.00191 20.9999 9.28453 21 10.6635V17.0005C20.9998 19.2094 19.209 21.0005 17 21.0005H7C4.791 21.0005 3.00022 19.2094 3 17.0005V10.6635C3.00006 9.28452 3.71051 8.00191 4.87988 7.27097L9.87988 4.14597ZM12 9.50046C11.4478 9.50046 11.0001 9.94826 11 10.5005V12.0005H9.5C8.94777 12.0005 8.50009 12.4483 8.5 13.0005C8.50022 13.5526 8.94785 14.0005 9.5 14.0005H11V15.5005C11.0002 16.0526 11.4479 16.5005 12 16.5005C12.5521 16.5005 12.9998 16.0526 13 15.5005V14.0005H14.5C15.0521 14.0005 15.4998 13.5526 15.5 13.0005C15.4999 12.4483 15.0522 12.0005 14.5 12.0005H13V10.5005C12.9999 9.94826 12.5522 9.50046 12 9.50046Z\" 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,wBAA6xB,EAA7xB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4rBAA4rB,KAAK,eAAc,CAAI,GAGvxB",
9
+ "debugId": "E1DE92F944100BCC64756E2164756E21",
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:"M9.87988 4.14597C11.1769 3.33538 12.8231 3.33538 14.1201 4.14597L19.1201 7.27097C20.2895 8.00191 20.9999 9.28453 21 10.6635V17.0005C20.9998 19.2094 19.209 21.0005 17 21.0005H7C4.791 21.0005 3.00022 19.2094 3 17.0005V10.6635C3.00006 9.28452 3.71051 8.00191 4.87988 7.27097L9.87988 4.14597ZM12 9.50046C11.4478 9.50046 11.0001 9.94826 11 10.5005V12.0005H9.5C8.94777 12.0005 8.50009 12.4483 8.5 13.0005C8.50022 13.5526 8.94785 14.0005 9.5 14.0005H11V15.5005C11.0002 16.0526 11.4479 16.5005 12 16.5005C12.5521 16.5005 12.9998 16.0526 13 15.5005V14.0005H14.5C15.0521 14.0005 15.4998 13.5526 15.5 13.0005C15.4999 12.4483 15.0522 12.0005 14.5 12.0005H13V10.5005C12.9999 9.94826 12.5522 9.50046 12 9.50046Z",fill:"currentColor"}))},v=a;export{v as default,a as IconHomePlus};
2
+
3
+ //# debugId=A2D9914E26C9B38264756E2164756E21
@@ -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=\"M9.87988 4.14597C11.1769 3.33538 12.8231 3.33538 14.1201 4.14597L19.1201 7.27097C20.2895 8.00191 20.9999 9.28453 21 10.6635V17.0005C20.9998 19.2094 19.209 21.0005 17 21.0005H7C4.791 21.0005 3.00022 19.2094 3 17.0005V10.6635C3.00006 9.28452 3.71051 8.00191 4.87988 7.27097L9.87988 4.14597ZM12 9.50046C11.4478 9.50046 11.0001 9.94826 11 10.5005V12.0005H9.5C8.94777 12.0005 8.50009 12.4483 8.5 13.0005C8.50022 13.5526 8.94785 14.0005 9.5 14.0005H11V15.5005C11.0002 16.0526 11.4479 16.5005 12 16.5005C12.5521 16.5005 12.9998 16.0526 13 15.5005V14.0005H14.5C15.0521 14.0005 15.4998 13.5526 15.5 13.0005C15.4999 12.4483 15.0522 12.0005 14.5 12.0005H13V10.5005C12.9999 9.94826 12.5522 9.50046 12 9.50046Z\" 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,gBAA6xB,EAA7xB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4rBAA4rB,KAAK,eAAc,CAAI,GAGvxB",
9
+ "debugId": "A2D9914E26C9B38264756E2164756E21",
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
 
@@ -1888,6 +1889,7 @@ Below is a complete list of available icons:
1888
1889
  - IconCd
1889
1890
  - IconVoiceShare
1890
1891
  - IconConductor
1892
+ - IconAlbums2
1891
1893
 
1892
1894
  ### Sports
1893
1895