@central-icons-react-native/round-filled-radius-2-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.9399 11C19.8916 11 21.3237 12.8342 20.8504 14.7276L19.8504 18.7276C19.5165 20.0631 18.3165 21 16.9399 21H7.06303C5.68643 21 4.48648 20.0631 4.15261 18.7276L3.15261 14.7276C2.67925 12.8342 4.11132 11 6.06303 11H17.9399ZM20.0015 8C20.0015 8.55228 19.5538 9 19.0015 9H5.00148C4.4492 9 4.00148 8.55228 4.00148 8C4.00148 7.44772 4.4492 7 5.00148 7H19.0015C19.5538 7 20.0015 7.44772 20.0015 8ZM19.0015 4C19.0015 4.55228 18.5538 5 18.0015 5H6.00148C5.44919 5 5.00148 4.55228 5.00148 4C5.00148 3.44772 5.44919 3 6.00148 3H18.0015C18.5538 3 19.0015 3.44772 19.0015 4Z",fill:"currentColor"}))},L=g;
2
+
3
+ //# debugId=3FD0DAD0C4CA777864756E2164756E21
@@ -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.9399 11C19.8916 11 21.3237 12.8342 20.8504 14.7276L19.8504 18.7276C19.5165 20.0631 18.3165 21 16.9399 21H7.06303C5.68643 21 4.48648 20.0631 4.15261 18.7276L3.15261 14.7276C2.67925 12.8342 4.11132 11 6.06303 11H17.9399ZM20.0015 8C20.0015 8.55228 19.5538 9 19.0015 9H5.00148C4.4492 9 4.00148 8.55228 4.00148 8C4.00148 7.44772 4.4492 7 5.00148 7H19.0015C19.5538 7 20.0015 7.44772 20.0015 8ZM19.0015 4C19.0015 4.55228 18.5538 5 18.0015 5H6.00148C5.44919 5 5.00148 4.55228 5.00148 4C5.00148 3.44772 5.44919 3 6.00148 3H18.0015C18.5538 3 19.0015 3.44772 19.0015 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,wBAAspB,EAAtpB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qjBAAqjB,KAAK,eAAc,CAAI,GAGhpB",
9
+ "debugId": "3FD0DAD0C4CA777864756E2164756E21",
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.9399 11C19.8916 11 21.3237 12.8342 20.8504 14.7276L19.8504 18.7276C19.5165 20.0631 18.3165 21 16.9399 21H7.06303C5.68643 21 4.48648 20.0631 4.15261 18.7276L3.15261 14.7276C2.67925 12.8342 4.11132 11 6.06303 11H17.9399ZM20.0015 8C20.0015 8.55228 19.5538 9 19.0015 9H5.00148C4.4492 9 4.00148 8.55228 4.00148 8C4.00148 7.44772 4.4492 7 5.00148 7H19.0015C19.5538 7 20.0015 7.44772 20.0015 8ZM19.0015 4C19.0015 4.55228 18.5538 5 18.0015 5H6.00148C5.44919 5 5.00148 4.55228 5.00148 4C5.00148 3.44772 5.44919 3 6.00148 3H18.0015C18.5538 3 19.0015 3.44772 19.0015 4Z",fill:"currentColor"}))},x=a;export{x as default,a as IconAlbums2};
2
+
3
+ //# debugId=FA09988C659933E864756E2164756E21
@@ -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.9399 11C19.8916 11 21.3237 12.8342 20.8504 14.7276L19.8504 18.7276C19.5165 20.0631 18.3165 21 16.9399 21H7.06303C5.68643 21 4.48648 20.0631 4.15261 18.7276L3.15261 14.7276C2.67925 12.8342 4.11132 11 6.06303 11H17.9399ZM20.0015 8C20.0015 8.55228 19.5538 9 19.0015 9H5.00148C4.4492 9 4.00148 8.55228 4.00148 8C4.00148 7.44772 4.4492 7 5.00148 7H19.0015C19.5538 7 20.0015 7.44772 20.0015 8ZM19.0015 4C19.0015 4.55228 18.5538 5 18.0015 5H6.00148C5.44919 5 5.00148 4.55228 5.00148 4C5.00148 3.44772 5.44919 3 6.00148 3H18.0015C18.5538 3 19.0015 3.44772 19.0015 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,gBAAspB,EAAtpB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qjBAAqjB,KAAK,eAAc,CAAI,GAGhpB",
9
+ "debugId": "FA09988C659933E864756E2164756E21",
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 L={};P(L,{CentralIconBase:()=>l});module.exports=I(L);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 w={};P(w,{default:()=>M,IconHomePlus:()=>g});module.exports=I(w);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:"M10.4102 3.81444C11.3829 3.20655 12.6171 3.20655 13.5898 3.81444L19.5898 7.56444C20.4669 8.11266 21 9.07413 21 10.1084V18C20.9998 19.6567 19.6567 21 18 21H6C4.39503 21 3.08441 19.7393 3.00391 18.1543L3 18V10.1084C3.00003 9.07413 3.53314 8.11266 4.41016 7.56444L10.4102 3.81444ZM12 9.49999C11.4477 9.49999 11 9.94771 11 10.5V12H9.5C8.94772 12 8.5 12.4477 8.5 13C8.50021 13.5521 8.94785 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.5 12.4477 15.0523 12 14.5 12H13V10.5C13 9.94771 12.5523 9.49999 12 9.49999Z",fill:"currentColor"}))},M=g;
2
+
3
+ //# debugId=9A77DD99489B2A8F64756E2164756E21
@@ -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=\"M10.4102 3.81444C11.3829 3.20655 12.6171 3.20655 13.5898 3.81444L19.5898 7.56444C20.4669 8.11266 21 9.07413 21 10.1084V18C20.9998 19.6567 19.6567 21 18 21H6C4.39503 21 3.08441 19.7393 3.00391 18.1543L3 18V10.1084C3.00003 9.07413 3.53314 8.11266 4.41016 7.56444L10.4102 3.81444ZM12 9.49999C11.4477 9.49999 11 9.94771 11 10.5V12H9.5C8.94772 12 8.5 12.4477 8.5 13C8.50021 13.5521 8.94785 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.5 12.4477 15.0523 12 14.5 12H13V10.5C13 9.94771 12.5523 9.49999 12 9.49999Z\" 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,wBAA0rB,EAA1rB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ylBAAylB,KAAK,eAAc,CAAI,GAGprB",
9
+ "debugId": "9A77DD99489B2A8F64756E2164756E21",
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:"M10.4102 3.81444C11.3829 3.20655 12.6171 3.20655 13.5898 3.81444L19.5898 7.56444C20.4669 8.11266 21 9.07413 21 10.1084V18C20.9998 19.6567 19.6567 21 18 21H6C4.39503 21 3.08441 19.7393 3.00391 18.1543L3 18V10.1084C3.00003 9.07413 3.53314 8.11266 4.41016 7.56444L10.4102 3.81444ZM12 9.49999C11.4477 9.49999 11 9.94771 11 10.5V12H9.5C8.94772 12 8.5 12.4477 8.5 13C8.50021 13.5521 8.94785 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.5 12.4477 15.0523 12 14.5 12H13V10.5C13 9.94771 12.5523 9.49999 12 9.49999Z",fill:"currentColor"}))},v=a;export{v as default,a as IconHomePlus};
2
+
3
+ //# debugId=F0FBA76DA7BCAD4264756E2164756E21
@@ -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=\"M10.4102 3.81444C11.3829 3.20655 12.6171 3.20655 13.5898 3.81444L19.5898 7.56444C20.4669 8.11266 21 9.07413 21 10.1084V18C20.9998 19.6567 19.6567 21 18 21H6C4.39503 21 3.08441 19.7393 3.00391 18.1543L3 18V10.1084C3.00003 9.07413 3.53314 8.11266 4.41016 7.56444L10.4102 3.81444ZM12 9.49999C11.4477 9.49999 11 9.94771 11 10.5V12H9.5C8.94772 12 8.5 12.4477 8.5 13C8.50021 13.5521 8.94785 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.5 12.4477 15.0523 12 14.5 12H13V10.5C13 9.94771 12.5523 9.49999 12 9.49999Z\" 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,gBAA0rB,EAA1rB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ylBAAylB,KAAK,eAAc,CAAI,GAGprB",
9
+ "debugId": "F0FBA76DA7BCAD4264756E2164756E21",
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